Provide French Oceanographic Fleet (FOF) navigations data and cruises information.
Ifremer/DFO/NSE/NE - Techsas team
Data are licensed under Open Licence 2.0 compatible with OGL, CC BY and ODC-BY.
Share — copy and redistribute the material in any medium or format
Adapt — remix, transform, and build upon the material for any purpose, even commercially.
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
Ifremer endeavours to provide the most exact and updated information at the time of their posting on the website. However, Ifremer does not guarantee the exactitude, accuracy or completeness of the information provided on the site. Information presented on the website is non-contractual and subject to change at any time.
id
stringname
stringurl
stringavatar
stringsismerId
string{
"id": "AN",
"name": "Antea",
"sismerId": "ANTEA",
"url": "https://www.flotteoceanographique.fr/Nos-moyens/Navires-engins-et-equipements-mobiles/Navires-semi-hauturiers/Antea",
"avatar": "https://www.flotteoceanographique.fr/var/storage/images/medias-ifremer/medias-flotte/navires/navires-hauturiers/antea/l-antea-vu-du-ciel/1680997-1-fre-FR/L-Antea-vu-du-ciel.JPG"
}
Dated coordinate position with associated data.
lat
numberlon
numberdate
stringdate
string is not recognize by Safari browser when use in Date
constructor (the last 4 digit need to be split 2 by 2 with semicolon between. Example +00:00
).data
objectNULL
or undefined
.
truewindspeed
numbertruewinddir
numberairtemp
numberseatemp
numberdepth
numberpressure
number{
"lat": 47.10416793823242,
"lon": -2.523999929428101,
"date": "2021-05-17T00:15:16.000+0000",
"data": {
"seatemp": 13.5,
"depth": 28.2,
"truewinddir": 268,
"airtemp": 13,
"pressure": 1007.5,
"truewindspeed": 27.8
}
}
Return the vessels list.
GET /api/v2/vessels
[
{
"id": "AN",
"name": "Antea",
"sismerId": "ANTEA",
"url": "https://www.flotteoceanographique.fr/Nos-moyens/Navires-engins-et-equipements-mobiles/Navires-semi-hauturiers/Antea",
"avatar": "https://www.flotteoceanographique.fr/var/storage/images/medias-ifremer/medias-flotte/navires/navires-hauturiers/antea/l-antea-vu-du-ciel/1680997-1-fre-FR/L-Antea-vu-du-ciel.JPG"
},
...
]
Return the vessel details.
GET /api/v2/vessels/TL
{
"id": "TL",
"name": "Thalassa",
"sismerId": "THALASSA",
"url": "https://www.flotteoceanographique.fr/Nos-moyens/Navires-engins-et-equipements-mobiles/Navires-hauturiers/Thalassa",
"avatar": "https://www.flotteoceanographique.fr/var/storage/images/medias-ifremer/medias-flotte/navires/navires-hauturiers/thalassa/le-thalassa-en-images/le-navire-oceanographique-thalassa-au-sud-de-l-ile-de-groix/1680278-1-fre-FR/Le-navire-oceanographique-Thalassa-au-sud-de-l-ile-de-Groix.jpg"
}
Return the vessel positions included inside date interval or the last known position.
GET /api/v2/vessels/{id}/positions
startDate
startDate
parameter provided.endDate
Return an array of position objects.
GET /api/v2/vessels/TL/positions?startDate=2021-05-17T00:00:00.000Z&endDate=2021-05-17T23:59:59.000Z
[
{
"lat": 47.10416793823242,
"lon": -2.523999929428101,
"date": "2021-05-17T00:15:16.000+0000",
"data": {
"seatemp": 13.5,
"depth": 28.2,
"truewinddir": 268,
"airtemp": 13,
"pressure": 1007.5,
"truewindspeed": 27.8
}
},
...
]
Return the latest known vessels position.
GET /api/v2/positions
Return a GeoJSON FeatureCollection
of Point
.
Each Point
feature contain as properties
member:
date
and data
of the position object,vessel
sub-member.GET /api/v2/positions
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point"
"coordinates": [
-17.0611,
27.1475
],
},
"properties": {
"date": "2022-07-04T11:30:00.000+0000",
"vessel": {
"id": "AN",
"name": "Antea",
"sismerId": "ANTEA",
"url": "https://www.flotteoceanographique.fr/Nos-moyens/Navires-engins-et-equipements-mobiles/Navires-semi-hauturiers/Antea",
"avatar": "https://www.flotteoceanographique.fr/var/storage/images/medias-ifremer/medias-flotte/navires/navires-hauturiers/antea/l-antea-vu-du-ciel/1680997-1-fre-FR/L-Antea-vu-du-ciel.JPG"
},
"data": {
"seatemp": 21.8,
"truewinddir": 57,
"airtemp": 21.9,
"pressure": 1019,
"truewindspeed": 22.9
}
}
},
...
]
}