pyspc.core.location.Locations

class pyspc.core.location.Locations(name='locations')[source]

Bases : OrderedDict

Classe des collections de lieux Location

name

Nom de la collection

Type:

str

codes

Codes des lieux

Type:

list

__init__(name='locations')[source]

Initialiser l’instance de Locations

Paramètres:

name (str) – Nom de la collection

Methods

__init__([name])

Initialiser l'instance de Locations

add([loc, code, overwrite])

Ajouter un lieu hydrologique dans la collection

check_locs()

Contrôler si la série est une instance Location

clear()

copy()

from_Config([config])

Créer une instance Locations à partir d'un fichier de configuration ou d'une instance Config

fromkeys(iterable[, value])

Create a new ordered dictionary with keys from iterable and values set to value.

get(key[, default])

Return the value for key if key is in the dictionary, else default.

items()

Return a set-like object providing a view on the dict's items.

keys()

Return a set-like object providing a view on the dict's keys.

move_to_end(key[, last])

Move an existing element to the end (or beginning if last is false).

pop(key[,default])

If the key is not found, return the default if given; otherwise, raise a KeyError.

popitem([last])

Remove and return a (key, value) pair from the dictionary.

refresh_codes()

Rafraîchir la liste des codes

setdefault(key[, default])

Insert key with a value of default if key is not in the dictionary.

to_Config([filename])

Créer une instance Config à partir d'une instance Locations

update([E, ]**F)

If E is present and has a .keys() method, then does: for k in E.keys(): D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]

values()

Return an object providing a view on the dict's values.

Attributes

codes

Codes des lieux

name

Nom de la collection

add(loc=None, code=None, overwrite=False)[source]

Ajouter un lieu hydrologique dans la collection

Paramètres:
  • code (str) – Code du lieu

  • loc (Location) – Instance du lieu

  • overwrite (bool) – Écraser la donnée existante ? défaut: False

check_locs()[source]

Contrôler si la série est une instance Location

clear() None.  Remove all items from od.
property codes

Codes des lieux

copy() a shallow copy of od
classmethod from_Config(config=None)[source]

Créer une instance Locations à partir d’un fichier de configuration ou d’une instance Config

Paramètres:

config (str, Config) –

  • Nom du fichier de configuration

  • Instance pysoc.core.config.Config

classmethod fromkeys(iterable, value=None)

Create a new ordered dictionary with keys from iterable and values set to value.

get(key, default=None, /)

Return the value for key if key is in the dictionary, else default.

items()

Return a set-like object providing a view on the dict’s items.

keys()

Return a set-like object providing a view on the dict’s keys.

move_to_end(key, last=True)

Move an existing element to the end (or beginning if last is false).

Raise KeyError if the element does not exist.

property name

Nom de la collection

pop(key[, default]) v, remove specified key and return the corresponding value.

If the key is not found, return the default if given; otherwise, raise a KeyError.

popitem(last=True)

Remove and return a (key, value) pair from the dictionary.

Pairs are returned in LIFO order if last is true or FIFO order if false.

refresh_codes()[source]

Rafraîchir la liste des codes

setdefault(key, default=None)

Insert key with a value of default if key is not in the dictionary.

Return the value for key if key is in the dictionary, else default.

to_Config(filename=None)[source]

Créer une instance Config à partir d’une instance Locations

Paramètres:

filename (str) – Nom du fichier associé à la collection. Si non défini, le nom du fichier est défini à partir du nom de la collection

Renvoie:

Instance pyspc.core.config.Config

Type renvoyé:

Config

update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E is present and has a .keys() method, then does: for k in E.keys(): D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]

values()

Return an object providing a view on the dict’s values.