-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdataspecification_ge.adoc
14730 lines (11182 loc) · 529 KB
/
dataspecification_ge.adoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Admonition icons:
// TG Requirement
:important-caption: 📕
// TG Recommendation
:tip-caption: 📒
// Conformance class
:note-caption: 📘
// TOC placement using macro (manual)
:toc: macro
// Empty TOC title (the title is in the document)
:toc-title:
// TOC level depth
:toclevels: 3
// Section numbering level depth
:sectnumlevels: 8
// Line Break Doc Title
:hardbreaks-option:
:appendix-caption: Annex
// Document properties
:title: D2.8.II.4 Data Specification on Geology – Technical Guidelines
:revdate: 2024-07-31
:keywords: INSPIRE Data Specification for the spatial data theme Geology
:producer: INSPIRE Maintenance and Implementation Group (MIG)
:description: This document describes the INSPIRE Data Specification for the spatial data theme Geology
:author: Temporary MIWP 2021-2024 sub-group 2.3.1
:copyright: Public
:revremark: https://github.com/INSPIRE-MIF/technical-guidelines/releases/tag/v2024.2
:lang: en
image::./media/image2.jpeg[image,width=131,height=90, align=center]
image:./media/image3.png[image,width=93,height=93, align=center] **INSPIRE** *Infrastructure for Spatial Information in Europe*
[discrete]
= D2.8.II.4 Data Specification on _Geology_ – Technical Guidelines
[width="100%",cols="17%,83%",]
|===
|*Title* |{doctitle}
|*Creator* |{author}
|*Date of publication* |{revdate}
|*Subject* |{keywords}
|*Publisher* |{producer}
|*Type* |Text
|*Description* |{description}
|*Format* |AsciiDoc
|*Licence* |https://creativecommons.org/licenses/by/4.0[Creative Commons Attribution (cc-by) 4.0]
|*Rights* |{copyright}
|*Identifier* |https://inspire.ec.europa.eu/id/document/tg/ge[D2.8.II.4_v3.3.0]
|*Changelog* |{revremark}
|*Language* |{lang}
|*Relation* |Directive 2007/2/EC of the European Parliament and of the Council of 14 March 2007 establishing an Infrastructure for Spatial Information in the European Community (INSPIRE)
|===
<<<
[discrete]
== Foreword
[discrete]
== How to read the document?
This document describes the _"INSPIRE data specification on Geology – Technical Guidelines"_ version 3.0 as developed by the Thematic Working Group (TWG) _Geology_ using both natural and a conceptual schema language.
The data specification is based on a common templatefootnote:[The common document template is available in the "Framework documents" section of the data specifications web page at http://inspire.jrc.ec.europa.eu/index.cfm/pageid/2] used for all data specifications, which has been harmonised using the experience from the development of the Annex I, II and III data specifications.
This document provides guidelines for the implementation of the provisions laid down in the Implementing Rule for spatial data sets and services of the INSPIRE Directive. It also includes additional requirements and recommendations that, although not included in the Implementing Rule, are relevant to guarantee or to increase data interoperability.
Two executive summaries provide a quick overview of the INSPIRE data specification process in general, and the content of the data specification on _Geology_ in particular. We highly recommend that managers, decision makers, and all those new to the INSPIRE process and/or information modelling should read these executive summaries first.
The UML diagrams (in Chapter 5) offer a rapid way to see the main elements of the specifications and their relationships. The definition of the spatial object types, attributes, and relationships are included in the Feature Catalogue (also in Chapter 5). People having thematic expertise but not familiar with UML can fully understand the content of the data model focusing on the Feature Catalogue. Users might also find the Feature Catalogue especially useful to check if it contains the data necessary for the applications that they run. The technical details are expected to be of prime interest to those organisations that are responsible for implementing INSPIRE within the field of _Geology_, but also to other stakeholders and users of the spatial data infrastructure.
The technical provisions and the underlying concepts are often illustrated by examples. Smaller examples are within the text of the specification, while longer explanatory examples and descriptions of selected use cases are attached in the annexes.
In order to distinguish the INSPIRE spatial data themes from the spatial object types, the INSPIRE spatial data themes are written in _italics._
|===
|The document will be publicly available as a 'non-paper'. It does not represent an official position of the European Commission, and as such cannot be invoked in the context of legal procedures.
|===
*Legal Notice*
Neither the European Commission nor any person acting on behalf of the Commission is responsible for the use which might be made of this publication.
<<<
[discrete]
== Interoperability of Spatial Data Sets and Services – General Executive Summary
The challenges regarding the lack of availability, quality, organisation, accessibility, and sharing of spatial information are common to a large number of policies and activities and are experienced across the various levels of public authority in Europe. In order to solve these problems it is necessary to take measures of coordination between the users and providers of spatial information. The Directive 2007/2/EC of the European Parliament and of the Council adopted on 14 March 2007 aims at establishing an Infrastructure for Spatial Information in the European Community (INSPIRE) for environmental policies, or policies and activities that have an impact on the environment.
INSPIRE is based on the infrastructures for spatial information that are created and maintained by the Member States. To support the establishment of a European infrastructure, Implementing Rules addressing the following components of the infrastructure have been specified: metadata, interoperability of spatial data sets (as described in Annexes I, II, III of the Directive) and spatial data services, network services, data and service sharing, and monitoring and reporting procedures.
INSPIRE does not require collection of new data. However, after the period specified in the Directivefootnote:[For all 34 Annex I,II and III data themes: within two years of the adoption of the corresponding Implementing Rules for newly collected and extensively restructured data and within 5 years for other data in electronic format still in use] Member States have to make their data available according to the Implementing Rules.
Interoperability in INSPIRE means the possibility to combine spatial data and services from different sources across the European Community in a consistent way without involving specific efforts of humans or machines. It is important to note that "interoperability" is understood as providing access to spatial data sets through network services, typically via Internet. Interoperability may be achieved by either changing (harmonising) and storing existing data sets or transforming them via services for publication in the INSPIRE infrastructure. It is expected that users will spend less time and efforts on understanding and integrating data when they build their applications based on data delivered in accordance with INSPIRE.
In order to benefit from the endeavours of international standardisation bodies and organisations established under international law their standards and technical means have been utilised and referenced, whenever possible.
To facilitate the implementation of INSPIRE, it is important that all stakeholders have the opportunity to participate in specification and development. For this reason, the Commission has put in place a consensus building process involving data users, and providers together with representatives of industry, research and government. These stakeholders, organised through Spatial Data Interest Communities (SDIC) and Legally Mandated Organisations (LMO)footnote:[The current status of registered SDICs/LMOs is available via INSPIRE website: http://inspire.jrc.ec.europa.eu/index.cfm/pageid/42], have provided reference materials, participated in the user requirement and technicalfootnote:[Surveys on unique identifiers and usage of the elements of the spatial and temporal schema,] surveys, proposed experts for the Data Specification Drafting Teamfootnote:[The Data Specification Drafting Team has been composed of experts from Austria, Belgium, Czech Republic, France, Germany, Greece, Italy, Netherlands, Norway, Poland, Switzerland, UK, and the European Environment Agency], the Thematic Working Groupsfootnote:[The Thematic Working Groups have been composed of experts from Austria, Australia, Belgium, Bulgaria, Czech Republic, Denmark, Finland, France, Germany, Hungary, Ireland, Italy, Latvia, Netherlands, Norway, Poland, Romania, Slovakia, Spain, Slovenia, Sweden, Switzerland, Turkey, UK, the European Environment Agency and the European Commission.] and other ad-hoc cross-thematic technical groups and participated in the public stakeholder consultations on draft versions of the data specifications. These consultations covered expert reviews as well as feasibility and fitness-for-purpose testing of the data specificationsfootnote:[For Annex IIIII, the consultation and testing phase lasted from 20 June to 21 October 2011.].
This open and participatory approach was successfully used during the development of the data specifications on Annex I, II and III data themes as well as during the preparation of the Implementing Rule on Interoperability of Spatial Data Sets and Servicesfootnote:[Commission Regulation (EU) No 1089/2010 http://eur-lex.europa.eu/JOHtml.do?uri=OJ:L:2010:323:SOM:EN:HTML[implementing Directive 2007/2/EC of the European Parliament and of the Council as regards interoperability of spatial data sets and services,] published in the Official Journal of the European Union on 8^th^ of December 2010.] for Annex I spatial data themes and of its amendment regarding the themes of Annex II and III.
The development framework elaborated by the Data Specification Drafting Team aims at keeping the data specifications of the different themes coherent. It summarises the methodology to be used for the development of the data specifications, providing a coherent set of requirements and recommendations to achieve interoperability. The pillars of the framework are the following technical documentsfootnote:[The framework documents are available in the "Framework documents" section of the data specifications web page at http://inspire.jrc.ec.europa.eu/index.cfm/pageid/2]:
* The _Definition of Annex Themes and Scope_ describes in greater detail the spatial data themes defined in the Directive, and thus provides a sound starting point for the thematic aspects of the data specification development.
* The _Generic Conceptual Model_ defines the elements necessary for interoperability and data harmonisation including cross-theme issues. It specifies requirements and recommendations with regard to data specification elements of common use, like the spatial and temporal schema, unique identifier management, object referencing, some common code lists, etc. Those requirements of the Generic Conceptual Model that are directly implementable are included in the Implementing Rule on Interoperability of Spatial Data Sets and Services.
* The _Methodology for the Development of Data Specifications_ defines a repeatable methodology. It describes how to arrive from user requirements to a data specification through a number of steps including use-case development, initial specification development and analysis of analogies and gaps for further specification refinement.
* The _Guidelines for the Encoding of Spatial Data_ defines how geographic information can be encoded to enable transfer processes between the systems of the data providers in the Member States. Even though it does not specify a mandatory encoding rule it sets GML (ISO 19136) as the default encoding for INSPIRE.
* The _Guidelines for the use of Observations & Measurements and Sensor Web Enablement-related standards in INSPIRE Annex II and III data specification development_ provides guidelines on how the "Observations and Measurements" standard (ISO 19156) is to be used within INSPIRE.
* The _Common data models_ are a set of documents that specify data models that are referenced by a number of different data specifications. These documents include generic data models for networks, coverages and activity complexes.
The structure of the data specifications is based on the "ISO 19131 Geographic information - Data product specifications" standard. They include the technical documentation of the application schema, the spatial object types with their properties, and other specifics of the spatial data themes using natural language as well as a formal conceptual schema languagefootnote:[UML – Unified Modelling Language].
A consolidated model repository, feature concept dictionary, and glossary are being maintained to support the consistent specification development and potential further reuse of specification elements. The consolidated model consists of the harmonised models of the relevant standards from the ISO 19100 series, the INSPIRE Generic Conceptual Model, and the application schemasfootnote:[Conceptual models related to specific areas (e.g. INSPIRE themes)] developed for each spatial data theme. The multilingual INSPIRE Feature Concept Dictionary contains the definition and description of the INSPIRE themes together with the definition of the spatial object types present in the specification. The INSPIRE Glossary defines all the terms (beyond the spatial object types) necessary for understanding the INSPIRE documentation including the terminology of other components (metadata, network services, data sharing, and monitoring).
By listing a number of requirements and making the necessary recommendations, the data specifications enable full system interoperability across the Member States, within the scope of the application areas targeted by the Directive. The data specifications (in their version 3.0) are published as technical guidelines and provide the basis for the content of the Implementing Rule on Interoperability of Spatial Data Sets and Servicesfootnote:[In the case of the Annex IIIII data specifications, the extracted requirements are used to formulate an amendment to the existing Implementing Rule.]. The content of the Implementing Rule is extracted from the data specifications, considering short- and medium-term feasibility as well as cost-benefit considerations. The requirements included in the Implementing Rule are legally binding for the Member States according to the timeline specified in the INSPIRE Directive.
In addition to providing a basis for the interoperability of spatial data in INSPIRE, the data specification development framework and the thematic data specifications can be reused in other environments at local, regional, national and global level contributing to improvements in the coherence and interoperability of data in spatial data infrastructures.
<<<
[discrete]
== Geology – Executive Summary
In the INSPIRE context _Geology_ could be seen as a "reference data theme" as it provides information for several themes of Annex III: Mineral resources, Natural Risk Zones, Soil, Energy resources, and it has a specific relationship with one of the most important natural resources, water, through groundwater bodies contained in aquifers. Geomorphology describes the Earth's present-day surface, and the processes creating its geometry.
*The use of geological data*
Geological data are used in various domains requiring knowledge of the surface and underground geological environment: detecting geo-hazards; ensuring the safe disposal of wastes, nuclear wastes, carbon capture and storage; ensuring the safe construction of buildings; providing information for environmental planning; providing information for natural resources exploration; vulnerability of the underground to contamination; providing indicators for climatic change; providing construction material and minerals. For groundwater and aquifers uses are: water supply (water abstraction); groundwater resources (water availability); providing base flow for rivers, wetlands; protecting ecosystems dependent on groundwater; groundwater quality and quantity assessment; transboundary groundwater management.
*How geoscientists could provide this useful information?*
Geological information provides basic knowledge about the physical properties and composition of the geologic materials (rocks and sediments) outcropping at the land's surface and forming the underground, and about their structure and their age. It also provides knowledge about aquifers, i.e. subsurface units of rocks or sediments of sufficient porosity and permeability to allow either a significant flow of groundwater or the abstraction of significant quantities of groundwater. Knowledge about landforms is also provided.
The main product delivered by geologists for the users is a *geological map* which is the result of an *interpretation* of the observations and measurements made on rocks and sediments, on and under the surface. Because the rocks forming the subsurface are visible or accessible only on very small parts of the surface, the outcrops, geologists have to interpret these observations and measurements to group rocks in geologic units, and to connect other information observed locally to identify the general geological structure.
*Boreholes* are another important source of information for interpreting the subsurface geology. These can provide a stratigraphic and lithological log, analogous to a vertical geological map, and can also be used to gather samples and make measurements of various properties at depth.
All this information is interpreted to make geological maps. The *landforms* (geomorphologic features) are often indicated on general geological maps, and are detailed on specific, applied geomorphological maps.
*Hydrogeological information*
*Hydrogeology* describes the flow, occurrence, and behavior of water in the underground environment. It is a science located between hydrology and geology, and both have a strong influence on the understanding of groundwater flow and solute transport. Hydrological processes are responsible, for example, for the characterization and understanding of water supply derived from recharge of aquifers. On the other hand the physical properties and composition of the geologic materials (rocks and sediments) create the main environment for groundwater flow and storage. Rocks and sediments also influence groundwater quality in terms of their chemical composition.
The INSPIRE groundwater model describes two basic elements: the rock system (including aquifers, dependent on the geological condition) and the groundwater system (including groundwater bodies), completed by hydrogeological objects (such as water wells). See annex C for a detailed description of this domain.
*Geophysical information*
Since geophysics provides valuable information on the physical properties of rocks (like density, porosity, magnetic susceptibility, etc.), regardless of their organization as geologic units, geophysics is part of the INSPIRE Geological data specifications. Geophysical boundaries may or may not coincide with geological boundaries, depending on the changes of physical properties within and outside the geological units. Geophysics provides extra - quite often the only - information on the organization of the units in the subsurface. These results are processed by geophysicists in order to deliver the 1D, 2D, 3D or even 4D spatial distribution of the property. The spatial property distributions are then interpreted by geologists to build geological models of the subsurface, for instance to detect hydrocarbon bearing structures or zones of mineral resources.
Which geological data to provide through INSPIRE?
Based on the analysis of the potential types of users and identification of use cases the TWG developed a core data model. It is based on the complex GeoSciML data model, developed by the international geosciences community, in particular Geological Survey Organisations (_http://www.geosciml.org/_).
The core data model contains the main types of GeologicFeatures (GeologicUnits, GeologicStructures, and GeomorphologicFeatures). The geometry of these features is described in MappedFeatures and can be included in geological maps and profiles in the form of points, lines and polygons. The data model also enables a description of the lithological/stratigraphical characteristics of borehole logs, thematic maps, geophysical surveys and measurements, and features related to hydrogeology (aquifers and groundwater bodies).
Basic geological knowledge and applied maps
As mentioned above, _Geology_ is used by other thematic domains which are interested only in specific properties of the underground (to prevent landslides, to insure safe disposal of wastes etc). Geological surveys provide the basic knowledge about the Earth, but this basic information must then be processed by experts to transform it into the specific maps (named applied maps) required by thematic users. As very often the needs of thematic users concern a local area, the basic knowledge must be supplemented by new data related to specific properties (for example the porosity of the local rocks is needed in an assessment of a landslide).
*The INSPIRE Geology model provides elements to* build applied maps but does not describe these applied features.
<<<
[discrete]
== Acknowledgements
Many individuals and organisations have contributed to the development of these Guidelines.
The Thematic Working Group Geology and Mineral Resources (TWG-GE-MR) included:
Jean-Jacques Serrano (TWG Facilitator), John Laxton (TWG Editor), Kristine Ash, Xavier Berástegui Batalla, Stefan Bergman, Daniel Cassard, Bjørn Follestad, Andrew Hughes, Uffe Larsen, Tomasz Nałęcz, Simon Pen, László Sőrés, Jouni Vuollo, Robert Tomas (European Commission Contact Point).
Also contributed:
Invited external experts for hydrogeology: Bernhard Wagner, Janusz Michalak,
Invited external expert for geoscience interoperability: Francois Robida.
For the final version of the document: Chris Schubert
Other contributors to the INSPIRE data specifications are the Drafting Team Data Specifications, the JRC Data Specifications Team and the INSPIRE stakeholders - Spatial Data Interested Communities (SDICs) and Legally Mandated Organisations (LMOs).
*Contact information*
Maria Vanda Nunes de Lima & Michael Lutz
European Commission Joint Research Centre (JRC)
Institute for Environment and Sustainability
Unit H06: Digital Earth and Reference Data
_http://inspire.ec.europa.eu/index.cfm/pageid/2_
<<<
[discrete]
= Table of Contents
toc::[]
:sectnums:
<<<
== Scope
This document specifies a harmonised data specification for the spatial data theme _Geology_ as defined in Annex II of the INSPIRE Directive.
This data specification provides the basis for the drafting of Implementing Rules according to Article 7 (1) of the INSPIRE Directive [Directive 2007/2/EC]. The entire data specification is published as implementation guidelines accompanying these Implementing Rules.
<<<
== Overview
=== Name
INSPIRE data specification for the theme _Geology_.
=== Informal description
*Definition:*
_Geology_ characterised according to composition and structure. Includes bedrock, aquifers and geomorphology [Directive 2007/2/EC].
*Description*
From the definition, we detail each word. *Geology* is the study of the past and present aspects of the Earth, including its history and life on Earth.
The *composition* of an earth material describes what it consists of (its components), both the weight percentage of elements or molecules (chemical composition), and the species and number of particles, e.g. minerals (mineralogical composition), clasts and fossils.
The *structure* of an earth material describes the physical arrangements of its components. A geologic structure is a configuration of matter in the Earth based on describable inhomogeneity, pattern, or fracture in an earth material.
The composition and structure of earth materials
* are reflected by their physical properties (e.g. density, porosity, and mechanical, magnetic, electrical, seismic and hydraulic properties)
* influence geological processes (genesis, fracturing, alteration)
* control the properties of aquifers
* control the morphology of the landscape
* control their use as a natural resources
* determine their behavior during natural and industrial processes
The *bedrock* is a general term for the rock, usually solid, that underlies soil or other unconsolidated, superficial material.
*Aquifer* is a wet underground layer of water-bearing permeable rock or unconsolidated materials (gravel, sand, silt, or clay) from which groundwater can be usefully extracted using a water well.
*Groundwater* is all water which is below the surface of the ground in the saturation zone and in direct contact with the ground or subsoil. This zone is commonly referred to as an aquifer.
*Groundwater body* is a distinct volume of groundwater within an aquifer. Generally the groundwater body is not exactly correlated with the main (deeper) groundwater aquifers because it was based on the surface water basins. This means that an aquifer is not always equivalent to a groundwater body (GWB) (the methodology differs in different member states).
*Geomorphology* provides basic knowledge about the present shape of the sub-aerial and submerged parts of the Earth surface and its dynamics (genesis and involved processes).
The analysis of reference material and examples of use, briefly described in the Executive Summary, shows the wide range of uses with various sets of rock properties required for different uses: a geologist in charge of mineral prospecting, or mining waste protection, does not request the same information about rocks as an engineer dealing with natural hazards who is more interested in underground stability.
This data specification defines three application schemas: Geology, Hydrogeology, and Geophysics to provide the basic geological, hydrogeological and geophysical knowledge on an area, with agreed sets of attributes. To demonstrate the extensibility and also to cover more specific geological and geophysical requirements two extension application schemas for _Geology_ and Geophysics where defined (see Annex D).
*The Geological data model contains:*
* Geologic Features with Geologic Events, Geologic Units, Geologic Structures, and Geomorphologic Features. The geometry of these features is described in Mapped Features, and is included in geological maps and profiles in the form of points, lines and polygons. Mapped Features and Boreholes can be bundled in Collections,
* Thematic Class for reclassifying GeologicFeatures as some thematic class for thematic maps,
* The lithology of rock units,
* The processes of Geologic Events and their environments and ages
* The types of Shear Displacement Structures and Folds
* Borehole details, such as location and purpose.
*The Geophysics data model* provides essential information on the physical properties of geological structures. The data model includes:
* High rank geophysical stations that are part of international and national observation networks
* Important types of geophysical measurements that are most often requested or provided by stakeholders
* Measurements that have basic role in improving geological knowledge, especially in environmental and engineering context.
* Measurement campaigns that include any number of measurements and allow data providers to deliver metadata in a collective manner.
*The Hydrogeological data model* contains:
* The Aquifer System comprising HydrogeologicUnits, Aquifers, Aquitards, Aquicludes and the AquiferSystem,
* The Groundwater System comprising GroundWaterBody, and its relationships to the Aquifer System, Hydrogeology Objects, and WFD_GroundWaterBody
* Hydrogeology Objects, both natural and man-made, including Wells
*Extensibility of the INSPIRE geology models:*
* For geology: the possibility of using GeoSciML v 3.2 for a wide range of geoscientific information is discussed in the Annex D,
* For geophysics: guidance and examples are included to demonstrate the usage of the Observations & Measurements schema in delivering measurement and processing results.
*Definition:*
_Geology_ characterised according to composition and structure. Includes bedrock, aquifers and geomorphology [Directive 2007/2/EC].
*Description:*
In the INSPIRE context the _Geology_ data theme can be seen as a "reference data theme" as it provides information for several other INSPIRE data themes e.g. Mineral resources; Area Management, Restriction and Regulation Zones; Natural Risk Zones; Soil; Energy resources. In _Geology_ there is a specific relationship with one of the most important natural resources, water, through groundwater bodies contained in aquifers. The theme also covers geomorphology that describes the Earth's present-day surface, and the location of the geophysical campaigns and measurements that provide valuable information on the physical properties of rocks (like density, porosity, magnetic susceptibility, etc.) regardless of their organization as geologic units.
The INSPIRE _Geology_ Theme is split into the following sub-themes:
• Geology: provides basic knowledge about the physical properties and composition of geologic materials (rocks and sediments), their structure and their age as depicted in geological maps, as well as landforms (geomorphological features). The model also covers boreholes - another important source of information for interpreting the subsurface geology.
• Hydrogeology: describes the flow, occurrence, and behaviour of water in the subsurface environment. The two basic elements are the rock system (including aquifers) and the groundwater system (including groundwater bodies). Man-made or natural hydrogeological objects/features (such as groundwater wells and natural springs) are also included.
• Geophysics: focuses on the availability and location of key geophysical features. It includes metadata on high rank gravity, magnetic and seismological stations that are part of international and national observation networks as well as metadata on 2D and 3D seismic measurements that are most often requested by third party users. It also provides collective metadata on gravity, magnetic and airborne geophysical campaigns that cover large areas and provide basic geological information for scientific research and more detailed applied studies e.g. exploring earth resources (hydrocarbons, mineral deposits, ground water, geothermal energy...).
Entry in the INSPIRE registry: _http://inspire.ec.europa.eu/theme/ge/_
=== Normative References
[Directive 2007/2/EC] Directive 2007/2/EC of the European Parliament and of the Council of 14 March 2007 establishing an Infrastructure for Spatial Information in the European Community (INSPIRE)
[ISO 19105] EN ISO 19105:2000, Geographic information -- Conformance and testing
[ISO 19105] EN ISO 19105:2000, Geographic information -- Conformance and testing
[ISO 19107] EN ISO 19107:2005, Geographic Information – Spatial Schema
[ISO 19108] EN ISO 19108:2005, Geographic Information – Temporal Schema
[ISO 19108-c] ISO 19108:2002/Cor 1:2006, Geographic Information – Temporal Schema, Technical Corrigendum 1
[ISO 19111] EN ISO 19111:2007 Geographic information - Spatial referencing by coordinates (ISO 19111:2007)
[ISO 19113] EN ISO 19113:2005, Geographic Information – Quality principles
[ISO 19115] EN ISO 19115:2005, Geographic information – Metadata (ISO 19115:2003)
[ISO 19118] EN ISO 19118:2006, Geographic information – Encoding (ISO 19118:2005)
[ISO 19123] EN ISO 19123:2007, Geographic Information – Schema for coverage geometry and functions
[ISO 19125-1] EN ISO 19125-1:2004, Geographic Information – Simple feature access – Part 1: Common architecture
[ISO 19135] EN ISO 19135:2007 Geographic information – Procedures for item registration (ISO 19135:2005)
[ISO 19138] ISO/TS 19138:2006, Geographic Information – Data quality measures
[ISO 19139] ISO/TS 19139:2007, Geographic information – Metadata – XML schema implementation
[ISO 19157] ISO/DIS 19157, Geographic information – Data quality
[OGC 06-103r4] Implementation Specification for Geographic Information - Simple feature access – Part 1: Common Architecture v1.2.1
NOTE This is an updated version of "EN ISO 19125-1:2004, Geographic information – Simple feature access – Part 1: Common architecture".
[Regulation 1205/2008/EC] Regulation 1205/2008/EC implementing Directive 2007/2/EC of the European Parliament and of the Council as regards metadata
[Regulation 976/2009/EC] Commission Regulation (EC) No 976/2009 of 19 October 2009 implementing Directive 2007/2/EC of the European Parliament and of the Council as regards the Network Services
[Regulation 1089/2010/EC] Commission Regulation (EU) No 1089/2010 of 23 November 2010 implementing Directive 2007/2/EC of the European Parliament and of the Council as regards interoperability of spatial data sets and services
[Regulation 2000/60/EC] DIRECTIVE 2000/60/EC OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 23 October 2000 establishing a framework for Community action in the field of water policy
[Regulation 2006/118/EC] DIRECTIVE 2006/118/EC OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 12 December 2006 on the protection of groundwater against pollution and deterioration
=== Terms and definitions
General terms and definitions helpful for understanding the INSPIRE data specification documents are defined in the INSPIRE Glossaryfootnote:[The INSPIRE Glossary is available from http://inspire-registry.jrc.ec.europa.eu/registers/GLOSSARY].
Specifically, for the theme _Geology_, the following terms are defined:
*(1) GeologicFeature*
The abstract GeologicFeature class represents a conceptual feature that is hypothesized to exist coherently in the world. This corresponds with a "legend item" from a traditional geologic map * while the bounding coordinates of a Geologic Feature may be described, its shape is not. The implemented Geologic Feature instance acts as the "description package"
*(2) MappedFeature*
A spatial representation of a GeologicFeature. A MappedFeature is part of a geological interpretation.
It provides a link between a notional feature (description package) and one spatial representation of it, or part of it (exposures, surface traces and intercepts, etc) which forms the specific bounded occurrence, such as an outcrop or map polygon.
*(3) Geologic Unit*
A volume of rock with distinct characteristics. Includes both formal units (i.e. formally adopted and named in an official lexicon) and informal units (i.e. named but not promoted to the lexicon) and unnamed units (i.e. recognisable and described and delineable in the field but not otherwise formalised). Spatial properties are only available through association with a MappedFeature.
*(4) Geologic Structure*
Geologic Structure, in the INSPIRE context, considers shear displacement structures (including faults) and folds. A shear displacement structure is defined as a brittle to ductile style structure along which displacement has occurred. A fold is defined as one or more systematically curved layers, surfaces, or lines in a rock body.
*(5) Hydrogeologic Unit*
A Hydrogeologic Unit is a volume of rock that by virtue of its porosity or permeability has a distinct influence on the storage or movement of groundwater.
*(6) Aquifer*
A wet underground layer of water-bearing permeable rock or unconsolidated materials (gravel, sand, silt, or clay) from which groundwater can be usefully extracted using a water well.
*(7) Groundwater Body*
A distinct volume of groundwater within an aquifer or system of aquifers, which is hydraulically isolated from nearby groundwater bodies.
*(8) Geophysical Station*
Geophysical measurement spatially referenced to a single point location.
*(9) Geophysical Profile*
Geophysical measurement spatially referenced to a curve.
*(10) Geophysical Swath*
Geophysical measurement spatially referenced to a surface.
*(11) Campaign*
Geophysical activity extending over a limited time range and limited area for producing similar geophysical measurements, processing results or models.
=== Symbols and abbreviations
[width="100%",cols="14%,86%"]
|===
|AM |Area management/restriction/regulation zones and reporting units
|AP |Assessment Point
|ATS |Abstract Test Suite
|EC |European Commission
|EEA |European Environmental Agency
|EF |Environmental Monitoring Facilities
|ETRS89 |European Terrestrial Reference System 1989
|ETRS89-LAEA |Lambert Azimuthal Equal Area
|EVRS |European Vertical Reference System
|FOI |Feature of interest
|GCM |General Conceptual Model
|GDE |Groundwater dependent ecosystems
|GE |Geology
|GeoSciML |GeoScience Markup Language
|GIS |Geographical Information System
|GML |Geography Markup Language
|GSHP |Ground Source Heat Pumps
|GWB |Groundwater bodies
|GWD |Groundwater Directive
|GWML |GroundWater Markup Language
|HY |Hydrography
|ICS |International Commission on Stratigraphy
|IR |Implementing Rule
|ISDSS |Interoperability of Spatial Data Sets and Services
|ISO |International Organization for Standardization
|ITRS |International Terrestrial Reference System
|IUGS |International Union of Geological Sciences
|LAT |Lowest Astronomical Tide
|LMO |Legally Mandated Organisation
|LU |Land Use
|RBD |River Basin District
|RBMP |River Basin Management Plan
|SDIC |Spatial Data Interest Community
|SO |Soil
|SR |Sea Region
|SRS |Spatial Reference System
|SWE |Sensor Web Enablement
|TG |Technical Guidance
|UML |Unified Modeling Language
|UTC |Coordinated Universal Time
|WFD |Water Framework Directive
|WISE |Water Information System of Europe
|XML |EXtensible Markup Language
|===
=== How the Technical Guidelines map to the Implementing Rules
The schematic diagram in Figure 1 gives an overview of the relationships between the INSPIRE legal acts (the INSPIRE Directive and Implementing Rules) and the INSPIRE Technical Guidelines. The INSPIRE Directive and Implementing Rules include legally binding requirements that describe, usually on an abstract level, _what_ Member States must implement.
In contrast, the Technical Guidelines define _how_ Member States might implement the requirements included in the INSPIRE Implementing Rules. As such, they may include non-binding technical requirements that must be satisfied if a Member State data provider chooses to conform to the Technical Guidelines. Implementing these Technical Guidelines will maximise the interoperability of INSPIRE spatial data sets.
image::./media/image4.png[image,width=603,height=375, align=center]
[.text-center]
*Figure 1 - Relationship between INSPIRE Implementing Rules and Technical Guidelines*
==== Requirements
The purpose of these Technical Guidelines (Data specifications on _Geology_) is to provide practical guidance for implementation that is guided by, and satisfies, the (legally binding) requirements included for the spatial data theme _Geology_ in the Regulation (Implementing Rules) on interoperability of spatial data sets and services. These requirements are highlighted in this document as follows:
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article / Annex / Section no._
*Title / Heading*
This style is used for requirements contained in the Implementing Rules on interoperability of spatial data sets and services (Commission Regulation (EU) No 1089/2010).
====
For each of these IR requirements, these Technical Guidelines contain additional explanations and examples.
NOTE The Abstract Test Suite (ATS) in Annex A contains conformance tests that directly check conformance with these IR requirements.
Furthermore, these Technical Guidelines may propose a specific technical implementation for satisfying an IR requirement. In such cases, these Technical Guidelines may contain additional technical requirements that need to be met in order to be conformant with the corresponding IR requirement _when using this proposed implementation_. These technical requirements are highlighted as follows:
[TIP]
====
*TG Requirement X*
This style is used for requirements for a specific technical solution proposed in these Technical Guidelines for an IR requirement.
====
NOTE 1 Conformance of a data set with the TG requirement(s) included in the ATS implies conformance with the corresponding IR requirement(s).
NOTE 2 In addition to the requirements included in the Implementing Rules on interoperability of spatial data sets and services, the INSPIRE Directive includes further legally binding obligations that put additional requirements on data providers. For example, Art. 10(2) requires that Member States shall, where appropriate, decide by mutual consent on the depiction and position of geographical features whose location spans the frontier between two or more Member States. General guidance for how to meet these obligations is provided in the INSPIRE framework documents.
==== Recommendations
In addition to IR and TG requirements, these Technical Guidelines may also include a number of recommendations for facilitating implementation or for further and coherent development of an interoperable infrastructure.
[NOTE]
====
*Recommendation X*
Recommendations are shown using this style.
====
NOTE The implementation of recommendations is not mandatory. Compliance with these Technical Guidelines or the legal obligation does not depend on the fulfilment of the recommendations.
==== Conformance
Annex A includes the abstract test suite for checking conformance with the requirements included in these Technical Guidelines and the corresponding parts of the Implementing Rules (Commission Regulation (EU) No 1089/2010).
<<<
== Specification scopes
This data specification does not distinguish different specification scopes, but just considers one general scope.
NOTE For more information on specification scopes, see [ISO 19131:2007], clause 8 and Annex D.
<<<
== Identification information
These Technical Guidelines are identified by the following URI:
http://inspire.ec.europa.eu/tg/ge/3.0
NOTE ISO 19131 suggests further identification information to be included in this section, e.g. the title, abstract or spatial representation type. The proposed items are already described in the document metadata, executive summary, overview description (section 2) and descriptions of the application schemas (section 5). In order to avoid redundancy, they are not repeated here.
<<<
== Data content and structure
=== Application schemas – Overview
==== Application schemas included in the IRs
Articles 3, 4 and 5 of the Implementing Rules lay down the requirements for the content and structure of the data sets related to the INSPIRE Annex themes.
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 4_
*Types for the Exchange and Classification of Spatial Objects*
. For the exchange and classification of spatial objects from data sets meeting the conditions laid down in Article 4 of Directive 2007/2/EC, Member States shall use the spatial object types and associated data types and code lists that are defined in Annexes II, III and IV for the themes the data sets relate to.
. When exchanging spatial objects, Member States shall comply with the definitions and constraints set out in the Annexes and provide values for all attributes and association roles set out for the relevant spatial object types and data types in the Annexes. For voidable attributes and association roles for which no value exists, Member States may omit the value.
====
The types to be used for the exchange and classification of spatial objects from data sets related to the spatial data theme Geology are defined in the following application schemas (see sections 5.3, 5.4, 5.5):
* Geology application schema
* Hydrogeology application schema
* Geophysics application schema
All 3 application schemas provide basic geological, hydrogeological and geophysical knowledge on an area, with an agreed set of attributes.
The application schemas specify requirements on the properties of each spatial object including its multiplicity, domain of valid values, constraints, etc.
NOTE The application schemas presented in this section contain some additional information that is not included in the Implementing Rules, in particular multiplicities of attributes and association roles.
[TIP]
====
*TG Requirement 1*
Spatial object types and data types shall comply with the multiplicities defined for the attributes and association roles in this section.
====
An application schema may include references (e.g. in attributes or inheritance relationships) to common types or types defined in other spatial data themes. These types can be found in a sub-section called "Imported Types" at the end of each application schema section. The common types referred to from application schemas included in the IRs are addressed in Article 3.
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 3_
*Common Types*
Types that are common to several of the themes listed in Annexes I, II and III to Directive 2007/2/EC shall conform to the definitions and constraints and include the attributes and association roles set out in Annex I.
====
NOTE Since the IRs contain the types for all INSPIRE spatial data themes in one document, Article 3 does not explicitly refer to types defined in other spatial data themes, but only to types defined in external data models.
Common types are described in detail in the Generic Conceptual Model [DS-D2.7], in the relevant international standards (e.g. of the ISO 19100 series) or in the documents on the common INSPIRE models [DS-D2.10.x]. For detailed descriptions of types defined in other spatial data themes, see the corresponding Data Specification TG document [DS-D2.8.x].
==== Additional recommended application schemas
In addition to the application schemas listed above, the following additional application schema have been defined for the theme _Geology_ (see Annex D):
* Geophysics extension application schema to share e.g. geophysical observation results in a harmonised way using ISO 19156 (O&M) Standard.
These additional application schemas are not included in the IRs. They typically address requirements from specific (groups of) use cases and/or may be used to provide additional information. They are included in this specification in order to improve interoperability also for these additional aspects and to illustrate the extensibility of the application schemas included in the IRs.
[NOTE]
====
*Recomendation 1*
Additional and/or use case-specific information related to the theme _Geology_ should be made available using the spatial object types and data types specified in the following application schema: - *Geophysics extension*
These spatial object types and data types should comply with the definitions and constraints and include the attributes and association roles defined in the Annex D.
The code lists used in attributes or association roles of spatial object types or data types should comply with the definitions and include the values defined in the Annex D.
====
=== Basic notions
This section explains some of the basic notions used in the INSPIRE application schemas. These explanations are based on the GCM [DS-D2.5].
==== Notation
===== Unified Modeling Language (UML)
The application schemas included in this section are specified in UML, version 2.1. The spatial object types, their properties and associated types are shown in UML class diagrams.
NOTE For an overview of the UML notation, see Annex D in [ISO 19103].
The use of a common conceptual schema language (i.e. UML) allows for an automated processing of application schemas and the encoding, querying and updating of data based on the application schema – across different themes and different levels of detail.
The following important rules related to class inheritance and abstract classes are included in the IRs.
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 5_
*Types*
(...)
[arabic, start=2]
. Types that are a sub-type of another type shall also include all this type's attributes and association roles.
. Abstract types shall not be instantiated.
====
The use of UML conforms to ISO 19109 8.3 and ISO/TS 19103 with the exception that UML 2.1 instead of ISO/IEC 19501 is being used. The use of UML also conforms to ISO 19136 E.2.1.1.1-E.2.1.1.4.
NOTE ISO/TS 19103 and ISO 19109 specify a profile of UML to be used in conjunction with the ISO 19100 series. This includes in particular a list of stereotypes and basic types to be used in application schemas. ISO 19136 specifies a more restricted UML profile that allows for a direct encoding in XML Schema for data transfer purposes.
To model constraints on the spatial object types and their properties, in particular to express data/data set consistency rules, OCL (Object Constraint Language) is used as described in ISO/TS 19103, whenever possible. In addition, all constraints are described in the feature catalogue in English, too.
NOTE Since "void" is not a concept supported by OCL, OCL constraints cannot include expressions to test whether a value is a _void_ value. Such constraints may only be expressed in natural language.
===== Stereotypes
In the application schemas in this section several stereotypes are used that have been defined as part of a UML profile for use in INSPIRE [DS-D2.5]. These are explained in Table 1 below.
[.text-center]
*Table 1 – Stereotypes (adapted from [DS-D2.5])*
[cols=",,",options="header"]
|===
|*Stereotype* |*Model element* |*Description*
|applicationSchema |Package |An INSPIRE application schema according to ISO 19109 and the Generic Conceptual Model.
|leaf |Package |A package that is not an application schema and contains no packages.
|featureType |Class |A spatial object type.
|type |Class |A type that is not directly instantiable, but is used as an abstract collection of operation, attribute and relation signatures. This stereotype should usually not be used in INSPIRE application schemas as these are on a different conceptual level than classifiers with this stereotype.
|dataType |Class |A structured data type without identity.
|union |Class |A structured data type without identity where exactly one of the properties of the type is present in any instance.
|codeList |Class |A code list.
|import |Dependency |The model elements of the supplier package are imported.
|voidable |Attribute, association role |A voidable attribute or association role (see section 5.2.2).
|lifeCycleInfo |Attribute, association role |If in an application schema a property is considered to be part of the life-cycle information of a spatial object type, the property shall receive this stereotype.
|version |Association role |If in an application schema an association role ends at a spatial object type, this stereotype denotes that the value of the property is meant to be a specific version of the spatial object, not the spatial object in general.
|===
==== Voidable characteristics
The «voidable» stereotype is used to characterise those properties of a spatial object that may not be present in some spatial data sets, even though they may be present or applicable in the real world. This does _not_ mean that it is optional to provide a value for those properties.
For all properties defined for a spatial object, a value has to be provided – either the corresponding value (if available in the data set maintained by the data provider) or the value of _void._ A _void_ value shall imply that no corresponding value is contained in the source spatial data set maintained by the data provider or no corresponding value can be derived from existing values at reasonable costs.
[NOTE]
====
*Recomendation 2*
The reason for a _void_ value should be provided where possible using a listed value from the VoidReasonValue code list to indicate the reason for the missing value.
====
The VoidReasonValue type is a code list, which includes the following pre-defined values:
* _Unpopulated_: The property is not part of the dataset maintained by the data provider. However, the characteristic may exist in the real world. For example when the "elevation of the water body above the sea level" has not been included in a dataset containing lake spatial objects, then the reason for a void value of this property would be 'Unpopulated'. The property receives this value for all spatial objects in the spatial data set.
* _Unknown_: The correct value for the specific spatial object is not known to, and not computable by the data provider. However, a correct value may exist. For example when the "elevation of the water body above the sea level" _of a certain lake_ has not been measured, then the reason for a void value of this property would be 'Unknown'. This value is applied only to those spatial objects where the property in question is not known.
* _Withheld_: The characteristic may exist, but is confidential and not divulged by the data provider.
NOTE It is possible that additional reasons will be identified in the future, in particular to support reasons / special values in coverage ranges.
The «voidable» stereotype does not give any information on whether or not a characteristic exists in the real world. This is expressed using the multiplicity:
* If a characteristic may or may not exist in the real world, its minimum cardinality shall be defined as 0. For example, if an Address may or may not have a house number, the multiplicity of the corresponding property shall be 0..1.
* If at least one value for a certain characteristic exists in the real world, the minimum cardinality shall be defined as 1. For example, if an Administrative Unit always has at least one name, the multiplicity of the corresponding property shall be 1..*.
In both cases, the «voidable» stereotype can be applied. In cases where the minimum multiplicity is 0, the absence of a value indicates that it is known that no value exists, whereas a value of void indicates that it is not known whether a value exists or not.
EXAMPLE If an address does not have a house number, the corresponding Address object should not have any value for the «voidable» attribute house number. If the house number is simply not known or not populated in the data set, the Address object should receive a value of _void_ (with the corresponding void reason) for the house number attribute.
==== Code lists
Code lists are modelled as classes in the application schemas. Their values, however, are managed outside of the application schema.
===== Code list types
The IRs distinguish the following types of code lists.
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 6_
*Code Lists for Spatial Data Sets*
. The code lists included in this Regulation set out the multilingual thesauri to be used for the key attributes, in accordance with Article 8(2), point (c), of Directive 2007/2/EC.
. The Commission shall establish and operate an INSPIRE code list register at Union level for managing and making publicly available the values that are included in the code lists referred to in paragraph 1.
. The Commission shall be assisted by the INSPIRE Commission expert group in the maintenance and update of the code list values.
. Code lists shall be one of the following types:
[loweralpha]
.. code lists whose values comprise only the values specified in the INSPIRE code list register;
.. code lists whose values comprise the values specified in the INSPIRE code list register and narrower values defined by data providers;
.. code lists whose values comprise the values specified in the INSPIRE code list register and additional values at any level defined by data providers;
.. code lists, whose values comprise any values defined by data providers.
. Code lists may be hierarchical. Values of hierarchical code lists may have a more general parent value.
. Where, for an attribute whose type is a code list as referred to in paragraph 4, points (b), (c) or (d), a data provider provides a value that is not specified in the INSPIRE code list register, that value and its definition and label shall be made available in another register.
====
The type of code list is represented in the UML model through the tagged value _extensibility_, which can take the following values:
* _none_, representing code lists whose allowed values comprise only the values specified in the IRs (type a);
* _narrower_, representing code lists whose allowed values comprise the values specified in the IRs and narrower values defined by data providers (type b);
* _open_, representing code lists whose allowed values comprise the values specified in the IRs and additional values at any level defined by data providers (type c); and
* _any_, representing code lists, for which the IRs do not specify any allowed values, i.e. whose allowed values comprise any values defined by data providers (type d).
[NOTE]
====
*Recomendation 3*
Additional values defined by data providers should not replace or redefine any value already specified in the IRs.
====
NOTE This data specification may specify recommended values for some of the code lists of type (b), (c) and (d) (see section 5.2.4.3). These recommended values are specified in a dedicated Annex.
In addition, code lists can be hierarchical, as explained in Article 6(5) of the IRs.
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 6_
*Code Lists for Spatial Data Sets*
(...)
[arabic, start=5]
. Code lists may be hierarchical. Values of hierarchical code lists may have a more general parent value.
====
The type of code list and whether it is hierarchical or not is also indicated in the feature catalogues.
===== Obligations on data providers
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 6_
*Code Lists for Spatial Data Sets*
(....)
[arabic, start=6]
. Where, for an attribute whose type is a code list as referred to in paragraph 4, points (b), (c) or (d), a data provider provides a value that is not specified in the INSPIRE code list register, that value and its definition and label shall be made available in another register.
====
Article 6(6) obliges data providers to use only values that are allowed according to the specification of the code list. The "allowed values according to the specification of the code list" are the values explicitly defined in the IRs plus (in the case of code lists of type (b), (c) and (d)) additional values defined by data providers.
For attributes whose type is a code list of type (b), (c) or (d) data providers may use additional values that are not defined in the IRs. Article 6(6) requires that such additional values and their definition be made available in a register. This enables users of the data to look up the meaning of the additional values used in a data set, and also facilitates the re-use of additional values by other data providers (potentially across Member States).
NOTE Guidelines for setting up registers for additional values and how to register additional values in these registers is still an open discussion point between Member States and the Commission.
===== Recommended code list values
For code lists of type (b), (c) and (d), this data specification may propose additional values as a recommendation (in a dedicated Annex). These values will be included in the INSPIRE code list register. This will facilitate and encourage the usage of the recommended values by data providers since the obligation to make additional values defined by data providers available in a register (see section 5.2.4.2) is already met.
[NOTE]
====
*Recomendation 4*
Where these Technical Guidelines recommend values for a code list in addition to those specified in the IRs, these values should be used.
====
NOTE For some code lists of type (d), no values may be specified in these Technical Guidelines. In these cases, any additional value defined by data providers may be used.
===== Governance
The following two types of code lists are distinguished in INSPIRE:
* _Code lists that are governed by INSPIRE (INSPIRE-governed code lists)._ These code lists will be managed centrally in the INSPIRE code list register. Change requests to these code lists (e.g. to add, deprecate or supersede values) are processed and decided upon using the INSPIRE code list register's maintenance workflows.
+
INSPIRE-governed code lists will be made available in the INSPIRE code list register at __http://inspire.ec.europa.eu/codelist/<CodeListName__>. They will be available in SKOS/RDF, XML and HTML. The maintenance will follow the procedures defined in ISO 19135. This means that the only allowed changes to a code list are the addition, deprecation or supersession of values, i.e. no value will ever be deleted, but only receive different statuses (valid, deprecated, superseded). Identifiers for values of INSPIRE-governed code lists are constructed using the pattern __http://inspire.ec.europa.eu/codelist/<CodeListName__>/<value>.
* _Code lists that are governed by an organisation outside of INSPIRE (externally governed code lists)._ These code lists are managed by an organisation outside of INSPIRE, e.g. the World Meteorological Organization (WMO) or the World Health Organization (WHO). Change requests to these code lists follow the maintenance workflows defined by the maintaining organisations. Note that in some cases, no such workflows may be formally defined.
+
Since the updates of externally governed code lists is outside the control of INSPIRE, the IRs and these Technical Guidelines reference a specific version for such code lists.
+
The tables describing externally governed code lists in this section contain the following columns:
+
** The _Governance_ column describes the external organisation that is responsible for maintaining the code list.
** The _Source_ column specifies a citation for the authoritative source for the values of the code list. For code lists, whose values are mandated in the IRs, this citation should include the version of the code list used in INSPIRE. The version can be specified using a version number or the publication date. For code list values recommended in these Technical Guidelines, the citation may refer to the "latest available version".
** In some cases, for INSPIRE only a subset of an externally governed code list is relevant. The subset is specified using the _Subset_ column.
** The _Availability_ column specifies from where (e.g. URL) the values of the externally governed code list are available, and in which formats. Formats can include machine-readable (e.g. SKOS/RDF, XML) or human-readable (e.g. HTML, PDF) ones.
+
Code list values are encoded using http URIs and labels. Rules for generating these URIs and labels are specified in a separate table.
[NOTE]
====
*Recomendation 5*
The http URIs and labels used for encoding code list values should be taken from the INSPIRE code list registry for INSPIRE-governed code lists and generated according to the relevant rules specified for externally governed code lists.
====
NOTE Where practicable, the INSPIRE code list register could also provide http URIs and labels for externally governed code lists.
===== Vocabulary
For each code list, a tagged value called "vocabulary" is specified to define a URI identifying the values of the code list. For INSPIRE-governed code lists and externally governed code lists that do not have a persistent identifier, the URI is constructed following the pattern _http://inspire.ec.europa.eu/codelist/<UpperCamelCaseName>_.
If the value is missing or empty, this indicates an empty code list. If no sub-classes are defined for this empty code list, this means that any code list may be used that meets the given definition.
An empty code list may also be used as a super-class for a number of specific code lists whose values may be used to specify the attribute value. If the sub-classes specified in the model represent all valid extensions to the empty code list, the subtyping relationship is qualified with the standard UML constraint "\{complete,disjoint}".
==== Identifier management
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 9_
*Identifier Management*
. The data type Identifier defined in Section 2.1 of Annex I shall be used as a type for the external object identifier of a spatial object.
. The external object identifier for the unique identification of spatial objects shall not be changed during the life-cycle of a spatial object.
====
NOTE 1 An external object identifier is a unique object identifier which is published by the responsible body, which may be used by external applications to reference the spatial object. [DS-D2.5]
NOTE 2 Article 9(1) is implemented in each application schema by including the attribute _inspireId_ of type Identifier.
NOTE 3 Article 9(2) is ensured if the _namespace_ and _localId_ attributes of the Identifier remains the same for different versions of a spatial object; the _version_ attribute can of course change.
==== Geometry representation
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 12_
*Other Requirements & Rules*
. The value domain of spatial properties defined in this Regulation shall be restricted to the Simple Feature spatial schema as defined in Herring, John R. (ed.), OpenGIS® Implementation Standard for Geographic information – Simple feature access – Part 1: Common architecture, version 1.2.1, Open Geospatial Consortium, 2011, unless specified otherwise for a specific spatial data theme or type.
====
NOTE 1 The specification restricts the spatial schema to 0-, 1-, 2-, and 2.5-dimensional geometries where all curve interpolations are linear and surface interpolations are performed by triangles.
NOTE 2 The topological relations of two spatial objects based on their specific geometry and topology properties can in principle be investigated by invoking the operations of the types defined in ISO 19107 (or the methods specified in EN ISO 19125-1).
==== Temporality representation
The application schema(s) use(s) the derived attributes "beginLifespanVersion" and "endLifespanVersion" to record the lifespan of a spatial object.
The attributes "beginLifespanVersion" specifies the date and time at which this version of the spatial object was inserted or changed in the spatial data set. The attribute "endLifespanVersion" specifies the date and time at which this version of the spatial object was superseded or retired in the spatial data set.
NOTE 1 The attributes specify the beginning of the lifespan of the version in the spatial data set itself, which is different from the temporal characteristics of the real-world phenomenon described by the spatial object. This lifespan information, if available, supports mainly two requirements: First, knowledge about the spatial data set content at a specific time; second, knowledge about changes to a data set in a specific time frame. The lifespan information should be as detailed as in the data set (i.e., if the lifespan information in the data set includes seconds, the seconds should be represented in data published in INSPIRE) and include time zone information.
NOTE 2 Changes to the attribute "endLifespanVersion" does not trigger a change in the attribute "beginLifespanVersion".
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 10_
*Life-cycle of Spatial Objects*
(...)
[arabic, start=3]
. Where the attributes beginLifespanVersion and endLifespanVersion are used, the value of endLifespanVersion shall not be before the value of beginLifespanVersion.
====
NOTE The requirement expressed in the IR Requirement above will be included as constraints in the UML data models of all themes.
[NOTE]
====
*Recomendation 6*
If life-cycle information is not maintained as part of the spatial data set, all spatial objects belonging to this data set should provide a void value with a reason of "unpopulated".
====
===== Validity of the real-world phenomena
The application schema(s) use(s) the attributes "validFrom" and "validTo" to record the validity of the real-world phenomenon represented by a spatial object.
The attributes "validFrom" specifies the date and time at which the real-world phenomenon became valid in the real world. The attribute "validTo" specifies the date and time at which the real-world phenomenon is no longer valid in the real world.
Specific application schemas may give examples what "being valid" means for a specific real-world phenomenon represented by a spatial object.
[IMPORTANT]
====
[.text-center]
*IR Requirement*
_Article 12_
*Other Requirements & Rules*
(...)
[arabic, start=3]
. Where the attributes validFrom and validTo are used, the value of validTo shall not be before the value of validFrom.
====
NOTE The requirement expressed in the IR Requirement above will be included as constraints in the UML data models of all themes.
==== Coverages
Coverage functions are used to describe characteristics of real-world phenomena that vary over space and/or time. Typical examples are temperature, elevation, precipitation, imagery. A coverage contains a set of such values, each associated with one of the elements in a spatial, temporal or spatio-temporal domain. Typical spatial domains are point sets (e.g. sensor locations), curve sets (e.g. isolines), grids (e.g. orthoimages, elevation models), etc.
In INSPIRE application schemas, coverage functions are defined as properties of spatial object types where the type of the property value is a realisation of one of the types specified in ISO 19123.
To improve alignment with coverage standards on the implementation level (e.g. ISO 19136 and the OGC Web Coverage Service) and to improve the cross-theme harmonisation on the use of coverages in INSPIRE, an application schema for coverage types is included in the Generic Conceptual Model in 9.9.4. This application schema contains the following coverage types:
* _RectifiedGridCoverage_: coverage whose domain consists of a rectified grid – a grid for which there is an affine transformation between the grid coordinates and the coordinates of a coordinate reference system (see Figure 2, left).
* _ReferenceableGridCoverage_: coverage whose domain consists of a referenceable grid – a grid associated with a transformation that can be used to convert grid coordinate values to values of coordinates referenced to a coordinate reference system (see Figure 2, right).
In addition, some themes make reference to the types TimeValuePair and Timeseries defined in Taylor, Peter (ed.), _OGC^®^ WaterML 2.0: Part 1 – Timeseries, v2.0.0,_ Open Geospatial Consortium, 2012. These provide a representation of the time instant/value pairs, i.e. time series (see Figure 3).
Where possible, only these coverage types (or a subtype thereof) are used in INSPIRE application schemas.
image::./media/image5.png[image,width=222,height=207]
(Source: ISO 19136:2007)
image::./media/image6.png[image,width=309,height=209, align=center]
(Source: GML 3.3.0)
[.text-center]
*Figure 2 – Examples of a rectified grid (left) and a referenceable grid (right)*
image::./media/image66.png[image]
[.text-center]
*Figure 3 – Example of a time series*
=== Application schema Geology
==== Description
===== Narrative description and UML Overview
image::./media/image7.png[image,width=603,height=269, align=center]
[.text-center]
*Figure 4 – UML class diagram: Overview of the Geology application schema*
Figure 4 shows only the spatial object types and their relationships. It does not include data types and code-lists. The properties are not visible but are shown in the following figures, which describe the main parts of the Geology data model.
image::./media/image8.png[image,width=604,height=488, align=center]
[.text-center]
*Figure 5 – UML class diagram: GeologicFeature, MappedFeature, GeologicEvent, ThematicClass*
_MappedFeature_ and _GeologicFeature_ are central classes (spatial object types) in the model.
A _MappedFeature_ provides a spatial representation of a _GeologicFeature_. The _specification_ association from _MappedFeature_ to _GeologicFeature_ allows only one Geologic Feature to be represented by any Mapped Feature.
As well as 'standard' geological maps the model allows the description of thematic maps using the _themeClass_ association to _ThematicClass_. A thematic map in this context can be considered as a reclassification of the GeologicUnit in terms of some thematic property, for example reclassifying Geologic Units in terms of their susceptibility to compaction or their potential as a source of aggregate. A theme should have a name and be constrained by a codelist of class values for that theme but as each theme will have different classes, and it is likely different classification systems will have been used by different data providers, it is not possible to mandate any particular codelist of theme class values in the specification.
The abstract _GeologicFeature_ class represents a conceptual geological feature that is hypothesized to exist coherently in the world, and includes as sub-types the main information classes in the model. The implemented Geologic Feature instance acts as the "description package". There are three sub-types of _GeologicFeature_ in the data model: _GeologicUnit, GeologicStructure and GeomorphologicFeature._
A _GeologicEvent_ is defined as an identifiable event during which one or more geological processes act to modify geological entities. Geological age is modelled using _GeologicEvent_ – the age of some geological event occurring. A _GeologicEvent_ should have a specified geologic age and process, and may have a specified environment.
The _geologicHistory_ association from _GeologicFeature_ to _GeologicEvent_ describes a sequence of one or more Geologic Events which together describe the age or geologic history of the GeologicFeature. Commonly GeologicFeatures will have a geologicHistory comprising only one GeologicEvent, which represents the formation of the GeologicFeature.
image::./media/image9.png[image,width=604,height=320, align=center]
[.text-center]