Echobase-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
April 2012
- 4 participants
- 82 discussions
Author: tchemit
Date: 2012-04-18 11:06:28 +0200 (Wed, 18 Apr 2012)
New Revision: 545
Url: http://forge.codelutin.com/repositories/revision/echobase/545
Log:
use common maven-site js script
Removed:
trunk/src/site/resources/maven-site-forge.codelutin.com.js
Modified:
trunk/src/site/site_fr.xml
Deleted: trunk/src/site/resources/maven-site-forge.codelutin.com.js
===================================================================
--- trunk/src/site/resources/maven-site-forge.codelutin.com.js 2012-04-13 13:14:54 UTC (rev 544)
+++ trunk/src/site/resources/maven-site-forge.codelutin.com.js 2012-04-18 09:06:28 UTC (rev 545)
@@ -1,82 +0,0 @@
-/*
- * #%L
- * EchoBase
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2011 - 2012 Ifremer, Codelutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- * #L%
- */
-$(document).ready(function () {
-
- var metas = $('#projectMetas');
- var piwikEnabled = metas.attr('piwikEnabled');
- if (piwikEnabled) {
- //Piwik Tracking Code
- var piwikId = metas.attr('piwikId');
- if (!piwikId) {
-
- // default piwikId for forge.codelutin.com
- piwikId = 4;
- }
-
- console.log("use Piwik with id = " + piwikId);
- var pkBaseURL = "https:" == document.location.protocol ?
- "https://piwik.codelutin.com/" :
- "http://piwik.codelutin.com/";
- $.getScript(pkBaseURL + "piwik.js", function (data, textStatus, jqxhr) {
- var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", piwikId);
- piwikTracker.trackPageView();
- piwikTracker.enableLinkTracking();
- console.log("piwikTracker loaded = " + piwikTracker);
- });
- //Piwik Tracking Code
- }
- var scmwebeditorenabled = metas.attr('scmwebeditorenabled');
- var scm = metas.attr('scm');
- if (scmwebeditorenabled && scm.indexOf("/trunk") > -1) {
-
- // allow scmwebeditor is enabled and on trunk
-
- var scmurl = metas.attr('scmwebeditorurl');
- var projectId = metas.attr('projectId');
- var siteSourcesType = metas.attr('siteSourcesType');
- var path;
- var pathname = document.location.pathname;
- if (pathname.indexOf('target/site') > 0) {
- path = pathname.substr(pathname.indexOf('/site')).
- replace('/site/', '');
- } else {
- if (pathname == '/' + projectId + '/') {
- // on / page
- path = 'index.html';
- } else {
- path = pathname.substr(pathname.indexOf('/' + projectId)).
- replace('/' + projectId + '/', '');
- }
- }
- path = path.replace('.html', '.' + siteSourcesType);
- var url = scmurl + "?address=" + scm + "/src/site/" + siteSourcesType + "/" + path;
- console.log("Add scmwebeditor with url = " + url);
- var html = "<li class='pull-right'><a href='" + url +
- "'>Éditer la page</a></li>" +
- "<li class='divider pull-right'>|</li>";
- var ul = $('#publishDate');
- ul.prepend(html);
-
- }
-});
\ No newline at end of file
Modified: trunk/src/site/site_fr.xml
===================================================================
--- trunk/src/site/site_fr.xml 2012-04-13 13:14:54 UTC (rev 544)
+++ trunk/src/site/site_fr.xml 2012-04-18 09:06:28 UTC (rev 545)
@@ -101,11 +101,12 @@
<menu ref="reports"/>
- <menu ref="modules"/>
+ <!--menu ref="modules"/-->
<footer>
- <script type="text/javascript" src="./maven-site-forge.codelutin.com.js">
+ <script type="text/javascript"
+ src="http://maven-site.forge.codelutin.com/public/js/maven-site-forge.codelutin.…">
</script>
<div id='projectMetas'
1
0
r544 - in trunk: . echobase-entities echobase-services echobase-tools echobase-ui
by maven-release@users.forge.codelutin.com 13 Apr '12
by maven-release@users.forge.codelutin.com 13 Apr '12
13 Apr '12
Author: maven-release
Date: 2012-04-13 15:14:54 +0200 (Fri, 13 Apr 2012)
New Revision: 544
Url: http://forge.codelutin.com/repositories/revision/echobase/544
Log:
[maven-release-plugin] prepare for next development iteration
Modified:
trunk/echobase-entities/pom.xml
trunk/echobase-services/pom.xml
trunk/echobase-tools/pom.xml
trunk/echobase-ui/pom.xml
trunk/pom.xml
Modified: trunk/echobase-entities/pom.xml
===================================================================
--- trunk/echobase-entities/pom.xml 2012-04-13 13:14:47 UTC (rev 543)
+++ trunk/echobase-entities/pom.xml 2012-04-13 13:14:54 UTC (rev 544)
@@ -9,7 +9,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/echobase-services/pom.xml
===================================================================
--- trunk/echobase-services/pom.xml 2012-04-13 13:14:47 UTC (rev 543)
+++ trunk/echobase-services/pom.xml 2012-04-13 13:14:54 UTC (rev 544)
@@ -10,7 +10,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/echobase-tools/pom.xml
===================================================================
--- trunk/echobase-tools/pom.xml 2012-04-13 13:14:47 UTC (rev 543)
+++ trunk/echobase-tools/pom.xml 2012-04-13 13:14:54 UTC (rev 544)
@@ -11,7 +11,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/echobase-ui/pom.xml
===================================================================
--- trunk/echobase-ui/pom.xml 2012-04-13 13:14:47 UTC (rev 543)
+++ trunk/echobase-ui/pom.xml 2012-04-13 13:14:54 UTC (rev 544)
@@ -11,7 +11,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-04-13 13:14:47 UTC (rev 543)
+++ trunk/pom.xml 2012-04-13 13:14:54 UTC (rev 544)
@@ -15,7 +15,7 @@
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
<modules>
<module>echobase-entities</module>
@@ -79,12 +79,12 @@
<!-- ************************************************************* -->
<scm>
- <url>http://svn.forge.codelutin.com/svn/echobase/tags/echobase-1.0</url>
+ <url>http://svn.forge.codelutin.com/svn/echobase/trunk</url>
<connection>
- scm:svn:http://svn.forge.codelutin.com/svn/echobase/tags/echobase-1.0
+ scm:svn:http://svn.forge.codelutin.com/svn/echobase/trunk
</connection>
<developerConnection>
- scm:svn:http://svn.forge.codelutin.com/svn/echobase/tags/echobase-1.0
+ scm:svn:http://svn.forge.codelutin.com/svn/echobase/trunk
</developerConnection>
</scm>
1
0
Author: maven-release
Date: 2012-04-13 15:14:47 +0200 (Fri, 13 Apr 2012)
New Revision: 543
Url: http://forge.codelutin.com/repositories/revision/echobase/543
Log:
[maven-release-plugin] copy for tag echobase-1.0
Added:
tags/echobase-1.0/
1
0
r542 - in trunk: . echobase-entities echobase-services echobase-tools echobase-ui
by maven-release@users.forge.codelutin.com 13 Apr '12
by maven-release@users.forge.codelutin.com 13 Apr '12
13 Apr '12
Author: maven-release
Date: 2012-04-13 15:14:39 +0200 (Fri, 13 Apr 2012)
New Revision: 542
Url: http://forge.codelutin.com/repositories/revision/echobase/542
Log:
[maven-release-plugin] prepare release echobase-1.0
Modified:
trunk/echobase-entities/pom.xml
trunk/echobase-services/pom.xml
trunk/echobase-tools/pom.xml
trunk/echobase-ui/pom.xml
trunk/pom.xml
Modified: trunk/echobase-entities/pom.xml
===================================================================
--- trunk/echobase-entities/pom.xml 2012-04-13 12:56:58 UTC (rev 541)
+++ trunk/echobase-entities/pom.xml 2012-04-13 13:14:39 UTC (rev 542)
@@ -9,7 +9,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/echobase-services/pom.xml
===================================================================
--- trunk/echobase-services/pom.xml 2012-04-13 12:56:58 UTC (rev 541)
+++ trunk/echobase-services/pom.xml 2012-04-13 13:14:39 UTC (rev 542)
@@ -10,7 +10,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/echobase-tools/pom.xml
===================================================================
--- trunk/echobase-tools/pom.xml 2012-04-13 12:56:58 UTC (rev 541)
+++ trunk/echobase-tools/pom.xml 2012-04-13 13:14:39 UTC (rev 542)
@@ -11,7 +11,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/echobase-ui/pom.xml
===================================================================
--- trunk/echobase-ui/pom.xml 2012-04-13 12:56:58 UTC (rev 541)
+++ trunk/echobase-ui/pom.xml 2012-04-13 13:14:39 UTC (rev 542)
@@ -11,7 +11,7 @@
<parent>
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>fr.ifremer.echobase</groupId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-04-13 12:56:58 UTC (rev 541)
+++ trunk/pom.xml 2012-04-13 13:14:39 UTC (rev 542)
@@ -15,7 +15,7 @@
<groupId>fr.ifremer</groupId>
<artifactId>echobase</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
<modules>
<module>echobase-entities</module>
@@ -79,12 +79,12 @@
<!-- ************************************************************* -->
<scm>
- <url>http://svn.forge.codelutin.com/svn/echobase/trunk</url>
+ <url>http://svn.forge.codelutin.com/svn/echobase/tags/echobase-1.0</url>
<connection>
- scm:svn:http://svn.forge.codelutin.com/svn/echobase/trunk
+ scm:svn:http://svn.forge.codelutin.com/svn/echobase/tags/echobase-1.0
</connection>
<developerConnection>
- scm:svn:http://svn.forge.codelutin.com/svn/echobase/trunk
+ scm:svn:http://svn.forge.codelutin.com/svn/echobase/tags/echobase-1.0
</developerConnection>
</scm>
1
0
r541 - in trunk: echobase-ui/src/main/resources/i18n src/site/rst
by tchemit@users.forge.codelutin.com 13 Apr '12
by tchemit@users.forge.codelutin.com 13 Apr '12
13 Apr '12
Author: tchemit
Date: 2012-04-13 14:56:58 +0200 (Fri, 13 Apr 2012)
New Revision: 541
Url: http://forge.codelutin.com/repositories/revision/echobase/541
Log:
refs #484: Documentation
Modified:
trunk/echobase-ui/src/main/resources/i18n/echobase-ui_fr_FR.properties
trunk/src/site/rst/index.rst
Modified: trunk/echobase-ui/src/main/resources/i18n/echobase-ui_fr_FR.properties
===================================================================
--- trunk/echobase-ui/src/main/resources/i18n/echobase-ui_fr_FR.properties 2012-04-13 12:36:56 UTC (rev 540)
+++ trunk/echobase-ui/src/main/resources/i18n/echobase-ui_fr_FR.properties 2012-04-13 12:56:58 UTC (rev 541)
@@ -20,7 +20,7 @@
echobase.action.importTable=Importer
echobase.action.locale.english=Anglais
echobase.action.locale.french=Français
-echobase.action.login=Connection
+echobase.action.login=Connexion
echobase.action.logout=Déconnexion
echobase.action.newLibreOfficeQuery=Nouvelle requète Libre office
echobase.action.newQuery=Nouvelle requète
Modified: trunk/src/site/rst/index.rst
===================================================================
--- trunk/src/site/rst/index.rst 2012-04-13 12:36:56 UTC (rev 540)
+++ trunk/src/site/rst/index.rst 2012-04-13 12:56:58 UTC (rev 541)
@@ -33,9 +33,17 @@
Les documents
-------------
+
- La documentation d'`installation`_.
+
- La description du `modèle`_.
-.. _installation: install.html
-.. _modèle: model.html
+- La description des `imports`_.
+- Comment créer une `application embarquée`_.
+
+.. _installation: ./install.html
+.. _modèle: ./model.html
+.. _imports: ./imports.html
+.. _application embarquée: ./embedded.html
+
1
0
Author: tchemit
Date: 2012-04-13 14:36:56 +0200 (Fri, 13 Apr 2012)
New Revision: 540
Url: http://forge.codelutin.com/repositories/revision/echobase/540
Log:
refs #484: Documentation (ajout d'exemples)
Modified:
trunk/src/site/rst/imports.rst
trunk/src/site/site_fr.xml
Modified: trunk/src/site/rst/imports.rst
===================================================================
--- trunk/src/site/rst/imports.rst 2012-04-13 12:05:18 UTC (rev 539)
+++ trunk/src/site/rst/imports.rst 2012-04-13 12:36:56 UTC (rev 540)
@@ -21,9 +21,9 @@
.. * along with this program. If not, see <http://www.gnu.org/licenses/>.
.. * #L%
.. -
-=======================================
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Liste des colonnes des imports EchoBase
-=======================================
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. contents:: Table des matières
:depth: 2
@@ -33,11 +33,12 @@
:depth: 2
Abstract
---------
+========
Ce document donne la définition de tous les imports.
-Sur les types :
+Format des colonnes
+~~~~~~~~~~~~~~~~~~~
- FK(XXX#yyy) désigne une clef étrangère requise (XXX sur la propriété yyy).
- (int) un entier (pas du nullité possible)
@@ -50,21 +51,59 @@
- (esdu cell) nom de cellule esdu - elementary : esduName[_elementaryCellName]
avec esdu name au format yyyy-MM-dd HH:mm:ss.SSSS
+Note importantes
+~~~~~~~~~~~~~~~~
+
+- Le nom des colonnes est sensible à la casse, il faut donc bien respecter les
+ noms donnés dans cette page.
+
+- Le contenu des cellules (et aussi les nom de colonnes) peuvent être encapsulés
+ par des **"**.
+
+
Voyage / Transit / Transect
----------------------------
+===========================
Voyage
~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ name;startDate;endDate;startPort;endPort
+
+Format des colonnes
+-------------------
+
- name
- startDate (date)
- endDate (date)
- startPort
- endPort
+Exemple
+-------
+
+::
+
+ name;startDate;endDate;startPort;endPort
+ PELGAS2011;2011-04-26 08:00:00.0000;2011-06-04 17:00:01.0000;Santander;Concarneau
+
Transit
~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;description;startTime;endTime;startLocality;endLocality
+
+Format des colonnes
+-------------------
+
- voyage FK(voyage#name)
- description
- startTime (date)
@@ -72,9 +111,27 @@
- startLocality
- endLocality
+Exemple
+-------
+
+::
+
+ voyage;description;startTime;endTime;startLocality;endLocality
+ PELGAS2011;PELGAS11CAMP1;2011-04-26 08:00:01.0000;2011-05-08 20:00:00.0000;Santander;La Rochelle
+
Transect
~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ title;transectAbstract;stratum;comment;voyage;vesselName;dateCreated;timeCoverageStart;timeCoverageEnd;geospatialLonMin;geospatialLatMin;geospatialVerticalMin;geospatialLonMax;geospatialLatMax;geospatialVerticalMax;linestring
+
+Format des colonnes
+-------------------
+
- voyage FK(voyage#name)
- vesselName FK(Vessel#name)
- title
@@ -92,12 +149,30 @@
- geospatialVerticalMax (float)
- linestring
+Exemple
+-------
+
+::
+
+ title;transectAbstract;stratum;comment;voyage;vesselName;dateCreated;timeCoverageStart;timeCoverageEnd;geospatialLonMin;geospatialLatMin;geospatialVerticalMin;geospatialLonMax;geospatialLatMax;geospatialVerticalMax;linestring
+ Arlequin2 / la colombine942OBS01 SUR;942OBS;SUR;942OBS,P5001,SUR;PELGAS2011;Arlequin2 / la colombine;2011-04-27 09:10:00.0000;2011-04-27 09:10:00.0000;2011-04-27 10:39:00.0000";-1.5896666667;43.7055;110;-1.541;43.7606666667;110;"-176453.0000037 4851310.5,-171051 4857434.0000037
+
Operation / OperationMetadataValue / GearMetadataValue
-------------------------------------------------------
+======================================================
Operation
~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ vesselName;operationId;depthStratumId;gearShootingStartTime;midHaulLatitude;midHaulLongitude;gearShootingStartLatitude;gearShootingStartLongitude;gearShootingEndTime;gearShootingEndLatitude;gearShootingEndLongitude;gearCode
+
+Format des colonnes
+-------------------
+
- vesselName FK(Vessel#name)
- gearCode FK(Gear#casinoGearName)
- depthStratumId FK(DepthStratum#id)
@@ -111,29 +186,83 @@
- gearShootingStartLongitude (float)
- gearShootingEndLongitude (float)
+Exemple
+-------
+
+::
+
+ vesselName;operationId;depthStratumId;gearShootingStartTime;midHaulLatitude;midHaulLongitude;gearShootingStartLatitude;gearShootingStartLongitude;gearShootingEndTime;gearShootingEndLatitude;gearShootingEndLongitude;gearCode
+ THALASSA II;P0422;CLAS;2011-05-05 06:49:50.0000";45.4165605;-1.4492292;45.4029733;-1.4860902;"2011-05-05 07:42:19.0000";45.4301477;-1.4123682;"57x52
+
OperationMetadataValue
~~~~~~~~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ vesselName;operationId;metadataType;operationMetadataValue
+
+Format des colonnes
+-------------------
+
- vesselName FK(Vessel#name)
- operationId FK(Operation#id)
- metadataType FK(OperationMetadata#name)
- operationMetadataValue
+Exemple
+-------
+
+::
+
+ vesselName;operationId;metadataType;operationMetadataValue
+ THALASSA II;P0422;MeanWaterDepth";43.42
+
GearMetadataValue
~~~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ vesselName;operationId;gearCode;metadataType;gearMetadataValue
+
+Format des colonnes
+-------------------
+
- vesselName FK(Vessel#name)
- operationId FK(Operation#id)
- metadataType FK(GearMetadata#name)
- gearCode FK(Gear#casinoGearName)
- gearMetadataValue
+Exemple
+-------
+
+::
+
+ vesselName;operationId;gearCode;metadataType;gearMetadataValue
+ THALASSA II;P0422;57x52;CableLength";31.6666666666667
+
TotalSample / SubSample / BiometrySample
-----------------------------------------
+========================================
TotalSample
~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ operationId;baracoudaCode;sizeCategory;sampleWeight;numberSampled;meanLength;meanWeight;noPerKg;sortedWeight
+
+Format des colonnes
+-------------------
+
- operationId FK(Operation#id)
- baracoudaCode FK(Species#baracoudaCode)
- sizeCategory FK(SizeCategory#name)
@@ -144,9 +273,27 @@
- noPerKg (Float-NA)
- sortedWeight (float)
+Exemple
+-------
+
+::
+
+ operationId;baracoudaCode;sizeCategory;sampleWeight;numberSampled;meanLength;meanWeight;noPerKg;sortedWeight
+ P0435;ALLO-TEZ;0";0.21;36;6.4;6;166.66;0.03
+
SubSample
~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ operationId;baracoudaCode;sizeCategory;sexCategory;sampleWeight;numberSampled;lengthClass;numberAtLength;weightAtLength;units;round
+
+Format des colonnes
+-------------------
+
- operationId FK(Operation#id)
- baracoudaCode FK(Species#baracoudaCode)
- sizeCategory FK(SizeCategory#name)
@@ -159,9 +306,27 @@
(colonnes ignorées) subHaul units round
+Exemple
+-------
+
+::
+
+ operationId;baracoudaCode;sizeCategory;sexCategory;sampleWeight;numberSampled;lengthClass;numberAtLength;weightAtLength;units;round
+ P0372;ENGR-ENC";0;"N";3.37;198;12;7;0.08;0;5
+
BiometrySample
~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ operationId;baracoudaCode;numFish;dataLabel;dataValue;name
+
+Format des colonnes
+-------------------
+
- operationId FK(Operation#id)
- baracoudaCode FK(Species#baracoudaCode)
- numFish (int)
@@ -169,26 +334,80 @@
- dataLabel
- dataValue (Float-NA)
+Exemple
+-------
+
+::
+
+ operationId;baracoudaCode;numFish;dataLabel;dataValue;name
+ P5002;ENGR-ENC";9394;NA;-1;"Age
+
Acoustic
---------
+========
+Colonnes requises
+-----------------
+
+::
+
+ MOVIES_EILayer;MOVIES_EILayer\sndset;MOVIES_EILayer\sndset\sndname;MOVIES_EILayer\sndset\sndident;MOVIES_EILayer\sndset\softChannelId;MOVIES_EILayer\sndset\channelName;MOVIES_EILayer\sndset\dataType;MOVIES_EILayer\sndset\beamType;MOVIES_EILayer\sndset\acousticFrequency;MOVIES_EILayer\sndset\startSample;MOVIES_EILayer\sndset\mainBeamAlongSteeringAngle;MOVIES_EILayer\sndset\mainBeamAthwartSteeringAngle;MOVIES_EILayer\sndset\absorptionCoef;MOVIES_EILayer\sndset\transmissionPower;MOVIES_EILayer\sndset\beamAlongAngleSensitivity;MOVIES_EILayer\sndset\beamAthwartAngleSensitivity;MOVIES_EILayer\sndset\beam3dBWidthAlong;MOVIES_EILayer\sndset\beam3dBWidthAthwart;MOVIES_EILayer\sndset\beamEquTwoWayAngle;MOVIES_EILayer\sndset\beamGain;MOVIES_EILayer\sndset\beamSACorrection;MOVIES_EILayer\sndset\bottomDetectionMinDepth;MOVIES_EILayer\sndset\bottomDetectionMaxDepth;MOVIES_EILayer\sndset\bottomDetectionMinLevel;MOVIES_EILayer\sndset\AlongTXRXWeightId;MOVIES_EILayer\sndset\AthwartTXRXWeightId;MOVIES_EILayer\sndset\SplitBeamAlongTXRXWeightId;MOVIES_EILayer\sndset\SplitBeamAthwartTXRXWeightId;MOVIES_EILayer\sndset\bandWidth;MOVIES_EILayer\sndset\tvgminrange;MOVIES_EILayer\sndset\tvgmaxrange;MOVIES_EILayer\sndset\pulseduration;MOVIES_EILayer\shipnav;MOVIES_EILayer\shipnav\lat;MOVIES_EILayer\shipnav\long;MOVIES_EILayer\shipnav\alt;MOVIES_EILayer\shipnav\gndspeed;MOVIES_EILayer\shipnav\gndcourse;MOVIES_EILayer\shipnav\surfspeed;MOVIES_EILayer\shipnav\surfcourse;MOVIES_EILayer\shipnav\driftspeed;MOVIES_EILayer\shipnav\driftcourse;MOVIES_EILayer\shipnav\heading;MOVIES_EILayer\shipnav\roll;MOVIES_EILayer\shipnav\pitch;MOVIES_EILayer\shipnav\heave;MOVIES_EILayer\shipnav\depth;MOVIES_EILayer\shipnav\draught;MOVIES_EILayer\cellset;MOVIES_EILayer\cellset\cellnum;MOVIES_EILayer\cellset\celltype;MOVIES_EILayer\cellset\depthstart;MOVIES_EILayer\cellset\depthend;MOVIES_EILayer\cellset\indexstart;MOVIES_EILayer\cellset\indexend;MOVIES_EILayer\cellset\datestart;MOVIES_EILayer\cellset\dateend;MOVIES_EILayer\cellset\lat;MOVIES_EILayer\cellset\long;MOVIES_EILayer\cellset\volume;MOVIES_EILayer\cellset\area;MOVIES_EILayer\cellset\diststart;MOVIES_EILayer\cellset\distend;MOVIES_EILayer\cellset\thresholdup;MOVIES_EILayer\cellset\thresholdlow;MOVIES_EILayer\eilayer;MOVIES_EILayer\eilayer\sa;MOVIES_EILayer\eilayer\sv;MOVIES_EILayer\eilayer\ni;MOVIES_EILayer\eilayer\nt;MOVIES_EILayer\boterr;MOVIES_EILayer\boterr\sa;MOVIES_EILayer\boterr\ni;MOVIES_EILayer\sndset\soundcelerity;dataQuality
+
+Format des colonnes
+-------------------
+
A faire...
+Exemple
+-------
+
+::
+
+ MOVIES_EILayer;MOVIES_EILayer\sndset;MOVIES_EILayer\sndset\sndname;MOVIES_EILayer\sndset\sndident;MOVIES_EILayer\sndset\softChannelId;MOVIES_EILayer\sndset\channelName;MOVIES_EILayer\sndset\dataType;MOVIES_EILayer\sndset\beamType;MOVIES_EILayer\sndset\acousticFrequency;MOVIES_EILayer\sndset\startSample;MOVIES_EILayer\sndset\mainBeamAlongSteeringAngle;MOVIES_EILayer\sndset\mainBeamAthwartSteeringAngle;MOVIES_EILayer\sndset\absorptionCoef;MOVIES_EILayer\sndset\transmissionPower;MOVIES_EILayer\sndset\beamAlongAngleSensitivity;MOVIES_EILayer\sndset\beamAthwartAngleSensitivity;MOVIES_EILayer\sndset\beam3dBWidthAlong;MOVIES_EILayer\sndset\beam3dBWidthAthwart;MOVIES_EILayer\sndset\beamEquTwoWayAngle;MOVIES_EILayer\sndset\beamGain;MOVIES_EILayer\sndset\beamSACorrection;MOVIES_EILayer\sndset\bottomDetectionMinDepth;MOVIES_EILayer\sndset\bottomDetectionMaxDepth;MOVIES_EILayer\sndset\bottomDetectionMinLevel;MOVIES_EILayer\sndset\AlongTXRXWeightId;MOVIES_EILayer\sndset\AthwartTXRXWeightId;MOVIES_EILayer\sndset\SplitBeamAlongTXRXWeightId;MOVIES_EILayer\sndset\SplitBeamAthwartTXRXWeightId;MOVIES_EILayer\sndset\bandWidth;MOVIES_EILayer\sndset\tvgminrange;MOVIES_EILayer\sndset\tvgmaxrange;MOVIES_EILayer\sndset\pulseduration;MOVIES_EILayer\shipnav;MOVIES_EILayer\shipnav\lat;MOVIES_EILayer\shipnav\long;MOVIES_EILayer\shipnav\alt;MOVIES_EILayer\shipnav\gndspeed;MOVIES_EILayer\shipnav\gndcourse;MOVIES_EILayer\shipnav\surfspeed;MOVIES_EILayer\shipnav\surfcourse;MOVIES_EILayer\shipnav\driftspeed;MOVIES_EILayer\shipnav\driftcourse;MOVIES_EILayer\shipnav\heading;MOVIES_EILayer\shipnav\roll;MOVIES_EILayer\shipnav\pitch;MOVIES_EILayer\shipnav\heave;MOVIES_EILayer\shipnav\depth;MOVIES_EILayer\shipnav\draught;MOVIES_EILayer\cellset;MOVIES_EILayer\cellset\cellnum;MOVIES_EILayer\cellset\celltype;MOVIES_EILayer\cellset\depthstart;MOVIES_EILayer\cellset\depthend;MOVIES_EILayer\cellset\indexstart;MOVIES_EILayer\cellset\indexend;MOVIES_EILayer\cellset\datestart;MOVIES_EILayer\cellset\dateend;MOVIES_EILayer\cellset\lat;MOVIES_EILayer\cellset\long;MOVIES_EILayer\cellset\volume;MOVIES_EILayer\cellset\area;MOVIES_EILayer\cellset\diststart;MOVIES_EILayer\cellset\distend;MOVIES_EILayer\cellset\thresholdup;MOVIES_EILayer\cellset\thresholdlow;MOVIES_EILayer\eilayer;MOVIES_EILayer\eilayer\sa;MOVIES_EILayer\eilayer\sv;MOVIES_EILayer\eilayer\ni;MOVIES_EILayer\eilayer\nt;MOVIES_EILayer\boterr;MOVIES_EILayer\boterr\sa;MOVIES_EILayer\boterr\ni;MOVIES_EILayer\sndset\soundcelerity;dataQuality
+ 2011/06/23 10:09:00.0000";NA;NA;NA;47;38000;NA;NA;NA;NA;NA;NA;8.47;2000;21.8;21.8;NA;NA;-20.6;25.27;-0.529999;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA;1.024;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA;NA;199.9;NA;NA;0;0;10;20;NA;NA;"2011-04-26 08:24:02.0000;2011-04-26 08:30:02.0000";43.666505;-3.48812666666667;NA;1;NA;NA;0;-60;NA;1.444008;NA;71;43424;NA;NA;NA;"variable";1
+
Résultats voyage
-----------------
+================
Echotype
~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;echotypeName;depthStratumId;meaning;baracoudaCode
+
+Format des colonnes
+-------------------
+
- echotypeName
- meaning
- voyage FK(Voyage#name)
- depthStratumId FK(DepthStratum#id)
- baracoudaCode FK(Species#baracoudaCode)
+Exemple
+-------
+
+::
+
+ voyage;echotypeName;depthStratumId;meaning;baracoudaCode
+ PELGAS2011;D1;CLAS;Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond;COMP-LEM
+
LengthWeightKey
~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;sizeCategory;aParameter;bParameter;baracoudaCode;strata
+
+Format des colonnes
+-------------------
+
- aParameter (float)
- bParameter (float)
- voyage FK(Voyage#name)
@@ -196,9 +415,27 @@
- baracoudaCode FK(Species#baracoudaCode)
- strata FK(Strata#name)
+Exemple
+-------
+
+::
+
+ voyage;sizeCategory;aParameter;bParameter;baracoudaCode;strata
+ PELGAS2011";0;2.48253468289872;3.37866337729714;"ENGR-ENC;Golfe de Gascogne
+
LengthAgeKey
~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;baracoudaCode;age;length;percentAtAge;metadata;strata
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- age (int)
- length (float)
@@ -207,57 +444,147 @@
- strata FK(Strata#name)
- baracoudaCode FK(Species#baracoudaCode)
+Exemple
+-------
+
+::
+
+ voyage;baracoudaCode;age;length;percentAtAge;metadata;strata
+ PELGAS2011;ENGR-ENC";1;7.5;1;"Ifremer reading;Golfe de Gascogne
+
Résultats Esdu
---------------
+==============
Esdu / Echotype
~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;name;echotype;NASC;ReferenceStationCatch;ReferenceStationBiometry;dataQuality
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- name FK(esdu cell)
- echotype FK(Echotype#name)
- dataQuality FK(DataQuality#qualityDataFlagValues)
-- ... DataMetadata#name ...
+- méta-données FK(DataMetadata#name) (une colonne par méta à importer)
+Exemple
+-------
+
+::
+
+ voyage;name;echotype;NASC;ReferenceStationCatch;ReferenceStationBiometry;dataQuality
+ PELGAS2011;2011-04-26 13:29:12.0000;D1";0;"P0379;P0379";1
+
Esdu / Echotype / Species Category
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;name;echotype;baracoudaCode;sizeCategory;ReferenceStationCatch;Biomass;MeanLength;MeanWeight;Abundance;SigmaSp;NASC;pondBiomass;pondAbundance;dataQuality
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- name FK(esdu cell)
- echotype FK(Echotype#name)
- sizeCategory FK(SizeCategory#name)
- baracoudaCode FK(Species#baracoudaCode)
- dataQuality FK(DataQuality#qualityDataFlagValues)
-- ... DataMetadata#name ...
+- méta-données FK(DataMetadata#name) (une colonne par méta à importer)
+Exemple
+-------
+
+::
+
+ voyage;name;echotype;baracoudaCode;sizeCategory;ReferenceStationCatch;Biomass;MeanLength;MeanWeight;Abundance;SigmaSp;NASC;pondBiomass;pondAbundance;dataQuality
+ PELGAS2011;2011-04-26 13:29:12.0000;D1;COMP-LEM;0";4;0;20;0.05;0;0.00100292822891053;0;0;0;1
+
Esdu / Species / Age Category
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ name;baracoudaCode;ageCategory;Abundance;ageCategoryMeaning;dataQuality;voyage
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- name FK(esdu cell)
- baracoudaCode FK(Species#baracoudaCode)
- ageCategory
- ageCategoryMeaning
- dataQuality FK(DataQuality#qualityDataFlagValues)
-- ... DataMetadata#name ...
+- méta-données FK(DataMetadata#name) (une colonne par méta à importer)
+Exemple
+-------
+
+::
+
+ name;baracoudaCode;ageCategory;Abundance;ageCategoryMeaning;dataQuality;voyage
+ 2011-04-26 13:35:19.0000;ENGR-ENC";3;3377.00492644042;"fish age-group (years)";1;"PELGAS2011
+
Esdu / Species / Size Category
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ name;baracoudaCode;sizeCategory;Biomass;Abundance;sizeCategoryMeaning;dataQuality;voyage
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- name FK(esdu cell)
- baracoudaCode FK(Species#baracoudaCode)
- sizeCategory
- sizeCategoryMeaning
- dataQuality FK(DataQuality#qualityDataFlagValues)
-- ... DataMetadata#name ...
+- méta-données FK(DataMetadata#name) (une colonne par méta à importer)
+Exemple
+-------
+
+::
+
+ name;baracoudaCode;sizeCategory;Biomass;Abundance;sizeCategoryMeaning;dataQuality;voyage
+ 2011-04-26 13:35:19.0000;MICR-POU";4;5190.7652880528;1297691.3220132;"mid point of 1 cm size bin";1;"PELGAS2011
+
Region
-------
+======
Region
~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;name;cellType;regionEnvCoordinates;surface;dataQuality
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- cellType FK(CellType)
- dataQuality FK(DataQuality#qualityDataFlagValues)
@@ -265,27 +592,81 @@
- regionEnvCoordinates
- surface (float)
+Exemple
+-------
+
+::
+
+ voyage;name;cellType;regionEnvCoordinates;surface;dataQuality
+ PELGAS2011";1;"RegionCLAS;-1.40644893137726 43.8651260867463 50";1224.75678263326;1
+
Region Association
~~~~~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;regionName;esduName
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage)
- regionName FK(Cell#name)
- esduName FK(Cell#name)
+Exemple
+-------
+
+::
+
+ voyage;regionName;esduName
+ PELGAS2011";1;"2011-05-02 09:36:54.0000
+
Region results
~~~~~~~~~~~~~~
+Colonnes requises
+-----------------
+
+::
+
+ voyage;name;baracoudaCode;sizeCategory;echotype;VarianceXe;VarianceNASC;MeanXe;MeanNASC;NASCWeightedMeanXe;Nesdu;Nhauls;MeanNASCWeightedBiomassDensity;NASCWeightedEstimationVariance;NASCWeightedEstimationCV;MeanBiomassDensity;EstimationVariance;EstimationCV;TotalEstimationVariance;TotalNASCWeightedEstimationVariance;ProportionOfTotalEstimationVariance;ProportionOfNASCWeightedTotalEstimationVariance;Biomass;NASCWeightedBiomass;dataQuality
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- name FK(Cell#name)
- baracoudaCode FK(Species#baracoudaCode)
- echotype FK(Echotype#name)
- sizeCategory FK(SizeCategory#name)
- dataQuality FK(DataQuality#qualityDataFlagValues)
-- ... DataMetadata#name ...
+- méta-données FK(DataMetadata#name) (une colonne par méta à importer)
+Exemple
+-------
+
+::
+
+ voyage;name;baracoudaCode;sizeCategory;echotype;VarianceXe;VarianceNASC;MeanXe;MeanNASC;NASCWeightedMeanXe;Nesdu;Nhauls;MeanNASCWeightedBiomassDensity;NASCWeightedEstimationVariance;NASCWeightedEstimationCV;MeanBiomassDensity;EstimationVariance;EstimationCV;TotalEstimationVariance;TotalNASCWeightedEstimationVariance;ProportionOfTotalEstimationVariance;ProportionOfNASCWeightedTotalEstimationVariance;Biomass;NASCWeightedBiomass;dataQuality
+ PELGAS2011;6;CLUP-HAR;0;D2";NA;8963.28501789053;0.127534943481966;19.0945142790179;0.127534943481966;448;1;2.43521779939014;NA;NA;2.43521779939014;NA;NA;0;0;NA;NA;14380.2052341515;14380.2052341515;1
+
Map
----
+===
+Colonnes requises
+-----------------
+
+::
+
+ voyage;name;baracoudaCode;sizeCategory;ageCategory;gridCellLongitude;gridCellLatitude;gridCellDepth;gridLongitudeLag;gridLatitudeLag;gridDepthLag;KrigedXe;dataQuality
+
+Format des colonnes
+-------------------
+
- voyage FK(Voyage#name)
- name
- baracoudaCode FK(Species#baracoudaCode)
@@ -298,20 +679,12 @@
- gridLongitudeLag (float)
- gridLatitudeLag (float)
- gridDepthLag (float)
-- ... DataMetadata#name ...
+- méta-données FK(DataMetadata#name) (une colonne par méta à importer)
+Exemple
+-------
+::
-
-
-
-
-
-
-
-
-
-
-
-
-
+ voyage;name;baracoudaCode;sizeCategory;ageCategory;gridCellLongitude;gridCellLatitude;gridCellDepth;gridLongitudeLag;gridLatitudeLag;gridDepthLag;KrigedXe;dataQuality
+ PELGAS2011;-6 43.5 0;ENGR-ENC";0;;-6;43.5;0;0.25;0.25;0;0;1
Modified: trunk/src/site/site_fr.xml
===================================================================
--- trunk/src/site/site_fr.xml 2012-04-13 12:05:18 UTC (rev 539)
+++ trunk/src/site/site_fr.xml 2012-04-13 12:36:56 UTC (rev 540)
@@ -34,12 +34,6 @@
<custom>
<fluidoSkin>
<topBarEnabled>true</topBarEnabled>
- <!--topBarIcon>
- <name>${project.name}</name>
- <alt>${project.name}</alt>
- <src>./images/echobase-logo.png</src>
- <href>/index.html</href>
- </topBarIcon-->
<googleSearch/>
<sideBarEnabled>false</sideBarEnabled>
<searchEnabled>true</searchEnabled>
1
0
Author: mdoray
Date: 2012-04-13 14:05:18 +0200 (Fri, 13 Apr 2012)
New Revision: 539
Url: http://forge.codelutin.com/repositories/revision/echobase/539
Log:
>From scmwebeditor --
Modified:
trunk/src/site/rst/embedded.rst
Modified: trunk/src/site/rst/embedded.rst
===================================================================
--- trunk/src/site/rst/embedded.rst 2012-04-13 11:58:28 UTC (rev 538)
+++ trunk/src/site/rst/embedded.rst 2012-04-13 12:05:18 UTC (rev 539)
@@ -135,7 +135,11 @@
::
JDK_HOME -> chemin vers où a été installé la JDK
+
+ Pour ajouter une variable d'environnement, écrire dans ton fichier /home/Utilisateur/.bashrc la ligne :
+export JDK_HOME=/path/vers/jdk
+
Installation d'echobase
=======================
1
0
r538 - trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders
by tchemit@users.forge.codelutin.com 13 Apr '12
by tchemit@users.forge.codelutin.com 13 Apr '12
13 Apr '12
Author: tchemit
Date: 2012-04-13 13:58:28 +0200 (Fri, 13 Apr 2012)
New Revision: 538
Url: http://forge.codelutin.com/repositories/revision/echobase/538
Log:
refs #1107: pb cr?\195?\169ation base embarqu?\195?\169e avec donn?\195?\169es Pelgas2000 ?\195?\160 2010 (ajout des associations echotype-species)
Modified:
trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java
Modified: trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java
===================================================================
--- trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java 2012-04-13 10:37:05 UTC (rev 537)
+++ trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java 2012-04-13 11:58:28 UTC (rev 538)
@@ -150,10 +150,14 @@
echotypeCategorys
);
- TableMeta meta = getTable(EchoBaseEntityEnum.Echotype);
- AssociationMeta associationMeta =
+ TableMeta echotypeMeta = getTable(EchoBaseEntityEnum.Echotype);
+
+ AssociationMeta voyageEchotypeAssociationMeta =
getMeta().getAssociations(Voyage.PROPERTY_ECHOTYPE);
+ AssociationMeta echotypeSpeciesAssociationMeta =
+ echotypeMeta.getAssociations(Echotype.PROPERTY_SPECIES);
+
DbEditorService dbEditorService =
getService(DbEditorService.class);
@@ -178,7 +182,7 @@
if (topiaId == null) {
// create this new echotype
- dbEditorService.saveEntity(meta,
+ dbEditorService.saveEntity(echotypeMeta,
"",
entity,
null,
@@ -210,12 +214,19 @@
File out;
// Export echotypes
- out = getTableFile(outputDir, meta, FileType.NEW);
- getExportService().exportDatas(meta, out);
+ out = getTableFile(outputDir, echotypeMeta, FileType.NEW);
+ getExportService().exportDatas(echotypeMeta, out);
+ // Export echotype - species association
+
+ out = getTableFile(outputDir, echotypeSpeciesAssociationMeta, FileType.ASSOCIATION);
+ getExportService().exportDatas(echotypeSpeciesAssociationMeta, out);
+
// Export voyage - echotype association
- out = getTableFile(outputDir, associationMeta, FileType.ASSOCIATION);
- getExportService().exportDatas(associationMeta, out);
+ out = getTableFile(outputDir, voyageEchotypeAssociationMeta, FileType.ASSOCIATION);
+ getExportService().exportDatas(voyageEchotypeAssociationMeta, out);
+
+
} finally {
if (cleanTransaction) {
serviceContext.getTransaction().rollbackTransaction();
1
0
r537 - in trunk/echobase-tools/src: main/java/fr/ifremer/echobase/tools/loaders test/java/fr/ifremer/echobase/tools/loaders test/resources/csv/new
by tchemit@users.forge.codelutin.com 13 Apr '12
by tchemit@users.forge.codelutin.com 13 Apr '12
13 Apr '12
Author: tchemit
Date: 2012-04-13 12:37:05 +0200 (Fri, 13 Apr 2012)
New Revision: 537
Url: http://forge.codelutin.com/repositories/revision/echobase/537
Log:
fixes #1107: pb cr?\195?\169ation base embarqu?\195?\169e avec donn?\195?\169es Pelgas2000 ?\195?\160 2010
Removed:
trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/EchotypeLoader.java
trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/EchotypeLoaderIT.java
trunk/echobase-tools/src/test/resources/csv/new/input-Echotype.csv
Modified:
trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java
trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/AbstractLoaderIT.java
trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/VoyageLoaderIT.java
trunk/echobase-tools/src/test/resources/csv/new/input-Voyage_echotype.csv
Deleted: trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/EchotypeLoader.java
===================================================================
--- trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/EchotypeLoader.java 2012-04-13 00:48:55 UTC (rev 536)
+++ trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/EchotypeLoader.java 2012-04-13 10:37:05 UTC (rev 537)
@@ -1,131 +0,0 @@
-/*
- * #%L
- * EchoBase :: Tools
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2011 Ifremer, Codelutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- * #L%
- */
-package fr.ifremer.echobase.tools.loaders;
-
-import com.google.common.collect.Maps;
-import fr.ifremer.echobase.EchoBaseFunctions;
-import fr.ifremer.echobase.csv.EntityCsvModel;
-import fr.ifremer.echobase.entities.EchoBaseEntityEnum;
-import fr.ifremer.echobase.entities.data.Echotype;
-import fr.ifremer.echobase.entities.meta.AssociationMeta;
-import fr.ifremer.echobase.entities.meta.TableMeta;
-import fr.ifremer.echobase.entities.references.DepthStratum;
-import fr.ifremer.echobase.entities.references.EchotypeCategory;
-import fr.ifremer.echobase.entities.references.Species;
-import fr.ifremer.echobase.services.DbEditorService;
-import fr.ifremer.echobase.tools.FileType;
-import org.nuiton.util.csv.Import;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.List;
-import java.util.Map;
-
-/**
- * {@link Echotype} loader.
- *
- * @author tchemit <chemit(a)codelutin.com>
- * @since 0.3
- */
-public class EchotypeLoader extends EntityLoader<Echotype> {
-
- public EchotypeLoader() {
- super(Echotype.class,
- new EchoBaseEntityEnum[]{EchoBaseEntityEnum.Species},
- FileType.NEW);
- }
-
- @Override
- protected void exportAssociations(File outputDir,
- FileType targetType) throws IOException {
- super.exportAssociations(outputDir, targetType);
-
- // also export echotype associations (echotype are references)
- AssociationMeta associationMeta =
- getMeta().getAssociations(Echotype.PROPERTY_SPECIES);
-
- exportAssociation(outputDir, targetType, associationMeta);
- }
-
- @Override
- protected EntityCsvModel<Echotype> createCsvImportModel(TableMeta meta) {
-
- List<Species> species = getEntities(Species.class);
- List<DepthStratum> depthStratums = getEntities(DepthStratum.class);
- List<EchotypeCategory> echotypeCategorys = getEntities(EchotypeCategory.class);
-
- EntityCsvModel<Echotype> model = EntityCsvModel.newModel(
- getCsvSeparator(),
- meta
- );
-
- /*
- "ECHOS";"IMAGES";"LIBELLE_DESCRIPTION_DEVIATION";"ID_DESCRIPTION_DEVIATION";"GENRE_ESP;TYPE_DEVIATION"
- */
- model.addDefaultColumn("ID_DESCRIPTION_DEVIATION", Echotype.PROPERTY_ID, int.class);
- model.newMandatoryColumn("ECHOS", Echotype.PROPERTY_NAME);
- model.newMandatoryColumn("LIBELLE_DESCRIPTION_DEVIATION", Echotype.PROPERTY_MEANING);
- model.addForeignKeyForImport("IMAGES", Echotype.PROPERTY_DEPTH_STRATUM, DepthStratum.class, depthStratums, EchoBaseFunctions.DEPTH_STRATUM_ID);
- model.addForeignKeyForImport("TYPE_DEVIATION", Echotype.PROPERTY_ECHOTYPE_CATEGORY, EchotypeCategory.class, echotypeCategorys, EchoBaseFunctions.ECHO_TYPE_CATEGORY_NAME);
- model.addForeignKeyForAssociationForImport("GENRE_ESP", Echotype.PROPERTY_SPECIES, Species.class, species, EchoBaseFunctions.SPECIES_BARACOUDA_CODE);
- return model;
- }
-
- @Override
- protected void importNewEntities(DbEditorService dbEditorService,
- TableMeta meta,
- Import<Echotype> importer) {
-
- Map<String, String> keystoTopiaId = Maps.newHashMap();
-
- for (Echotype entity : importer) {
-
- // key for this echotype : id + depthStratum
- String key = entity.getId() + "_" + entity.getDepthStratum().getId();
-
- String topiaId = keystoTopiaId.get(key);
-
- if (topiaId == null) {
-
- // create this new echotype
- dbEditorService.saveEntity(meta,
- "",
- entity,
- null,
- false
- );
-
- topiaId = entity.getTopiaId();
- keystoTopiaId.put(key, topiaId);
- }
-
- // just push the species of this echotype
- // the saveEntity can not save it
- Species species = entity.getSpecies().iterator().next();
-
- Echotype echotype = getEntityById(Echotype.class, topiaId);
- echotype.addSpecies(species);
- }
- }
-}
Modified: trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java
===================================================================
--- trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java 2012-04-13 00:48:55 UTC (rev 536)
+++ trunk/echobase-tools/src/main/java/fr/ifremer/echobase/tools/loaders/VoyageLoader.java 2012-04-13 10:37:05 UTC (rev 537)
@@ -23,22 +23,26 @@
*/
package fr.ifremer.echobase.tools.loaders;
-import com.google.common.base.Preconditions;
import com.google.common.collect.Lists;
+import com.google.common.collect.Maps;
import com.healthmarketscience.jackcess.Database;
import com.healthmarketscience.jackcess.Table;
import fr.ifremer.echobase.EchoBaseFunctions;
import fr.ifremer.echobase.EchoBaseTechnicalException;
+import fr.ifremer.echobase.csv.AbstractImportModel;
import fr.ifremer.echobase.csv.EchobaseCsvUtil;
import fr.ifremer.echobase.entities.EchoBaseEntityEnum;
import fr.ifremer.echobase.entities.data.Echotype;
-import fr.ifremer.echobase.entities.data.EchotypeDAO;
+import fr.ifremer.echobase.entities.data.EchotypeImpl;
import fr.ifremer.echobase.entities.data.Voyage;
import fr.ifremer.echobase.entities.meta.AssociationMeta;
import fr.ifremer.echobase.entities.meta.TableMeta;
import fr.ifremer.echobase.entities.references.AreaOfOperation;
+import fr.ifremer.echobase.entities.references.DepthStratum;
+import fr.ifremer.echobase.entities.references.EchotypeCategory;
import fr.ifremer.echobase.entities.references.Mission;
import fr.ifremer.echobase.entities.references.Species;
+import fr.ifremer.echobase.services.DbEditorService;
import fr.ifremer.echobase.tools.FileType;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
@@ -46,10 +50,6 @@
import org.nuiton.topia.persistence.TopiaDAO;
import org.nuiton.util.csv.Import;
import org.nuiton.util.csv.ImportModel;
-import org.nuiton.util.csv.ImportToMap;
-import org.nuiton.util.csv.ImportableColumn;
-import org.nuiton.util.csv.ModelBuilder;
-import org.nuiton.util.csv.ValueSetter;
import java.io.BufferedReader;
import java.io.File;
@@ -68,20 +68,17 @@
public class VoyageLoader extends EntityLoader<Voyage> {
/** Logger. */
- private static final Log log =
- LogFactory.getLog(AcousticInstrumentLoader.class);
+ private static final Log log = LogFactory.getLog(VoyageLoader.class);
public VoyageLoader() {
- super(Voyage.class,
- new EchoBaseEntityEnum[]{EchoBaseEntityEnum.Echotype},
- FileType.BARACOUDA);
+ super(Voyage.class, FileType.BARACOUDA);
}
@Override
protected void exportAssociations(File outputDir, FileType targetType) throws IOException {
super.exportAssociations(outputDir, targetType);
- // also export echotype associations (echotype are references)
+ // also export voyage - echotype associations
AssociationMeta associationMeta =
getMeta().getAssociations(Voyage.PROPERTY_ECHOTYPE);
@@ -134,53 +131,68 @@
}
}
- public void generateEchotypeAssociation(File csvfile,
- File outputDir,
- boolean cleanTransaction) throws IOException, TopiaException {
+ public void generateEchotype(File csvfile,
+ File outputDir,
+ boolean cleanTransaction) throws IOException, TopiaException {
-
- Map<String, Species> speciess =
- getUniverse(Species.class, EchoBaseFunctions.SPECIES_BARACOUDA_CODE);
-
Map<String, Voyage> voyages =
getUniverse(Voyage.class, EchoBaseFunctions.VOYAGE_NAME);
- EchotypeImportModel model = new EchotypeImportModel(getCsvSeparator());
+ Map<String, Species> species = getUniverse(Species.class, EchoBaseFunctions.SPECIES_BARACOUDA_CODE);
+ Map<String, DepthStratum> depthStratums = getUniverse(DepthStratum.class, EchoBaseFunctions.DEPTH_STRATUM_ID);
+ Map<String, EchotypeCategory> echotypeCategorys = getUniverse(EchotypeCategory.class, EchoBaseFunctions.ECHO_TYPE_CATEGORY_NAME);
- /*
- "CAMPAGNE";"ECHOS";"IMAGES";"LIBELLE_DESCRIPTION_DEVIATION";"ID_DESCRIPTION_DEVIATION";"GENRE_ESP"
- */
- model.newMandatoryColumn("CAMPAGNE");
- model.newMandatoryColumn("ID_DESCRIPTION_DEVIATION");
- model.newMandatoryColumn("GENRE_ESP");
- model.newIgnoredColumn("ECHOS");
- model.newIgnoredColumn("IMAGES");
- model.newIgnoredColumn("LIBELLE_DESCRIPTION_DEVIATION");
+ ImportModel<EchotyeRow> model = new EchotypeImportModel(
+ getCsvSeparator(),
+ voyages,
+ species,
+ depthStratums,
+ echotypeCategorys
+ );
- TableMeta meta = getTable(EchoBaseEntityEnum.Voyage);
+ TableMeta meta = getTable(EchoBaseEntityEnum.Echotype);
AssociationMeta associationMeta =
- meta.getAssociations(Voyage.PROPERTY_ECHOTYPE);
+ getMeta().getAssociations(Voyage.PROPERTY_ECHOTYPE);
+ DbEditorService dbEditorService =
+ getService(DbEditorService.class);
+
try {
- EchotypeDAO echotypeDAO = (EchotypeDAO) getDAO(Echotype.class);
BufferedReader bf = new BufferedReader(new FileReader(csvfile));
try {
- Import<Map<String, Object>> importer = ImportToMap.newImport(model, bf);
+ Map<String, String> keystoTopiaId = Maps.newHashMap();
+ Import<EchotyeRow> importer = Import.newImport(model, bf);
+
try {
- for (Map<String, Object> entity : importer) {
- String campagneName = (String) entity.get("CAMPAGNE");
- String idEchotype = (String) entity.get("ID_DESCRIPTION_DEVIATION");
- String specieEchotype = (String) entity.get("GENRE_ESP");
- Voyage voayge = getFK(voyages, campagneName);
- Species species = getFK(speciess, specieEchotype);
- Echotype echotype = echotypeDAO.findByIdAndSpecies(
- Integer.valueOf(idEchotype),
- species
- );
- Preconditions.checkNotNull(echotype, String.format("Could not find echotype with (id,species) = (%s,%s)", idEchotype, specieEchotype));
- voayge.addEchotype(echotype);
+ for (EchotyeRow row : importer) {
+
+ Echotype entity = row.getEchotype();
+
+ // key for this echotype : id + depthStratum
+ String key = entity.getId() + "_" + entity.getDepthStratum().getId();
+
+ String topiaId = keystoTopiaId.get(key);
+
+ if (topiaId == null) {
+
+ // create this new echotype
+ dbEditorService.saveEntity(meta,
+ "",
+ entity,
+ null,
+ false
+ );
+
+ topiaId = entity.getTopiaId();
+ keystoTopiaId.put(key, topiaId);
+
+ Echotype echotypeSaved =
+ dbEditorService.getEntityById(Echotype.class, topiaId);
+ echotypeSaved.addSpecies(row.getSpecies());
+ row.getVoyage().addEchotype(echotypeSaved);
+ }
}
} finally {
@@ -195,10 +207,15 @@
bf.close();
}
- File out = getTableFile(outputDir, associationMeta, FileType.ASSOCIATION);
+ File out;
+ // Export echotypes
+ out = getTableFile(outputDir, meta, FileType.NEW);
+ getExportService().exportDatas(meta, out);
+
+ // Export voyage - echotype association
+ out = getTableFile(outputDir, associationMeta, FileType.ASSOCIATION);
getExportService().exportDatas(associationMeta, out);
-
} finally {
if (cleanTransaction) {
serviceContext.getTransaction().rollbackTransaction();
@@ -206,43 +223,86 @@
}
}
- public static class EchotypeImportModel implements ImportModel<Map<String, Object>> {
+ public static class EchotyeRow {
- protected final char separator;
+ protected final Echotype echotype;
+ protected Voyage voyage;
- protected final ModelBuilder<Map<String, Object>> modelBuilder;
+ protected Species species;
- public EchotypeImportModel(char separator) {
- this.separator = separator;
- modelBuilder = new ModelBuilder<Map<String, Object>>();
+ public EchotyeRow() {
+ echotype = new EchotypeImpl();
}
- @Override
- public char getSeparator() {
- return separator;
+ public Voyage getVoyage() {
+ return voyage;
}
- @Override
- public void pushCsvHeaderNames(List<String> headerNames) {
+ public Species getSpecies() {
+ return species;
}
- @Override
- public Map<String, Object> newEmptyInstance() {
- return null;
+ public Echotype getEchotype() {
+ return echotype;
}
- @Override
- public Iterable<ImportableColumn<Map<String, Object>, Object>> getColumnsForImport() {
- return (Iterable) modelBuilder.getColumnsForImport();
+ public void setVoyage(Voyage voyage) {
+ this.voyage = voyage;
}
- public ImportableColumn<Map<String, Object>, String> newMandatoryColumn(String headerName) {
- return modelBuilder.newMandatoryColumn(headerName, (ValueSetter) EchobaseCsvUtil.newMapProperty(headerName));
+ public void setSpecies(Species species) {
+ this.species = species;
}
- public ImportableColumn<Map<String, Object>, String> newIgnoredColumn(String headerName) {
- return modelBuilder.newIgnoredColumn(headerName);
+ public void setName(String name) {
+ echotype.setName(name);
}
+
+ public void setMeaning(String meaning) {
+ echotype.setMeaning(meaning);
+ }
+
+ public void setId(int id) {
+ echotype.setId(id);
+ }
+
+ public void setEchotypeCategory(EchotypeCategory echotypeCategory) {
+ echotype.setEchotypeCategory(echotypeCategory);
+ }
+
+ public void setDepthStratum(DepthStratum depthStratum) {
+ echotype.setDepthStratum(depthStratum);
+ }
}
+
+ public static class EchotypeImportModel extends AbstractImportModel<EchotyeRow> {
+
+
+ public EchotypeImportModel(char separator,
+ Map<String, Voyage> voyages,
+ Map<String, Species> species,
+ Map<String, DepthStratum> depthStratums,
+ Map<String, EchotypeCategory> echotypeCategorys) {
+ super(separator);
+
+
+ /*
+ "CAMPAGNE";"ECHOS";"IMAGES";"LIBELLE_DESCRIPTION_DEVIATION";"ID_DESCRIPTION_DEVIATION";"GENRE_ESP";"TYPE_DEVIATION"
+ */
+
+ newMandatoryColumn("ID_DESCRIPTION_DEVIATION", Echotype.PROPERTY_ID, EchobaseCsvUtil.PRIMITIVE_INTEGER);
+ newMandatoryColumn("ECHOS", Echotype.PROPERTY_NAME);
+ newMandatoryColumn("LIBELLE_DESCRIPTION_DEVIATION", Echotype.PROPERTY_MEANING);
+ newForeignKeyColumn("CAMPAGNE", "voyage", Voyage.class, Voyage.PROPERTY_NAME, voyages);
+ newForeignKeyColumn("IMAGES", Echotype.PROPERTY_DEPTH_STRATUM, DepthStratum.class, DepthStratum.PROPERTY_ID, depthStratums);
+ newForeignKeyColumn("GENRE_ESP", Echotype.PROPERTY_SPECIES, Species.class, Species.PROPERTY_BARACOUDA_CODE, species);
+ newForeignKeyColumn("TYPE_DEVIATION", Echotype.PROPERTY_ECHOTYPE_CATEGORY, EchotypeCategory.class, EchotypeCategory.PROPERTY_NAME, echotypeCategorys);
+ }
+
+ @Override
+ public VoyageLoader.EchotyeRow newEmptyInstance() {
+ return new EchotyeRow();
+ }
+ }
}
\ No newline at end of file
Modified: trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/AbstractLoaderIT.java
===================================================================
--- trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/AbstractLoaderIT.java 2012-04-13 00:48:55 UTC (rev 536)
+++ trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/AbstractLoaderIT.java 2012-04-13 10:37:05 UTC (rev 537)
@@ -352,7 +352,6 @@
entityLoaders.add(newService(TSParametersLoader.class));
entityLoaders.add(newService(StrataLoader.class));
entityLoaders.add(newService(EchotypeCategoryLoader.class));
- entityLoaders.add(newService(EchotypeLoader.class));
entityLoaders.add(newService(VesselTypeLoader.class));
entityLoaders.add(newService(VesselLoader.class));
entityLoaders.add(newService(OperationEventLoader.class));
Deleted: trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/EchotypeLoaderIT.java
===================================================================
--- trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/EchotypeLoaderIT.java 2012-04-13 00:48:55 UTC (rev 536)
+++ trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/EchotypeLoaderIT.java 2012-04-13 10:37:05 UTC (rev 537)
@@ -1,46 +0,0 @@
-/*
- * #%L
- * EchoBase :: Tools
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2011 Ifremer, Codelutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- * #L%
- */
-package fr.ifremer.echobase.tools.loaders;
-
-import fr.ifremer.echobase.entities.data.Echotype;
-import org.junit.Test;
-
-/**
- * To test the {@link EchotypeLoader}.
- *
- * @author tchemit <chemit(a)codelutin.com>
- * @since 0.2
- */
-public class EchotypeLoaderIT extends AbstractLoaderIT<Echotype, EchotypeLoader> {
-
- public EchotypeLoaderIT() {
- super(EchotypeLoader.class, 43, 0);
- }
-
- @Test
- public void testGenerateNewEntities() throws Exception {
- generateNewEntities();
- }
-
-}
Modified: trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/VoyageLoaderIT.java
===================================================================
--- trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/VoyageLoaderIT.java 2012-04-13 00:48:55 UTC (rev 536)
+++ trunk/echobase-tools/src/test/java/fr/ifremer/echobase/tools/loaders/VoyageLoaderIT.java 2012-04-13 10:37:05 UTC (rev 537)
@@ -24,11 +24,9 @@
package fr.ifremer.echobase.tools.loaders;
import fr.ifremer.echobase.entities.EchoBaseEntityEnum;
-import fr.ifremer.echobase.entities.data.Echotype;
import fr.ifremer.echobase.entities.data.Voyage;
import fr.ifremer.echobase.entities.meta.AssociationMeta;
import fr.ifremer.echobase.entities.meta.MetaFilenameAware;
-import fr.ifremer.echobase.entities.meta.TableMeta;
import fr.ifremer.echobase.tools.FileType;
import org.junit.Assert;
import org.junit.Test;
@@ -64,15 +62,13 @@
}
@Test
- public void testGenerateEchotypeAssociation() throws Exception {
+ public void testGenerateEchotype() throws Exception {
loadDependencies(EchoBaseEntityEnum.Voyage, dones);
+ loadDependencies(EchoBaseEntityEnum.Species, dones);
+ loadDependencies(EchoBaseEntityEnum.DepthStratum, dones);
+ loadDependencies(EchoBaseEntityEnum.EchotypeCategory, dones);
- TableMeta table = serviceContext.getDbMeta().getTable(EchoBaseEntityEnum.Echotype);
- AssociationMeta echotypeAssociation =
- table.getAssociations(Echotype.PROPERTY_SPECIES);
- loadDependencies(echotypeAssociation, dones);
-
AssociationMeta associationMeta =
loader.getMeta().getAssociations(Voyage.PROPERTY_ECHOTYPE);
@@ -88,7 +84,7 @@
Assert.assertTrue(inFile.exists());
- loader.generateEchotypeAssociation(
+ loader.generateEchotype(
inFile,
outFile,
true
Deleted: trunk/echobase-tools/src/test/resources/csv/new/input-Echotype.csv
===================================================================
--- trunk/echobase-tools/src/test/resources/csv/new/input-Echotype.csv 2012-04-13 00:48:55 UTC (rev 536)
+++ trunk/echobase-tools/src/test/resources/csv/new/input-Echotype.csv 2012-04-13 10:37:05 UTC (rev 537)
@@ -1,184 +0,0 @@
-"ECHOS";"IMAGES";"LIBELLE_DESCRIPTION_DEVIATION";"ID_DESCRIPTION_DEVIATION";"GENRE_ESP";"TYPE_DEVIATION"
-"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"COMP-LEM";PO;
-"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"ENGR-ENC";PO;
-"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"TRAC-TRU";PO;
-"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM";PO;
-"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU";PO;
-"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED";PO;
-"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU";PO;
-"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"COMP-LEM";PO;
-"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"MICR-POU";PO;
-"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"SCOM-JAP";PO;
-"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"SCOM-SCO";PO;
-"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"TRAC-MED";PO;
-"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"TRAC-TRU";PO;
-"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"COMP-LEM";PO;
-"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"MICR-POU";PO;
-"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-JAP";PO;
-"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-SCO";PO;
-"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-MED";PO;
-"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-TRU";PO;
-"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO;
-"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO;
-"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO;
-"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO;
-"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"COMP-LEM";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"TRAC-MED";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"TRAC-TRU";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED";PO;
-"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU";PO;
-"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"COMP-LEM";PO;
-"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"MERL-MER";PO;
-"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"MERL-MNG";PO;
-"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"SCOM-JAP";PO;
-"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"SCOM-SCO";PO;
-"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"TRAC-MED";PO;
-"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"TRAC-TRU";PO;
-"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"CLUP-HAR";PO;
-"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"ENGR-ENC";PO;
-"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SARD-PIL";PO;
-"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SCOM-SCO";PO;
-"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SPRA-SPR";PO;
-"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"ENGR-ENC";PO;
-"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SARD-PIL";PO;
-"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SPRA-SPR";PO;
-"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"CLUP-HAR";PO;
-"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"ENGR-ENC";PO;
-"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"SARD-PIL";PO;
-"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"SPRA-SPR";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO;
-"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO;
-"D3";"CLAS";"Détection accores et large (merlan bleu et petit anchois PEGASE 97)";25;"ENGR-ENC";PO;
-"D3";"CLAS";"Détection accores et large (merlan bleu et petit anchois PEGASE 97)";25;"MICR-POU";PO;
-"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO;
-"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO;
-"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE";PO;
-"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU";PO;
-"D3";"CLAS";"Merlans bleus, myctophidés et capros présents au large";62;"CAPR-APE";PO;
-"D3";"CLAS";"Merlans bleus, myctophidés et capros présents au large";62;"MICR-POU";PO;
-"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"ENGR-ENC";PO;
-"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"SARD-PIL";PO;
-"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"SCOM-SCO";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"ENGR-ENC";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"KATS-PEL";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SARD-PIL";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SCOM-JAP";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SCOM-SCO";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"THYN-ALA";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"TRAC-MED";PO;
-"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"TRAC-TRU";PO;
-"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"ENGR-ENC";PO;
-"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SARD-PIL";PO;
-"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SCOM-SCO";PO;
-"D4";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO;
-"D4";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO;
-"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"ENGR-ENC";PO;
-"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"SARD-PIL";PO;
-"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"SCOM-SCO";PO;
-"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"ENGR-ENC";PO;
-"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SARD-PIL";PO;
-"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-JAP";PO;
-"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-SCO";PO;
-"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SPRA-SPR";PO;
-"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-MED";PO;
-"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-TRU";PO;
-"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"ENGR-ENC";PO;
-"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SARD-PIL";PO;
-"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-JAP";PO;
-"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-SCO";PO;
-"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SPRA-SPR";PO;
-"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC";PO;
-"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL";PO;
-"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR";PO;
-"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"ENGR-ENC";PO;
-"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SARD-PIL";PO;
-"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SCOM-JAP";PO;
-"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SCOM-SCO";PO;
-"D5";"CLAS";"""Fau D2"" - CHINCHARD en banc classique, dense et très mobile";2;"TRAC-MED";PO;
-"D5";"CLAS";"""Fau D2"" - CHINCHARD en banc classique, dense et très mobile";2;"TRAC-TRU";PO;
-"D5";"CLAS";"(Pel03) Gros Bancs très denses et très mobiles de CHINCHARD";20;"TRAC-TRU";PO;
-"D5";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO;
-"D5";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO;
-"D5";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE";PO;
-"D5";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU";PO;
-"D5";"CLAS";"Grands fléchards";14;"TRAC-TRU";PO;
-"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"COMP-LEM";PO;
-"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"MERL-MER";PO;
-"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"MICR-POU";PO;
-"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"TRAC-MED";PO;
-"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"TRAC-TRU";PO;
-"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"ENGR-ENC";PO;
-"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SARD-PIL";PO;
-"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SCOM-JAP";PO;
-"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SCOM-SCO";PO;
-"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SPRA-SPR";PO;
-"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"TRAC-MED";PO;
-"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"TRAC-TRU";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED";PO;
-"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU";PO;
-"D6";"CLAS";"(PEL04) Maquereau";23;"SCOM-JAP";PO;
-"D6";"CLAS";"(PEL04) Maquereau";23;"SCOM-SCO";PO;
-"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"ENGR-ENC";PO;
-"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"TRAC-MED";PO;
-"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"TRAC-TRU";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"COMP-LEM";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"ENGR-ENC";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"MICR-POU";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SARD-PIL";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SCOM-JAP";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SCOM-SCO";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"TRAC-MED";PO;
-"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"TRAC-TRU";PO;
-"D6";"CLAS";"(PEL07) bancs de sardine";47;"SARD-PIL";PO;
-"D6";"NA";"(JUV03) 'dragon bleu' - couche bleue de forme septentéiforme avec des noyaux plus dense)";41;"ENGR-ENC";PL;
-"D6";"NA";"(JUV03) 'dragon bleu' - couche bleue de forme septentéiforme avec des noyaux plus dense)";41;"SARD-PIL";PL;
-"D6";"NA";"(JUV03) 'dragon bleu' - couche bleue de forme septentéiforme avec des noyaux plus dense)";41;"SCOM-SCO";PL;
-"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC";PO;
-"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL";PO;
-"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR";PO;
-"D7";"CLAS";"(Pel07) bancs de maquereau";48;"SCOM-SCO";PO;
-"D7";"CLAS";"(PEL08) D2 identifié sardine";51;"SARD-PIL";PO;
-"D7";"CLAS";"Banc d'Anchois purs";65;"ENGR-ENC";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"ENGR-ENC";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"KATS-PEL";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SARD-PIL";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SCOM-JAP";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SCOM-SCO";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"THYN-ALA";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"TRAC-MED";PO;
-"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"TRAC-TRU";PO;
-"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"COMP-LEM";PO;
-"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"MICR-POU";PO;
-"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"SCOM-SCO";PO;
-"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"TRAC-MED";PO;
-"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"TRAC-TRU";PO;
-"D8";"CLAS";"Banc de Sardines pur";66;"SARD-PIL";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"ENGR-ENC";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"KATS-PEL";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SARD-PIL";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SCOM-JAP";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SCOM-SCO";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"THYN-ALA";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"TRAC-MED";PO;
-"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"TRAC-TRU";PO;
\ No newline at end of file
Modified: trunk/echobase-tools/src/test/resources/csv/new/input-Voyage_echotype.csv
===================================================================
--- trunk/echobase-tools/src/test/resources/csv/new/input-Voyage_echotype.csv 2012-04-13 00:48:55 UTC (rev 536)
+++ trunk/echobase-tools/src/test/resources/csv/new/input-Voyage_echotype.csv 2012-04-13 10:37:05 UTC (rev 537)
@@ -1,380 +1,377 @@
-"CAMPAGNE";"ECHOS";"IMAGES";"LIBELLE_DESCRIPTION_DEVIATION";"ID_DESCRIPTION_DEVIATION";"GENRE_ESP"
-"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM"
-"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU"
-"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED"
-"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU"
-"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM"
-"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU"
-"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED"
-"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU"
-"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM"
-"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED"
-"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC"
-"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU"
-"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"DAAG1991";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE"
-"DAAG1991";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU"
-"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM"
-"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU"
-"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED"
-"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU"
-"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM"
-"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU"
-"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED"
-"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU"
-"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM"
-"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU"
-"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED"
-"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU"
-"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"JUVAGA2003";"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"COMP-LEM"
-"JUVAGA2003";"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"ENGR-ENC"
-"JUVAGA2003";"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"TRAC-TRU"
-"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"CLUP-HAR"
-"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"ENGR-ENC"
-"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SARD-PIL"
-"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SCOM-SCO"
-"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SPRA-SPR"
-"JUVAGA2003";"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"ENGR-ENC"
-"JUVAGA2003";"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"SARD-PIL"
-"JUVAGA2003";"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"SCOM-SCO"
-"JUVAGA2003";"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"ENGR-ENC"
-"JUVAGA2003";"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"SARD-PIL"
-"JUVAGA2003";"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"SCOM-SCO"
-"JUVAGA2003";"D5";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"JUVAGA2003";"D5";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"JUVAGA2003";"D6";"NA";"(JUV03) 'dragon bleu' - couche bleue de forme septentéiforme avec des noyaux plus dense)";41;"ENGR-ENC"
-"JUVAGA2003";"D6";"NA";"(JUV03) 'dragon bleu' - couche bleue de forme septentéiforme avec des noyaux plus dense)";41;"SARD-PIL"
-"JUVAGA2003";"D6";"NA";"(JUV03) 'dragon bleu' - couche bleue de forme septentéiforme avec des noyaux plus dense)";41;"SCOM-SCO"
-"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM"
-"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU"
-"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED"
-"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU"
-"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"ENGR-ENC"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"KATS-PEL"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SARD-PIL"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SCOM-JAP"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SCOM-SCO"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"THYN-ALA"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"TRAC-MED"
-"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"TRAC-TRU"
-"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"ENGR-ENC"
-"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SARD-PIL"
-"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-JAP"
-"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-SCO"
-"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SPRA-SPR"
-"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-MED"
-"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-TRU"
-"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"ENGR-ENC"
-"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SARD-PIL"
-"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SCOM-JAP"
-"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SCOM-SCO"
-"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SPRA-SPR"
-"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"TRAC-MED"
-"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"TRAC-TRU"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"ENGR-ENC"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"KATS-PEL"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SARD-PIL"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SCOM-JAP"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SCOM-SCO"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"THYN-ALA"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"TRAC-MED"
-"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"TRAC-TRU"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"ENGR-ENC"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"KATS-PEL"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SARD-PIL"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SCOM-JAP"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SCOM-SCO"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"THYN-ALA"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"TRAC-MED"
-"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"TRAC-TRU"
-"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM"
-"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED"
-"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC"
-"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU"
-"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"PEGASE1997";"D3";"CLAS";"Détection accores et large (merlan bleu et petit anchois PEGASE 97)";25;"ENGR-ENC"
-"PEGASE1997";"D3";"CLAS";"Détection accores et large (merlan bleu et petit anchois PEGASE 97)";25;"MICR-POU"
-"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM"
-"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED"
-"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC"
-"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU"
-"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"PEGASE1998";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE"
-"PEGASE1998";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU"
-"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM"
-"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED"
-"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC"
-"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU"
-"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2000";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2000";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"ENGR-ENC"
-"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SARD-PIL"
-"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-JAP"
-"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-SCO"
-"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SPRA-SPR"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED"
-"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU"
-"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM"
-"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED"
-"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC"
-"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU"
-"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2001";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC"
-"PELGAS2001";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL"
-"PELGAS2001";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR"
-"PELGAS2001";"D5";"CLAS";"Grands fléchards";14;"TRAC-TRU"
-"PELGAS2002";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"COMP-LEM"
-"PELGAS2002";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"TRAC-MED"
-"PELGAS2002";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"TRAC-TRU"
-"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2002";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2002";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2002";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC"
-"PELGAS2002";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL"
-"PELGAS2002";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR"
-"PELGAS2002";"D5";"CLAS";"""Fau D2"" - CHINCHARD en banc classique, dense et très mobile";2;"TRAC-MED"
-"PELGAS2002";"D5";"CLAS";"""Fau D2"" - CHINCHARD en banc classique, dense et très mobile";2;"TRAC-TRU"
-"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM"
-"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU"
-"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED"
-"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU"
-"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2003";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2003";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2003";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"ENGR-ENC"
-"PELGAS2003";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SARD-PIL"
-"PELGAS2003";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SCOM-SCO"
-"PELGAS2003";"D5";"CLAS";"(Pel03) Gros Bancs très denses et très mobiles de CHINCHARD";20;"TRAC-TRU"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED"
-"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU"
-"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"COMP-LEM"
-"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"MICR-POU"
-"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"SCOM-JAP"
-"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"SCOM-SCO"
-"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"TRAC-MED"
-"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"TRAC-TRU"
-"PELGAS2004";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"ENGR-ENC"
-"PELGAS2004";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SARD-PIL"
-"PELGAS2004";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SPRA-SPR"
-"PELGAS2004";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2004";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2004";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC"
-"PELGAS2004";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL"
-"PELGAS2004";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR"
-"PELGAS2004";"D5";"CLAS";"(Pel03) Gros Bancs très denses et très mobiles de CHINCHARD";20;"TRAC-TRU"
-"PELGAS2004";"D6";"CLAS";"(PEL04) Maquereau";23;"SCOM-JAP"
-"PELGAS2004";"D6";"CLAS";"(PEL04) Maquereau";23;"SCOM-SCO"
-"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM"
-"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU"
-"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED"
-"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU"
-"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2005";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2005";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"ENGR-ENC"
-"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SARD-PIL"
-"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-JAP"
-"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-SCO"
-"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SPRA-SPR"
-"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-MED"
-"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-TRU"
-"PELGAS2005";"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"ENGR-ENC"
-"PELGAS2005";"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"TRAC-MED"
-"PELGAS2005";"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"TRAC-TRU"
-"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"COMP-LEM"
-"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"MICR-POU"
-"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-JAP"
-"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-SCO"
-"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-MED"
-"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-TRU"
-"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2006";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2006";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"ENGR-ENC"
-"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SARD-PIL"
-"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-JAP"
-"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-SCO"
-"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SPRA-SPR"
-"PELGAS2006";"D5";"CLAS";"(Pel03) Gros Bancs très denses et très mobiles de CHINCHARD";20;"TRAC-TRU"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"COMP-LEM"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"ENGR-ENC"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"MICR-POU"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SARD-PIL"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SCOM-JAP"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SCOM-SCO"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"TRAC-MED"
-"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"TRAC-TRU"
-"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM"
-"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU"
-"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED"
-"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU"
-"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2007";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2007";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2007";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"ENGR-ENC"
-"PELGAS2007";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SARD-PIL"
-"PELGAS2007";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SCOM-SCO"
-"PELGAS2007";"D6";"CLAS";"(PEL07) bancs de sardine";47;"SARD-PIL"
-"PELGAS2007";"D7";"CLAS";"(Pel07) bancs de maquereau";48;"SCOM-SCO"
-"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"COMP-LEM"
-"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"MICR-POU"
-"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"SCOM-SCO"
-"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"TRAC-MED"
-"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"TRAC-TRU"
-"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"COMP-LEM"
-"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"MICR-POU"
-"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-JAP"
-"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-SCO"
-"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-MED"
-"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-TRU"
-"PELGAS2008";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"ENGR-ENC"
-"PELGAS2008";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SARD-PIL"
-"PELGAS2008";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SPRA-SPR"
-"PELGAS2008";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2008";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"ENGR-ENC"
-"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SARD-PIL"
-"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-JAP"
-"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-SCO"
-"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SPRA-SPR"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED"
-"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU"
-"PELGAS2008";"D7";"CLAS";"(PEL08) D2 identifié sardine";51;"SARD-PIL"
-"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC"
-"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL"
-"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP"
-"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO"
-"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR"
-"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC"
-"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL"
-"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP"
-"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO"
-"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR"
-"PELGAS2009";"D4";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE"
-"PELGAS2009";"D4";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU"
-"PELGAS2009";"D5";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE"
-"PELGAS2009";"D5";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU"
-"PELGAS2009";"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC"
-"PELGAS2009";"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL"
-"PELGAS2009";"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR"
-"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"COMP-LEM"
-"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"MERL-MER"
-"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"MERL-MNG"
-"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"SCOM-JAP"
-"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"SCOM-SCO"
-"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"TRAC-MED"
-"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"TRAC-TRU"
-"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"CLUP-HAR"
-"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"ENGR-ENC"
-"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"SARD-PIL"
-"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"SPRA-SPR"
-"PELGAS2010";"D3";"CLAS";"Merlans bleus, myctophidés et capros présents au large";62;"CAPR-APE"
-"PELGAS2010";"D3";"CLAS";"Merlans bleus, myctophidés et capros présents au large";62;"MICR-POU"
-"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"ENGR-ENC"
-"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SARD-PIL"
-"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SCOM-JAP"
-"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SCOM-SCO"
-"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"COMP-LEM"
-"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"MERL-MER"
-"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"MICR-POU"
-"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"TRAC-MED"
-"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"TRAC-TRU"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED"
-"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU"
-"PELGAS2010";"D7";"CLAS";"Banc d'Anchois purs";65;"ENGR-ENC"
-"PELGAS2010";"D8";"CLAS";"Banc de Sardines pur";66;"SARD-PIL"
\ No newline at end of file
+"CAMPAGNE";"ECHOS";"IMAGES";"LIBELLE_DESCRIPTION_DEVIATION";"ID_DESCRIPTION_DEVIATION";"GENRE_ESP";"TYPE_DEVIATION"
+"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM";PO
+"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU";PO
+"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED";PO
+"DAAG1989";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU";PO
+"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"DAAG1989";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM";PO
+"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU";PO
+"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED";PO
+"DAAG1990";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU";PO
+"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"DAAG1990";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM";PO
+"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED";PO
+"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC";PO
+"DAAG1991";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU";PO
+"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"DAAG1991";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"DAAG1991";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE";PO
+"DAAG1991";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU";PO
+"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM";PO
+"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU";PO
+"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED";PO
+"DAAG1992";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU";PO
+"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"DAAG1992";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM";PO
+"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU";PO
+"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED";PO
+"EIGAS83b";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU";PO
+"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"EIGAS83b";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"COMP-LEM";PO
+"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"MICR-POU";PO
+"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-MED";PO
+"ERAG1994";"D1";"CLAS";"Diffuse près du fond (Chinchard + POUTASSOU + divers )";26;"TRAC-TRU";PO
+"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"ERAG1994";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"JUVAGA2003";"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"COMP-LEM";PO
+"JUVAGA2003";"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"ENGR-ENC";PO
+"JUVAGA2003";"D1";"CLAS";"(JUV03) agrégats ou bancs à proximité immédiate du fond (<10 m d'altitude)";37;"TRAC-TRU";PO
+"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"CLUP-HAR";PO
+"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"ENGR-ENC";PO
+"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SARD-PIL";PO
+"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SCOM-SCO";PO
+"JUVAGA2003";"D2";"CLAS";"(JUV03) bancs bien formés de pleine eau";38;"SPRA-SPR";PO
+"JUVAGA2003";"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"ENGR-ENC";PO
+"JUVAGA2003";"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"SARD-PIL";PO
+"JUVAGA2003";"D3";"SURF";"(JUV03) agrégats à proximité de la surface (<35 m de profondeur)";39;"SCOM-SCO";PO
+"JUVAGA2003";"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"ENGR-ENC";PO
+"JUVAGA2003";"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"SARD-PIL";PO
+"JUVAGA2003";"D4";"SURF";"(JUV03) bancs bien formés à proximité de la surface (<35 m de profondeur)";40;"SCOM-SCO";PO
+"JUVAGA2003";"D5";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"JUVAGA2003";"D5";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM";PO
+"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU";PO
+"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED";PO
+"JUVAGA2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU";PO
+"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"JUVAGA2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"ENGR-ENC";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"KATS-PEL";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SARD-PIL";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SCOM-JAP";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"SCOM-SCO";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"THYN-ALA";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"TRAC-MED";PO
+"JUVAGA2005";"D3";"SURF";"(JUV05) Détection en surface dont Juvenile d'anchois - diffuse et continue";31;"TRAC-TRU";PO
+"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"ENGR-ENC";PO
+"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SARD-PIL";PO
+"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-JAP";PO
+"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-SCO";PO
+"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SPRA-SPR";PO
+"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-MED";PO
+"JUVAGA2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-TRU";PO
+"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"ENGR-ENC";PO
+"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SARD-PIL";PO
+"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SCOM-JAP";PO
+"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SCOM-SCO";PO
+"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"SPRA-SPR";PO
+"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"TRAC-MED";PO
+"JUVAGA2005";"D6";"CLAS";"(JUV05) catégorie non classifiable";33;"TRAC-TRU";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"ENGR-ENC";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"KATS-PEL";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SARD-PIL";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SCOM-JAP";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"SCOM-SCO";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"THYN-ALA";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"TRAC-MED";PO
+"JUVAGA2005";"D7";"SURF";"(JUV05) poisson clairsemé en surface";34;"TRAC-TRU";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"ENGR-ENC";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"KATS-PEL";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SARD-PIL";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SCOM-JAP";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"SCOM-SCO";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"THYN-ALA";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"TRAC-MED";PO
+"JUVAGA2005";"D9";"CLAS";"(JUV05) poisson clairsemé sur toute la tranche d'eau";36;"TRAC-TRU";PO
+"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM";PO
+"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED";PO
+"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC";PO
+"PEGASE1997";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU";PO
+"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"PEGASE1997";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"PEGASE1997";"D3";"CLAS";"Détection accores et large (merlan bleu et petit anchois PEGASE 97)";25;"ENGR-ENC";PO
+"PEGASE1997";"D3";"CLAS";"Détection accores et large (merlan bleu et petit anchois PEGASE 97)";25;"MICR-POU";PO
+"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM";PO
+"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED";PO
+"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC";PO
+"PEGASE1998";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU";PO
+"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"PEGASE1998";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"PEGASE1998";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE";PO
+"PEGASE1998";"D3";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU";PO
+"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM";PO
+"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED";PO
+"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC";PO
+"PELGAS2000";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU";PO
+"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2000";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2000";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2000";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"ENGR-ENC";PO
+"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SARD-PIL";PO
+"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-JAP";PO
+"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-SCO";PO
+"PELGAS2000";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SPRA-SPR";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED";PO
+"PELGAS2000";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU";PO
+"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"COMP-LEM";PO
+"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-MED";PO
+"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-PIC";PO
+"PELGAS2001";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers)";12;"TRAC-TRU";PO
+"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2001";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2001";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC";PO
+"PELGAS2001";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL";PO
+"PELGAS2001";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR";PO
+"PELGAS2001";"D5";"CLAS";"Grands fléchards";14;"TRAC-TRU";PO
+"PELGAS2002";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"COMP-LEM";PO
+"PELGAS2002";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"TRAC-MED";PO
+"PELGAS2002";"D1";"CLAS";"Diffuse près du fond (Chinchard + divers) + bancs de chinchards";13;"TRAC-TRU";PO
+"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2002";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2002";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2002";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2002";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC";PO
+"PELGAS2002";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL";PO
+"PELGAS2002";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR";PO
+"PELGAS2002";"D5";"CLAS";"""Fau D2"" - CHINCHARD en banc classique, dense et très mobile";2;"TRAC-MED";PO
+"PELGAS2002";"D5";"CLAS";"""Fau D2"" - CHINCHARD en banc classique, dense et très mobile";2;"TRAC-TRU";PO
+"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM";PO
+"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU";PO
+"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED";PO
+"PELGAS2003";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU";PO
+"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2003";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2003";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2003";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2003";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"ENGR-ENC";PO
+"PELGAS2003";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SARD-PIL";PO
+"PELGAS2003";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SCOM-SCO";PO
+"PELGAS2003";"D5";"CLAS";"(Pel03) Gros Bancs très denses et très mobiles de CHINCHARD";20;"TRAC-TRU";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED";PO
+"PELGAS2003";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU";PO
+"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"COMP-LEM";PO
+"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"MICR-POU";PO
+"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"SCOM-JAP";PO
+"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"SCOM-SCO";PO
+"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"TRAC-MED";PO
+"PELGAS2004";"D1";"CLAS";"(PEL04) déviation de type D1 avec du maquereau en plus";22;"TRAC-TRU";PO
+"PELGAS2004";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"ENGR-ENC";PO
+"PELGAS2004";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SARD-PIL";PO
+"PELGAS2004";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SPRA-SPR";PO
+"PELGAS2004";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2004";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2004";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC";PO
+"PELGAS2004";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL";PO
+"PELGAS2004";"D4";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR";PO
+"PELGAS2004";"D5";"CLAS";"(Pel03) Gros Bancs très denses et très mobiles de CHINCHARD";20;"TRAC-TRU";PO
+"PELGAS2004";"D6";"CLAS";"(PEL04) Maquereau";23;"SCOM-JAP";PO
+"PELGAS2004";"D6";"CLAS";"(PEL04) Maquereau";23;"SCOM-SCO";PO
+"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM";PO
+"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU";PO
+"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED";PO
+"PELGAS2005";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU";PO
+"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2005";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2005";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2005";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"ENGR-ENC";PO
+"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SARD-PIL";PO
+"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-JAP";PO
+"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SCOM-SCO";PO
+"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"SPRA-SPR";PO
+"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-MED";PO
+"PELGAS2005";"D4";"SURF";"(Pel05) Bancs de surface (sardine, anchois, maquereau, sprat, chinchard)";29;"TRAC-TRU";PO
+"PELGAS2005";"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"ENGR-ENC";PO
+"PELGAS2005";"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"TRAC-MED";PO
+"PELGAS2005";"D6";"CLAS";"(Pel05) Chandelles (anchois, chinchard)";30;"TRAC-TRU";PO
+"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"COMP-LEM";PO
+"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"MICR-POU";PO
+"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-JAP";PO
+"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-SCO";PO
+"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-MED";PO
+"PELGAS2006";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-TRU";PO
+"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2006";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2006";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2006";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"ENGR-ENC";PO
+"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SARD-PIL";PO
+"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-JAP";PO
+"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-SCO";PO
+"PELGAS2006";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SPRA-SPR";PO
+"PELGAS2006";"D5";"CLAS";"(Pel03) Gros Bancs très denses et très mobiles de CHINCHARD";20;"TRAC-TRU";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"COMP-LEM";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"ENGR-ENC";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"MICR-POU";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SARD-PIL";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SCOM-JAP";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"SCOM-SCO";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"TRAC-MED";PO
+"PELGAS2006";"D6";"CLAS";"(Pel06) Melange de D1 et D2 non différenciable";44;"TRAC-TRU";PO
+"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"COMP-LEM";PO
+"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"MICR-POU";PO
+"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-MED";PO
+"PELGAS2007";"D1";"CLAS";"(Pel03) Diffuse près du fond (Chinchard + divers + POUTASSOU)";21;"TRAC-TRU";PO
+"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2007";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2007";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2007";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2007";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"ENGR-ENC";PO
+"PELGAS2007";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SARD-PIL";PO
+"PELGAS2007";"D4";"CLAS";"(Pel07) Bancs de surface (Sardine, anchois et maquereau)";50;"SCOM-SCO";PO
+"PELGAS2007";"D6";"CLAS";"(PEL07) bancs de sardine";47;"SARD-PIL";PO
+"PELGAS2007";"D7";"CLAS";"(Pel07) bancs de maquereau";48;"SCOM-SCO";PO
+"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"COMP-LEM";PO
+"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"MICR-POU";PO
+"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"SCOM-SCO";PO
+"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"TRAC-MED";PO
+"PELGAS2007";"D8";"CLAS";"(Pel07) Détection au fond - mélange chinchard et maquereau";49;"TRAC-TRU";PO
+"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"COMP-LEM";PO
+"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"MICR-POU";PO
+"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-JAP";PO
+"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"SCOM-SCO";PO
+"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-MED";PO
+"PELGAS2008";"D1";"CLAS";"(Pel06) diffuses et en petites boules près du fond (chinchard + maquereau + divers)";42;"TRAC-TRU";PO
+"PELGAS2008";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"ENGR-ENC";PO
+"PELGAS2008";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SARD-PIL";PO
+"PELGAS2008";"D2";"CLAS";"(PEL04) D2 classique sans le maquereau";24;"SPRA-SPR";PO
+"PELGAS2008";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2008";"D3";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"ENGR-ENC";PO
+"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SARD-PIL";PO
+"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-JAP";PO
+"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SCOM-SCO";PO
+"PELGAS2008";"D4";"SURF";"(Pel06) petits bancs denses sous surface (sardine, anchois, maquereau, sprat)";43;"SPRA-SPR";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED";PO
+"PELGAS2008";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU";PO
+"PELGAS2008";"D7";"CLAS";"(PEL08) D2 identifié sardine";51;"SARD-PIL";PO
+"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"ENGR-ENC";PO
+"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SARD-PIL";PO
+"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-JAP";PO
+"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SCOM-SCO";PO
+"PELGAS2009";"D1";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau )";7;"SPRA-SPR";PO
+"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"ENGR-ENC";PO
+"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SARD-PIL";PO
+"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-JAP";PO
+"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SCOM-SCO";PO
+"PELGAS2009";"D2";"CLAS";"Bancs classiques (Sardine, sprat, Anchois, Maquereau ) + grands fléchards";8;"SPRA-SPR";PO
+"PELGAS2009";"D4";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"CAPR-APE";PO
+"PELGAS2009";"D4";"CLAS";"Détection rupture pente accores (merlan bleu, myctophidés)";10;"MICR-POU";PO
+"PELGAS2009";"D5";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"CAPR-APE";PO
+"PELGAS2009";"D5";"CLAS";"Détection rupture pente accores et grands fonds (merlan bleu)";11;"MICR-POU";PO
+"PELGAS2009";"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"ENGR-ENC";PO
+"PELGAS2009";"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SARD-PIL";PO
+"PELGAS2009";"D6";"SURF";"Petits bancs denses en Surface (Sardine , anchois zone sud )";15;"SPRA-SPR";PO
+"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"COMP-LEM";PO
+"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"MERL-MER";PO
+"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"MERL-MNG";PO
+"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"SCOM-JAP";PO
+"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"SCOM-SCO";PO
+"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"TRAC-MED";PO
+"PELGAS2010";"D1";"CLAS";"Maquereaux, Chinchards et gadidés présents dans les couches à proximité du fond";60;"TRAC-TRU";PO
+"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"CLUP-HAR";PO
+"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"ENGR-ENC";PO
+"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"SARD-PIL";PO
+"PELGAS2010";"D2";"CLAS";"Bancs bien distincts: Anchois, Sardines Sprats et Harengs situés entre le fond et 50m au dessus du fond";61;"SPRA-SPR";PO
+"PELGAS2010";"D3";"CLAS";"Merlans bleus, myctophidés et capros présents au large";62;"CAPR-APE";PO
+"PELGAS2010";"D3";"CLAS";"Merlans bleus, myctophidés et capros présents au large";62;"MICR-POU";PO
+"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"ENGR-ENC";PO
+"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SARD-PIL";PO
+"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SCOM-JAP";PO
+"PELGAS2010";"D4";"SURF";"Sardines, Maquereaux, Anchois situés proche de la surface";63;"SCOM-SCO";PO
+"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"COMP-LEM";PO
+"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"MERL-MER";PO
+"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"MICR-POU";PO
+"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"TRAC-MED";PO
+"PELGAS2010";"D5";"CLAS";"Points bleus près du fond (Merlans leus, merlus et chinchards)";64;"TRAC-TRU";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"COMP-LEM";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"ENGR-ENC";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SARD-PIL";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-JAP";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SCOM-SCO";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"SPRA-SPR";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-MED";PO
+"PELGAS2010";"D6";"CLAS";"(Pel03) MELANGE - D1+D2 lorsque la structure ne permet pas de les distinguer";18;"TRAC-TRU";PO
+"PELGAS2010";"D7";"CLAS";"Banc d'Anchois purs";65;"ENGR-ENC";PO
+"PELGAS2010";"D8";"CLAS";"Banc de Sardines pur";66;"SARD-PIL";PO
\ No newline at end of file
1
0
Author: tchemit
Date: 2012-04-13 02:48:55 +0200 (Fri, 13 Apr 2012)
New Revision: 536
Url: http://forge.codelutin.com/repositories/revision/echobase/536
Log:
improve js
Modified:
trunk/src/site/resources/maven-site-forge.codelutin.com.js
Modified: trunk/src/site/resources/maven-site-forge.codelutin.com.js
===================================================================
--- trunk/src/site/resources/maven-site-forge.codelutin.com.js 2012-04-13 00:48:09 UTC (rev 535)
+++ trunk/src/site/resources/maven-site-forge.codelutin.com.js 2012-04-13 00:48:55 UTC (rev 536)
@@ -63,7 +63,7 @@
} else {
if (pathname == '/' + projectId + '/') {
// on / page
- path = 'install.html';
+ path = 'index.html';
} else {
path = pathname.substr(pathname.indexOf('/' + projectId)).
replace('/' + projectId + '/', '');
1
0