Schéma relationnel

• ComptageVelo(numeroBoucle(1), libelle, jour(NN), jourSemaine(NN), date(NN), vacance(NN), total(NN), 00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,probaPresenceAnomalie)

• Quartier(identifiant(1), commune(NN), quartier(NN), codeCommune(NN), geometrie)

• AmenagementCyclable(identifiant(1), geometrie, nom, commune(NN), longueur(NN), typeAmenagement(NN), doubleSens(NN), identifiant(NN)(UQ), poleGestionnaire(NN), quartier, geolocalisation)

• BoucleComptage(numero(1), libelle(NN), geolocalisation(NN))

FAUDRA QUON VOIT QUELS ATTRIBUTS ENLEVER CAR YEN A ILS SERVENT PAS

non, on laisse et on requête juste pas

pour attribut géométrie, faire longitude et latitude :

CREATE TYPE GEO_COORDINATE AS OBJECT (
	longitude NUMERIC(3,16),
	latitude NUMERIC(3,16)
);

Insertion :

INSERT INTO GeolocalisationCompteur (numero, libelle, observations, geolocalisation)
VALUES (1, 'Compteur 1', 'Observations du compteur 1', GEO_COORDINATE(-1.5606018691288568, 47.215489324621586));

Types de données pour les attributs :

pour ComptageVelo