palangre_syc package#
Subpackages#
Submodules#
palangre_syc.admin module#
palangre_syc.api module#
- palangre_syc.api.trip_for_prog_vessel(token, url_base, vessel_id, programme_topiaid)[source]#
Pour un navire et un programme donnée, renvoie le topiaid du dernier trip saisi
- Parameters:
token
url_base – ‘https://observe.ob7.ird.fr/observeweb/api/public’
vessel_id – topiaid du navire (avec les ‘-‘)
programme_topiaid – topiaid du programme choisi (avec les ‘-‘)
- Returns:
trip topiaid
- palangre_syc.api.update_trip(token, data, url_base, topiaid)[source]#
Fonction qui met à jour un trip dans la base de données, donc supprime le trip existant pour insérer le nouveau data_json sous le même topiaid
- Parameters:
token (str) – token
data (json) – json file qu’on envoie dans la base
url_base (str) – ‘https://observe.ob7.ird.fr/observeweb/api/public’ base de connexion à l’api
update (topiaid du trip que l'on veut)
Returns:
palangre_syc.apps module#
palangre_syc.excel_extractions module#
Module de fonctions qui permettent l’extraction des données de logbook palangre selon le format utilisé par les Seychelles
- palangre_syc.excel_extractions.extract_bait(df_donnees)[source]#
Extraction des cases relatives au type d’appât utilisé
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_bycatch_p2(df_donnees)[source]#
Extraction des cases relatives à ce qui a été pêché mais accessoires
- Parameters:
df_donnees (df) – excel p2
- Returns:
df
- palangre_syc.excel_extractions.extract_cruise_info(df_donnees)[source]#
Extraction des cases ‘Cruise Information’
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_fish_p1(df_donnees)[source]#
Extraction des cases relatives à ce qui a été pêché
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_fishing_effort(df_donnees)[source]#
Extraction des cases relatives aux efforts de pêche
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_gear_info(df_donnees)[source]#
Extraction des cases ‘Gear’
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_line_material(df_donnees)[source]#
Extraction des cases ‘Gear’
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_logbook_date(df_donnees)[source]#
Extraction des cases relatives au mois et à l’année du logbook
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_positions(df_donnees)[source]#
Extraction des cases relatives aux données de position
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_report_info(df_donnees)[source]#
Extraction des cases ‘Report Information’
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_target_species(df_donnees)[source]#
Extraction des cases ‘Target species’
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_temperature(df_donnees)[source]#
Extraction des cases relatives aux températures
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.extract_time(df_donnees, allData)[source]#
Extraction des cases relatives aux horaires des coups de pêche
- Parameters:
df_donnees (df) – excel p1
- Returns:
type horaire, sauf si le bateau est en mouvement
- Return type:
df
- palangre_syc.excel_extractions.extract_vessel_info(df_donnees)[source]#
Extraction des cases ‘Vessel Information’
- Parameters:
df_donnees (df) – excel p1
- Returns:
df
- palangre_syc.excel_extractions.get_vessel_activity_topiaid(startTimeStamp, allData)[source]#
Fonction qui prend en argument une heure de depart et qui donne un topiaID de VesselActivity en fonction du type et du contenu de l’entrée
- Parameters:
startTimeStamp (date) – information horaire - si type date alors Fishing operation, sinon on regarde le texte dans la cellule
allData (json) – données de références
- Returns:
topiaID de l’activité détectée
palangre_syc.extract_excel_tests module#
palangre_syc.json_construction module#
Module de fonctions qui permettent la construction du json palangre, tel qu’il est envoyé à Observe
- palangre_syc.json_construction.construction_catch_table(fish_file)[source]#
- Parameters:
fish_file (dataframe) – Issu des fonction d’extraction propre à chaque espèce ou groupe d’espèce
- Returns:
Construction d’un df avec chaque code FAO et le catchfate associée en lignes
- Return type:
dataframe
- palangre_syc.json_construction.create_activity_and_set(df_donnees_p1, df_donnees_p2, allData, start_extraction, end_extraction, context)[source]#
Fonction qui créé les activités et les set selon le format json attendu dans la base de données Observe
- Parameters:
df_donnees_p1 (dataframe) – page 1 du logbook excel
df_donnees_p2 (dataframe) – page 2 du logbook excel
allData (json) – Données de références
start_extraction (int) – numéro qui indique la ligne du logbook à partir de laquelle on commence à remplir le json (0 si on commence au 1er jour, 5 si la marée commence au 6 du mois)
end_extraction (int) – numéro qui indique la ligne du logbook à laquelle on arrête de remplir le json (len(excel_p1) si on considère le logbook entier, 15 si la marée s’arrête au 16 du mois)
- Returns:
des activités et set pour la période et le logbook soumis par l’utilisateur
- Return type:
json
- palangre_syc.json_construction.create_bait_composition(bait_datatable, allData)[source]#
Fonction de construction du json pour les BaitComposition
- Parameters:
bait_datatable (datatable) – datatable non vide ‘Baits’ construite in views.py
allData (json) – Données de références
- Returns:
le json rempli à partir des infos de mon logbook
- Return type:
_type_
- palangre_syc.json_construction.create_branchline_composition(df_gear)[source]#
Fonction de construction du json pour les branchlineComposition
- Parameters:
df_donnees_p1 (dataframe) – page 1 du doc excel
- Returns:
le json rempli à partir des infos de mon logbook
- Return type:
_type_
- palangre_syc.json_construction.create_catch_table_fish_perday(fish_file, row_number)[source]#
- Parameters:
fish_file (datatable) – issu des extraction, donc un datatable par groupe d’espèce
row_number (int) – ligne (ou un jour de pêche) à extraire
- Returns:
par type de poisson pêché et par jour de pêche de 4 colonnes
- Return type:
dataframe
Ce dataframe contient les champs obligatoires à remplir dans la table ‘catch’ de Observe
- palangre_syc.json_construction.create_catch_table_fishes(df_donnees_p1, df_donnees_p2, row_number)[source]#
- Parameters:
df_donnees_p1 (dataframe) – page 1 du doc excel
df_donnees_p2 (dataframe) – page 2 du doc excel
row_number (int) – ligne ou jour du set
- Returns:
avec les prises réalisées pour une journée de pêche (code FAO, catchFate, nombre de prise et Poids tot)
- Return type:
dataframe
- palangre_syc.json_construction.create_catches(datatable, allData)[source]#
Fonction de construction du json pour les catches
- Parameters:
datatable (datatable) – datatable créé pour une journée / un set
allData (json) – Données de références
- Returns:
le json rempli à partir des infos de mon logbook
- Return type:
_type_
- palangre_syc.json_construction.create_floatline_composition(df_gear, df_line)[source]#
Fonction de construction du json pour les FloatlineComposition
- Parameters:
df_donnees_p1 (dataframe) – page 1 du doc excel
- Returns:
le json rempli à partir des infos de mon logbook
- Return type:
_type_
- palangre_syc.json_construction.create_lineType(logbook_lineType)[source]#
Fonction de recherche de la line type dans le référentiel
- Parameters:
logbook_lineType – l’élement coché du logbook (e.g. “braided nylon”)
- Returns:
le topiaId de la ligne
- Return type:
lineType
- palangre_syc.json_construction.create_starttimestamp(df_donnees_p1, allData, index_day, need_hour=<class 'bool'>)[source]#
Fonction qui permet d’avoir le bon format de date-time pour envoyer le json
- Parameters:
df_donnees_p1 (_type_) – ma page excel 1
allData (json) – Données de références
index_day (int) – le numero de la ligne de mon datatable
need_hour (bool) – si true - on va chercher l’heure correspondante dans le datatable,
'00 (si false - on ajoute) – 00:00’ cad que le bateau n’est pas en train de pêcher donc il nous faut une horaire juste pour convenir au format demandé
- Returns:
la datetime au format qui permet l’insersion dans la bdd
- Return type:
_type_
- palangre_syc.json_construction.create_starttimestamp_from_field_date(date)[source]#
Fonction qui permet d’avoir le bon format de date-time pour envoyer le json
- Parameters:
date – issue du input
- Returns:
pour stratDate et endDAte
- Return type:
datetime
- palangre_syc.json_construction.create_trip(df_donnees_p1, MultipleActivity, allData, context)[source]#
Fonction qui créé un trip selon le format json attendu dans la base de données Observe (avec éventuellement les information d’un précédent trip si l’utilisateur update un trip existant)
- Parameters:
df_donnees_p1 (dataframe) – page 1 du logbook excel
MultipleActivity (json) – Inofrmations de sortie de la fonction “create_activity_and_set(df_donnees_p1, df_donnees_p2, allData, start_extraction, end_extraction)”
allData (json) – Données de références
context (dict) – infrormation concernant startDate, endDate, depPort, endPort saisies par l’utilisateur, mais aussi les information du trip à modifier / continuer si l’utilisateur choisi de continuer un trip existant
- Returns:
trip
- Return type:
json
- palangre_syc.json_construction.get_baittype_topiaid(row, allData)[source]#
Fonction qui propose le topiaId de l’appat coché dans le logbook
- Parameters:
row (dataframe) – nom de l’appât
allData (json) – Données de références
- Returns:
topiaID de l’appât utilisé
- Return type:
str
- palangre_syc.json_construction.get_captain_topiaid(df_donnees_p1, allData)[source]#
Fonction qui propose le topiaID associé au capitaine du logbook (ou inconnu is non présent dans les données de référence)
- Parameters:
df_donnees_p1 (dataframe) – page 1 du doc excel
allData (json) – Données de références
- Returns:
topiaID du capitaine présenté dans le logbook
- Return type:
_type_
- palangre_syc.json_construction.get_catchfate_topiaid(catchfate_logbook, allData)[source]#
Fonction qui propose le topiaId du devenir de l’espèce (associé manuellement à l’espèce dans la trascription du excel)
- Parameters:
catchFate_logbook (str) – Code catchFate (3 caractères) extrait du datatable de prises créé depuis la page 1 et 2
allData (json) – Données de références
- Returns:
topiaID du devenir de l’espèce demandée
- Return type:
str
- palangre_syc.json_construction.get_operator_topiaid(df_donnees_p1, allData)[source]#
Fonction qui propose le topiaID de la personne qui a saisi les données du logbook (ou inconnu is non présent dans les données de référence)
- Parameters:
df_donnees_p1 (dataframe) – page 1 du doc excel
allData (json) – Données de références
- Returns:
topiaID de l’opérateur
- Return type:
_type_
- palangre_syc.json_construction.get_processing_topiaid(fao_code, allData)[source]#
Fonction qui associe un process on board à une espèce de poisson
- Parameters:
fao_code (str) – espèce de poisson
allData (json) – Données de références
- Returns:
OnBoardProcess
- Return type:
topiaid
- palangre_syc.json_construction.get_species_topiaid(fao_code_logbook, allData)[source]#
Fonction qui propose le topiaId pour une espèce à partir de son code FAO (saisi manuellement dans la trascription du excel)
- Parameters:
FAO_code_logbook (_type_) – Code FAO (3 caractères) extrait du datatable de prises créé depuis la page 1 et 2
allData (json) – Données de références
- Returns:
topiaID de l’espèce demandée
- Return type:
str
- palangre_syc.json_construction.get_target_species_topiaid(df_donnees_p1, allData)[source]#
Fonction qui va récupérer les topiaid de chacune des espèces visées dans une liste
- Parameters:
df_donnees_p1 (dataframe) – page 1 du doc excel
allData (json) – Données de références
- Returns:
list de topiaid
- palangre_syc.json_construction.get_vessel_topiaid(df_donnees_p1, allData)[source]#
Fonction qui propose le topiaId du navire cité dans le logbook à partir de son ‘nationlId’ s’il existe
- Parameters:
df_donnees_p1 (dataframe) – page 1 du doc excel
allData (json) – Données de références
- Returns:
topiaID du navire (vessel)
- Return type:
_type_
- palangre_syc.json_construction.search_date_into_json(json_previoustrip, date_to_look_for)[source]#
Fonction qui cherche une date est présente dans un précédent trip (json file)
- Parameters:
json_previoustrip (json) – du précédent trip qu’on veut continuer
date_to_look_for (date) – aaaa-mm-jj
- Returns:
True si la date est dans le json, False sinon
- Return type:
bool
palangre_syc.models module#
- class palangre_syc.models.common_baitsettingstatus(common_baitsettingstatus_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_baitsettingstatus_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_baittype(common_baittype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_baittype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_catchfate(common_catchfate_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, observation, logbook, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_catchfate_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- logbook#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_country(common_country_id, topiaid, needcomment, code, iso3code, lastupdatedate, topiacreatedate, iso2code, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_country_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- iso2code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- iso3code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_dataquality(common_dataquality_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_dataquality_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_fpazone(common_fpazone_id, topiaid, needcomment, country, code, lastupdatedate, topiacreatedate, homeid, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_fpazone_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- country#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- homeid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_gear(common_gear_id, topiaid, needcomment, code, allowedgearcharacteristic, lastupdatedate, topiacreatedate, defaultgearcharacteristic, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- allowedgearcharacteristic#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_gear_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- defaultgearcharacteristic#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_gearcharacteristic(common_gearcharacteristic_id, topiaid, needcomment, gearcharacteristictype, unit, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_gearcharacteristic_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- gearcharacteristictype#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- unit#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_gearcharacteristiclistitem(common_gearcharacteristiclistitem_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, gearcharacteristic, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_gearcharacteristiclistitem_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- gearcharacteristic#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_gearcharacteristictype(common_gearcharacteristictype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_gearcharacteristictype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_harbour(common_harbour_id, country, code, lastupdatedate, topiacreatedate, locode, latitude, label1, label2, label3, topiaid, needcomment, status, longitude)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_harbour_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- country#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- latitude#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- locode#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- longitude#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_healthstatus(common_healthstatus_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_healthstatus_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_hooksize(common_hooksize_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_hooksize_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_hooktype(common_hooktype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_hooktype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_lengthweightparameter(common_lengthweightparameter_id, weightlengthformula, code, lastupdatedate, topiacreatedate, sex, meanweight, source, startdate, topiaid, needcomment, sizemeasuretype, ocean, species, lengthweightformula, coefficients, meanlength, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- coefficients#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_lengthweightparameter_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lengthweightformula#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- meanlength#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- meanweight#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- ocean#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- sex#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- sizemeasuretype#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- source#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- species#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- startdate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- weightlengthformula#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_lightstickscolor(common_lightstickscolor_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_lightstickscolor_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_lightstickstype(common_lightstickstype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_lightstickstype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_linetype(common_linetype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_linetype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_mitigationtype(common_mitigationtype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_mitigationtype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_observationmethod(common_observationmethod_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_observationmethod_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_ocean(common_ocean_id, southwestallowed, code, lastupdatedate, topiacreatedate, northeastallowed, southeastallowed, label1, label2, northwestallowed, label3, topiaid, needcomment, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_ocean_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- northeastallowed#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- northwestallowed#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- southeastallowed#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- southwestallowed#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_onboardprocessing(common_onboardprocessing_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_onboardprocessing_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_organism(common_organism_id, topiaid, needcomment, country, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_organism_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- country#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_person(common_person_id, country, firstname, code, lastupdatedate, topiacreatedate, captain, lastname, topiaid, needcomment, observer, datasource, pssampler, dataentryoperator, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- captain#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_person_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- country#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- dataentryoperator#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- datasource#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- firstname#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastname#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observer#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- pssampler#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_program(common_program_id, code, organism, lastupdatedate, topiacreatedate, observation, logbook, startdate, label1, label2, label3, topiaid, needcomment, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_program_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- logbook#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- organism#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- startdate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_settingshape(common_settingshape_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_settingshape_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_sex(common_sex_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_sex_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_shipowner(common_shipowner_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_shipowner_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_sizemeasuremethod(common_sizemeasuremethod_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_sizemeasuremethod_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_sizemeasuretype(common_sizemeasuretype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_sizemeasuretype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_species(common_species_id, minlength, code, lastupdatedate, maxlength, topiacreatedate, weightmeasuretype, label1, faocode, maxweight, label2, label3, topiaid, needcomment, sizemeasuretype, ocean, minweight, scientificlabel, speciesgroup, homeid, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_species_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- faocode#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- homeid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- maxlength#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- maxweight#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- minlength#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- minweight#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- ocean#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- scientificlabel#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- sizemeasuretype#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- speciesgroup#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- weightmeasuretype#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_speciesgroup(common_speciesgroup_id, topiaid, needcomment, code, speciesgroupreleasemode, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_speciesgroup_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- speciesgroupreleasemode#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_speciesgroupreleasemode(common_speciesgroupreleasemode_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_speciesgroupreleasemode_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_specieslist(common_specieslist_id, topiaid, needcomment, code, species, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_specieslist_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- species#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_triptype(common_triptype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_triptype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_vessel(common_vessel_id, code, keelcode, lastupdatedate, topiacreatedate, length, vesselsizecategory, label1, shipowner, label2, label3, capacity, topiaid, needcomment, yearservice, flagcountry, fleetcountry, powercv, comment, vesseltype, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- capacity#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- comment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_vessel_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- flagcountry#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- fleetcountry#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- keelcode#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- length#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- powercv#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- shipowner#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- vesselsizecategory#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- vesseltype#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- yearservice#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_vesselactivity(common_vesselactivity_id, code, lastupdatedate, topiacreatedate, observation, logbook, allowset, label1, label2, label3, topiaid, needcomment, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- allowset#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_vesselactivity_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- logbook#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_vesselsizecategory(common_vesselsizecategory_id, topiaid, needcomment, code, gaugelabel, lastupdatedate, topiacreatedate, capacitylabel, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- capacitylabel#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_vesselsizecategory_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- gaugelabel#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_vesseltype(common_vesseltype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_vesseltype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_weightmeasuremethod(common_weightmeasuremethod_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_weightmeasuremethod_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_weightmeasuretype(common_weightmeasuretype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_weightmeasuretype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.common_wind(common_wind_id, code, lastupdatedate, topiacreatedate, maxspeed, label1, label2, minswellheight, label3, topiaid, needcomment, maxswellheight, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- common_wind_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- maxspeed#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- maxswellheight#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- minswellheight#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.landing_company(landing_company_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, homeid, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- homeid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- landing_company_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.landing_conservation(landing_conservation_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- landing_conservation_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.landing_datasource(landing_datasource_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- landing_datasource_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_baithaulingstatus(observation_baithaulingstatus_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_baithaulingstatus_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_encountertype(observation_encountertype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_encountertype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_hookposition(observation_hookposition_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_hookposition_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_itemhorizontalposition(observation_itemhorizontalposition_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_itemhorizontalposition_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_itemverticalposition(observation_itemverticalposition_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_itemverticalposition_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_maturitystatus(observation_maturitystatus_id, topiaid, uppervalue, needcomment, code, lastupdatedate, topiacreatedate, label1, lowervalue, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lowervalue#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_maturitystatus_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- uppervalue#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_sensorbrand(observation_sensorbrand_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, brandname, status)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- brandname#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_sensorbrand_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_sensordataformat(observation_sensordataformat_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_sensordataformat_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_sensortype(observation_sensortype_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_sensortype_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class palangre_syc.models.observation_stomachfullness(observation_stomachfullness_id, topiaid, needcomment, code, lastupdatedate, topiacreatedate, label1, label2, status, label3)[source]#
Bases:
Model- exception DoesNotExist#
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned#
Bases:
MultipleObjectsReturned
- code#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label1#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label2#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- label3#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- lastupdatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- needcomment#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- objects = <django.db.models.manager.Manager object>#
- observation_stomachfullness_id#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- status#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiacreatedate#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- topiaid#
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
palangre_syc.tests_json module#
palangre_syc.urls module#
palangre_syc.views module#
- palangre_syc.views.checking_logbook(request)[source]#
Fonction qui 1) affiche les données extraites du logbook soumis 2) vérifie et valide les données saisies par l’utilisateur
- Parameters:
request
- Returns:
on retourne la meme page avec un message d’erreur adapté Si non : on envoie le logbook
- Return type:
Si les données soumises ne sont pas cohérentes
- palangre_syc.views.get_previous_trip_infos(request, token, df_donnees_p1, allData)[source]#
Fonction qui va faire appel au WS pour : 1) trouver l’id du trip le plus récent pour un vessel et un programme donné et 2) trouver les informations rattachées à ce trip
- Parameters:
request (_type_) – _description_
df_donnees_p1 (_type_) – _description_
- Returns:
startDate, endDate, captain
- Return type:
dictionnaire