Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1698 → Rev 1699

/trunk/jrest/lib/FormateurGroupeColonne.php
50,6 → 50,7
'commentaire' => self::GenColInfo('commentaire', 'Notes'),
'latitude' => self::GenColInfo('latitude', 'Latitude', 1),
'longitude' => self::GenColInfo('longitude', 'Longitude', 1),
'altitude' => self::GenColInfo('altitude', 'Altitude', 1),
'geodatum' => self::GenColInfo('geodatum', 'Référentiel Géographique', 1, NULL, NULL, FALSE),
);
}
/trunk/jrest/services/ImportXLS.php
101,6 → 101,7
"date_transmission",
"latitude",
"longitude",
"altitude",
"abondance",
"certitude",
"phenologie",
494,6 → 495,7
// $ligne: uniquement pour les infos en cas de gestion d'erreurs (lon/lat incompréhensible)
"latitude" => self::traiterLonLat(NULL, $ligne[C_LATITUDE], $referentiel, $ligne),
"longitude" => self::traiterLonLat($ligne[C_LONGITUDE], NULL, $referentiel, $ligne),
"altitude" => intval($ligne[C_ALTITUDE]),
 
// @ car potentiellement optionnelles ou toutes vides => pas d'index dans PHPExcel (tableau optimisé)
"abondance" => @$ligne[C_ABONDANCE],