-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
20,594 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
1, | ||
'Cultures' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
2, | ||
'Dunes, plages' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
3, | ||
'Eaux douces intérieures (étangs, lacs, lagunes, mares, rivières, …)' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
4, | ||
'Eaux marines (mer, estuaire, marais salants, prés salés, …)' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
5, | ||
'Forêts et zones de plantations d’arbres (vergers, vignes)' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
6, | ||
'Falaises, éboulis, rochers' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
7, | ||
'Landes, broussailles, maquis, pelouses sèches, prairies' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
8, | ||
'Marais, tourbières, prairies humides' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
9, | ||
'Autres terres (incluant les zones urbanisées et industrielles, routes, décharges, mines)' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
10, | ||
'Colline' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
11, | ||
'Lette' | ||
); | ||
|
||
INSERT INTO COMPOSITIONS | ||
( | ||
ID_compo, | ||
nom_compo | ||
) | ||
VALUES | ||
( | ||
12, | ||
'Ile marine' | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
INSERT INTO ESPECES | ||
( | ||
ID_espece, | ||
cate_espece | ||
) | ||
VALUES | ||
( | ||
1, | ||
'Plantes' | ||
); | ||
|
||
INSERT INTO ESPECES | ||
( | ||
ID_espece, | ||
cate_espece | ||
) | ||
VALUES | ||
( | ||
2, | ||
'Amphibiens et reptiles' | ||
); | ||
|
||
INSERT INTO ESPECES | ||
( | ||
ID_espece, | ||
cate_espece | ||
) | ||
VALUES | ||
( | ||
3, | ||
'Invertébrés' | ||
); | ||
|
||
INSERT INTO ESPECES | ||
( | ||
ID_espece, | ||
cate_espece | ||
) | ||
VALUES | ||
( | ||
4, | ||
'Mammifères' | ||
); | ||
|
||
INSERT INTO ESPECES | ||
( | ||
ID_espece, | ||
cate_espece | ||
) | ||
VALUES | ||
( | ||
5, | ||
'Oiseaux' | ||
); | ||
|
||
INSERT INTO ESPECES | ||
( | ||
ID_espece, | ||
cate_espece | ||
) | ||
VALUES | ||
( | ||
6, | ||
'Poissons' | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
1, | ||
'Broussailles, pelouses, prairies, landes' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
2, | ||
'Dunes, plages' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
3, | ||
'Eaux douces (étangs, lacs, lagunes, mares, rivières, …)' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
4, | ||
'Eaux marines (océans, mers, estuaires)' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
5, | ||
'Falaises, éboulis, rochers' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
6, | ||
'Forêts' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
7, | ||
'Iles, îlots' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
8, | ||
'Terres agricoles (cultures, vergers, bosquets, bocages, …)' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
9, | ||
'Terres artificialisées (parcs urbains, jardins, villes, sites industriels, jachères, …)' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
10, | ||
'Zones humides (lagunes, marais, prés salés, tourbières, vasières, …)' | ||
); | ||
|
||
INSERT INTO HABITATS | ||
( | ||
ID_habitat, | ||
nom_habitat | ||
) | ||
VALUES | ||
( | ||
11, | ||
'Lette' | ||
); |
Oops, something went wrong.