adiwg-mdcodes 2.8.3 → 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/adiwg/mdcodes/version.rb +2 -1
- data/package-lock.json +923 -553
- data/package.json +7 -3
- data/resources/adiwg_dataQualityElement.yml +34 -0
- data/resources/adiwg_evaluationMethod.yml +15 -0
- data/resources/adiwg_unitsOfMeasure.yml +55 -0
- data/resources/iso_evaluationMethodTypeCode.yml +13 -0
- data/resources/iso_scope.yml +41 -42
- data/resources/iso_valueStructure.yml +16 -0
- data/scripts/prepublish.js +6 -2
- metadata +7 -4
- data/bower.json +0 -29
- data/resources/iso_dataQualityType.yml +0 -35
data/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "mdcodes",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.9.0",
|
4
4
|
"main": "index.js",
|
5
5
|
"description": "CodeLists for ADIwg mdJSON",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
8
|
-
"url": "https://github.com/adiwg/mdCodes.git"
|
8
|
+
"url": "git+https://github.com/adiwg/mdCodes.git"
|
9
9
|
},
|
10
10
|
"keywords": [
|
11
11
|
"metadata",
|
@@ -28,8 +28,12 @@
|
|
28
28
|
"prepublishOnly": "scripts/prepublish.js"
|
29
29
|
},
|
30
30
|
"dependencies": {
|
31
|
-
"buildify": "powmedia/buildify#20458a121411f759dcc5ec1b441695eb7fc2b3b7",
|
31
|
+
"buildify": "github:powmedia/buildify#20458a121411f759dcc5ec1b441695eb7fc2b3b7",
|
32
32
|
"glob": "^7.1.0",
|
33
33
|
"rimraf": "^2.6.2"
|
34
|
+
},
|
35
|
+
"directories": {
|
36
|
+
"lib": "lib",
|
37
|
+
"test": "test"
|
34
38
|
}
|
35
39
|
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
---
|
2
|
+
# mdJson codelists
|
3
|
+
|
4
|
+
codelistType: "staticList"
|
5
|
+
codelistName: "adiwg_dataQualityElement"
|
6
|
+
source: "Alaska Data Integration working group"
|
7
|
+
sourceName: "ADIwg_DataQualityElement"
|
8
|
+
extensible: true
|
9
|
+
description: "ISO data quality element class names"
|
10
|
+
codelist:
|
11
|
+
- { code: "001", codeName: DQ_AbsoluteExternalPositionalAccuracy, description: "closeness of reported coordinate values to values accepted as or being true" }
|
12
|
+
- { code: "002", codeName: DQ_AccuracyOfATimeMeasurement, description: "correctness of the temporal references of an item (reporting of error in time measurement)" }
|
13
|
+
- { code: "003", codeName: DQ_ConceptualConsistency, description: "adherence to rules of the conceptual schema" }
|
14
|
+
- { code: "004", codeName: DQ_CompletenessCommission, description: "excess data present in the dataset, as described by the scope" }
|
15
|
+
- { code: "005", codeName: DQ_CompletenessOmission, description: "data absent from the dataset, as described by the scope" }
|
16
|
+
- { code: "006", codeName: DQ_Confidence, description: "trustworthiness of a data quality result" }
|
17
|
+
- { code: "007", codeName: DQ_CoverageResult, description: "result of a data quality measure organising the measured values as a coverage" }
|
18
|
+
- { code: "008", codeName: DQ_DomainConsistency, description: "adherence of values to the value domains" }
|
19
|
+
- { code: "009", codeName: DQ_FormatConsistency, description: "degree to which data is stored in accordance with the physical structure of the dataset, as described by the scope" }
|
20
|
+
- { code: "010", codeName: DQ_GriddedDataPositionalAccuracy, description: "closeness of gridded data position values to values accepted as or being true" }
|
21
|
+
- { code: "011", codeName: DQ_Homogeneity, description: "expected or tested uniformity of the results obtained for a data quality evaluation" }
|
22
|
+
- { code: "012", codeName: DQ_NonQuantitativeAttributeCorrectness, description: "correctness of non-quantitative attributes" }
|
23
|
+
- { code: "013", codeName: DQ_QuantitativeAttributeAccuracy, description: "accuracy of quantitative attributes" }
|
24
|
+
- { code: "014", codeName: DQ_RelativeInternalPositionalAccuracy, description: "closeness of the relative positions of features in the scope to their respective relative positions accepted as or being true" }
|
25
|
+
- { code: "015", codeName: DQ_Representativity, description: "degree to which the sample used has produced a result which is representative of the data within the data quality scope" }
|
26
|
+
- { code: "016", codeName: DQ_TemporalConsistency, description: "correctness of ordered events or sequences, if reported" }
|
27
|
+
- { code: "017", codeName: DQ_TemporalValidity, description: "validity of data specified by the scope with respect to time" }
|
28
|
+
- { code: "018", codeName: DQ_ThematicClassificationCorrectness, description: "comparison of the classes assigned to features or their attributes to a universe of discourse" }
|
29
|
+
- { code: "019", codeName: DQ_TopologicalConsistency, description: "correctness of the explicitly encoded topological characteristics of the dataset as described by the scope" }
|
30
|
+
- { code: "020", codeName: DQ_UsabilityElement, description: "degree of adherence of a dataset to a specific set of requirements" }
|
31
|
+
- { code: "021", codeName: DQ_Completeness, description: "presence and absence of features, their attributes and their relationships" }
|
32
|
+
- { code: "022", codeName: DQ_LogicalConsistency, description: "adherence to rules of the conceptual schema" }
|
33
|
+
- { code: "023", codeName: DQ_PositionalAccuracy, description: "closeness of reported coordinate values to values accepted as or being true" }
|
34
|
+
- { code: "024", codeName: DQ_TemporalQuality, description: "correctness of the temporal references of an item (reporting of error in time measurement)" }
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
# mdJson codelists
|
3
|
+
|
4
|
+
codelistType: "staticList"
|
5
|
+
codelistName: "adiwg_evaluationMethod"
|
6
|
+
source: "Alaska Data Integration working group"
|
7
|
+
sourceName: "ADIwg_EvaluationMethod"
|
8
|
+
extensible: true
|
9
|
+
description: "the type of Evaluation Method"
|
10
|
+
codelist:
|
11
|
+
- { code: "001", codeName: evaluationMethod, description: "type of method used to evaluate quality of the data" }
|
12
|
+
- { code: "002", codeName: data, description: "data evaluation method" }
|
13
|
+
- { code: "003", codeName: fullInspection, description: "full inspection" }
|
14
|
+
- { code: "004", codeName: sampleBasedInspection, description: "sample based inspection" }
|
15
|
+
- { code: "005", codeName: aggregationDerivation, description: "aggregation or derivation method" }
|
@@ -0,0 +1,55 @@
|
|
1
|
+
---
|
2
|
+
# mdJson codelists
|
3
|
+
|
4
|
+
codelistType: "staticList"
|
5
|
+
codelistName: "adiwg_unitsOfMeasure"
|
6
|
+
source: "Alaska Data Integration working group"
|
7
|
+
sourceName: "ADIwg_UnitsOfMeasure"
|
8
|
+
extensible: true
|
9
|
+
description: "units of measure"
|
10
|
+
codelist:
|
11
|
+
- { code: "001", codeName: metres, description: "m" }
|
12
|
+
- { code: "002", codeName: millimetres, description: "mm" }
|
13
|
+
- { code: "003", codeName: centimetres, description: "cm" }
|
14
|
+
- { code: "004", codeName: kilometres, description: "km" }
|
15
|
+
- { code: "005", codeName: inches, description: "in" }
|
16
|
+
- { code: "006", codeName: feet, description: "ft" }
|
17
|
+
- { code: "007", codeName: yards, description: "yd" }
|
18
|
+
- { code: "008", codeName: miles, description: "mi" }
|
19
|
+
- { code: "009", codeName: kilometresPerHour, description: "km/h" }
|
20
|
+
- { code: "010", codeName: milesPerHour, description: "mph" }
|
21
|
+
- { code: "011", codeName: metresPerSecond, description: "m/s" }
|
22
|
+
- { code: "012", codeName: feetPerSecond, description: "ft/s" }
|
23
|
+
- { code: "013", codeName: metresPerSecondSquared, description: "m/s²" }
|
24
|
+
- { code: "014", codeName: seconds, description: "s" }
|
25
|
+
- { code: "015", codeName: degCelsius, description: "°C" }
|
26
|
+
- { code: "016", codeName: degFahrenheit, description: "°F" }
|
27
|
+
- { code: "017", codeName: kelvin, description: "K" }
|
28
|
+
- { code: "018", codeName: candela, description: "cd" }
|
29
|
+
- { code: "019", codeName: radian, description: "rad" }
|
30
|
+
- { code: "020", codeName: steradian, description: "sr" }
|
31
|
+
- { code: "021", codeName: hertz, description: "Hz" }
|
32
|
+
- { code: "022", codeName: newton, description: "N" }
|
33
|
+
- { code: "023", codeName: pascal, description: "Pa" }
|
34
|
+
- { code: "024", codeName: joule, description: "J" }
|
35
|
+
- { code: "025", codeName: watt, description: "W" }
|
36
|
+
- { code: "026", codeName: ampere, description: "A" }
|
37
|
+
- { code: "027", codeName: volt, description: "V" }
|
38
|
+
- { code: "028", codeName: farad, description: "F" }
|
39
|
+
- { code: "029", codeName: ohm, description: "Ω" }
|
40
|
+
- { code: "030", codeName: siemens, description: "S" }
|
41
|
+
- { code: "031", codeName: weber, description: "Wb" }
|
42
|
+
- { code: "032", codeName: tesla, description: "T" }
|
43
|
+
- { code: "033", codeName: henry, description: "H" }
|
44
|
+
- { code: "034", codeName: lumen, description: "lm" }
|
45
|
+
- { code: "035", codeName: squareInches, description: "in²" }
|
46
|
+
- { code: "036", codeName: squareFeet, description: "ft²" }
|
47
|
+
- { code: "037", codeName: squareMiles, description: "mi²" }
|
48
|
+
- { code: "038", codeName: squareMetres, description: "m²" }
|
49
|
+
- { code: "039", codeName: hectares, description: "ha" }
|
50
|
+
- { code: "040", codeName: acres, description: "ac" }
|
51
|
+
- { code: "041", codeName: cubicInches, description: "in³" }
|
52
|
+
- { code: "042", codeName: cubicFeet, description: "ft³" }
|
53
|
+
- { code: "043", codeName: cubicMetres, description: "m³" }
|
54
|
+
- { code: "044", codeName: grams, description: "g" }
|
55
|
+
- { code: "045", codeName: coulombs, description: "C" }
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
# mdJson codelists
|
3
|
+
|
4
|
+
codelistType: "staticList"
|
5
|
+
codelistName: "iso_evaluationMethodTypeCode"
|
6
|
+
source: "ISO"
|
7
|
+
sourceName: "DQ_EvaluationMethodTypeCode"
|
8
|
+
extensible: true
|
9
|
+
description: "type of method for evaluating an identified data quality measure"
|
10
|
+
codelist:
|
11
|
+
- { code: "001", codeName: directInternal, description: "method of evaluating the quality of a data set based on inspection of items within the data set, where all data required is internal to the data set being evaluated" }
|
12
|
+
- { code: "002", codeName: directExternal, description: "method of evaluating the quality of a data set based on inspection of items within the data set, where reference data external to the data set being evaluated is required" }
|
13
|
+
- { code: "003", codeName: indirect, description: "method of evaluating the quality of a data set based on external knowledge" }
|
data/resources/iso_scope.yml
CHANGED
@@ -10,45 +10,44 @@ sourceName: "MD_ScopeCode"
|
|
10
10
|
extensible: true
|
11
11
|
description: "class of information to which the referencing entity applies"
|
12
12
|
codelist:
|
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
|
-
|
13
|
+
- { code: "001", codeName: attribute, description: "information applies to the attribute class" }
|
14
|
+
- { code: "002", codeName: attributeType, description: "information applies to the characteristic of a feature" }
|
15
|
+
- { code: "003", codeName: collectionHardware, description: "information applies to the collection hardware class" }
|
16
|
+
- { code: "004", codeName: collectionSession, description: "information applies to the collection session" }
|
17
|
+
- { code: "005", codeName: dataset, description: "information applies to the dataset" }
|
18
|
+
- { code: "006", codeName: series, description: "information applies to the series" }
|
19
|
+
- { code: "007", codeName: nonGeographicDataset, description: "information applies to non-geographic data" }
|
20
|
+
- { code: "008", codeName: dimensionGroup, description: "information applies to a dimension group" }
|
21
|
+
- { code: "009", codeName: feature, description: "information applies to a feature" }
|
22
|
+
- { code: "010", codeName: featureType, description: "information applies to a feature type" }
|
23
|
+
- { code: "011", codeName: propertyType, description: "information applies to a property type" }
|
24
|
+
- { code: "012", codeName: fieldSession, description: "information applies to a field session" }
|
25
|
+
- { code: "013", codeName: software, description: "information applies to a computer program or routine" }
|
26
|
+
- { code: "014", codeName: service, description: "information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case" }
|
27
|
+
- { code: "015", codeName: model, description: "information applies to a copy or imitation of an existing or hypothetical object" }
|
28
|
+
- { code: "016", codeName: tile, description: "information applies to a tile, a spatial subset of geographic data" }
|
29
|
+
- { code: "017", codeName: metadata, description: "information applies to metadata" }
|
30
|
+
- { code: "018", codeName: initiative, description: "information applies to an initiative" }
|
31
|
+
- { code: "019", codeName: sample, description: "information applies to a sample" }
|
32
|
+
- { code: "020", codeName: document, description: "information applies to a document" }
|
33
|
+
- { code: "021", codeName: repository, description: "information applies to a repository" }
|
34
|
+
- { code: "022", codeName: aggregate, description: "information applies to an aggregate resource" }
|
35
|
+
- { code: "023", codeName: product, description: "metadata describing an ISO 19131 data product specification" }
|
36
|
+
- { code: "024", codeName: collection, description: "information applies to an unstructured set" }
|
37
|
+
- { code: "025", codeName: coverage, description: "information applies to a coverage" }
|
38
|
+
- { code: "026", codeName: application, description: "information resource hosted on a specific set of hardware and accessible over a network" }
|
39
|
+
- { code: "adiwg001", codeName: sciencePaper, description: "document based on an experiment or research" }
|
40
|
+
- { code: "adiwg002", codeName: userGuide, description: "operating manual for users" }
|
41
|
+
- { code: "adiwg003", codeName: dataDictionary, description: "element and entity definitions" }
|
42
|
+
- { code: "adiwg004", codeName: website, description: "information applies to a website such as a thematic portal" }
|
43
|
+
- { code: "adiwg005", codeName: publication, description: "information applies to a published document" }
|
44
|
+
- { code: "adiwg006", codeName: report, description: "information applies to an unpublished document" }
|
45
|
+
- { code: "adiwg007", codeName: awardInfo, description: "information applies to a document related to the grant or award for the resource" }
|
46
|
+
- { code: "adiwg008", codeName: collectionSite, description: "Locations where data are collected for scientific research" }
|
47
|
+
- { code: "adiwg009", codeName: project, description: "high level information that applies to research activity such as project title, location, contacts, timeframe, abstract, etc." }
|
48
|
+
- { code: "adiwg010", codeName: factSheet, description: "information applies to fact sheet, pamphlet, flyer, or brochure" }
|
49
|
+
- { code: "adiwg011", codeName: tabularDataset, description: "information applies to a tabular dataset, spreadsheet, or relational database" }
|
50
|
+
- { code: "adiwg012", codeName: map, description: "information applies to a printed or electronic map" }
|
51
|
+
- { code: "adiwg013", codeName: drawing, description: "information applies to a hand drawn or digital drawing" }
|
52
|
+
- { code: "adiwg014", codeName: photographicImage, description: "information applies to a still or moving film or video image" }
|
53
|
+
- { code: "adiwg015", codeName: presentation, description: "information applies to a collection of presentation slides or recorded presentation" }
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
# mdJson codelists
|
3
|
+
|
4
|
+
codelistType: "staticList"
|
5
|
+
codelistName: "iso_valueStructure"
|
6
|
+
source: "ISO"
|
7
|
+
sourceName: "DQM_ValueStructure"
|
8
|
+
extensible: true
|
9
|
+
description: "structure for reporting a complex data quality result"
|
10
|
+
codelist:
|
11
|
+
- { code: "001", codeName: "bag", description: "finite, unordered collection of related items (objects or values) that may be repeated (ISO 19107:2003)" }
|
12
|
+
- { code: "002", codeName: "set", description: "unordered collection of related items (objects or values) with no repetition (ISO 19107:2003)" }
|
13
|
+
- { code: "003", codeName: "sequence", description: "finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003)" }
|
14
|
+
- { code: "004", codeName: "table", description: "an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999)" }
|
15
|
+
- { code: "005", codeName: "matrix", description: "rectangular array of numbers (ISO/TS 19129:2009)" }
|
16
|
+
- { code: "006", codeName: "coverage", description: "feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005)" }
|
data/scripts/prepublish.js
CHANGED
@@ -7,9 +7,13 @@ let buildify = require('buildify');
|
|
7
7
|
let rimraf = require('rimraf');
|
8
8
|
let path = 'resources/js';
|
9
9
|
|
10
|
-
|
10
|
+
console.log('Start Preprocess for npm publishing')
|
11
|
+
|
12
|
+
if (fs.existsSync(path)) {
|
11
13
|
rimraf.sync(path);
|
12
|
-
console.log('Removed existing resources/js files
|
14
|
+
console.log('Removed existing resources/js files');
|
15
|
+
} else {
|
16
|
+
console.log('No existing resources/js files');
|
13
17
|
}
|
14
18
|
|
15
19
|
fs.mkdirSync(path);
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: adiwg-mdcodes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- stansmith907, jlblcc
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -85,7 +85,6 @@ files:
|
|
85
85
|
- README.md
|
86
86
|
- Rakefile
|
87
87
|
- adiwg-mdcodes.gemspec
|
88
|
-
- bower.json
|
89
88
|
- index.js
|
90
89
|
- lib/adiwg-mdcodes.rb
|
91
90
|
- lib/adiwg/mdcodes.rb
|
@@ -94,13 +93,16 @@ files:
|
|
94
93
|
- package.json
|
95
94
|
- resources/adiwg_addressType.yml
|
96
95
|
- resources/adiwg_applicationProfile.yml
|
96
|
+
- resources/adiwg_dataQualityElement.yml
|
97
97
|
- resources/adiwg_dataType.yml
|
98
98
|
- resources/adiwg_entityType.yml
|
99
|
+
- resources/adiwg_evaluationMethod.yml
|
99
100
|
- resources/adiwg_mapGridSystem.yml
|
100
101
|
- resources/adiwg_mapProjection.yml
|
101
102
|
- resources/adiwg_metadataRepository.yml
|
102
103
|
- resources/adiwg_metadataStandard.yml
|
103
104
|
- resources/adiwg_namespace.yml
|
105
|
+
- resources/adiwg_unitsOfMeasure.yml
|
104
106
|
- resources/iso_DCPList.yml
|
105
107
|
- resources/iso_associationType.yml
|
106
108
|
- resources/iso_bandDefinition.yml
|
@@ -111,10 +113,10 @@ files:
|
|
111
113
|
- resources/iso_countries.yml
|
112
114
|
- resources/iso_coverageContentType.yml
|
113
115
|
- resources/iso_currency.yml
|
114
|
-
- resources/iso_dataQualityType.yml
|
115
116
|
- resources/iso_dateType.yml
|
116
117
|
- resources/iso_dimensionNameType.yml
|
117
118
|
- resources/iso_entityClass.yml
|
119
|
+
- resources/iso_evaluationMethodTypeCode.yml
|
118
120
|
- resources/iso_geometricObjectType.yml
|
119
121
|
- resources/iso_geometryTypeCode.yml
|
120
122
|
- resources/iso_imageCondition.yml
|
@@ -144,6 +146,7 @@ files:
|
|
144
146
|
- resources/iso_topologyLevel.yml
|
145
147
|
- resources/iso_transferFunctionTypeCode.yml
|
146
148
|
- resources/iso_triggerCode.yml
|
149
|
+
- resources/iso_valueStructure.yml
|
147
150
|
- scripts/prepublish.js
|
148
151
|
- test/tc_mdcodes.rb
|
149
152
|
- test/tc_version.rb
|
data/bower.json
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "mdcodes",
|
3
|
-
"homepage": "https://github.com/adiwg/mdCodes",
|
4
|
-
"authors": [
|
5
|
-
"Josh Bradley <jbradley@arcticlcc.org>"
|
6
|
-
],
|
7
|
-
"description": "Provides code lists for use in ISO 19139 compliant metadata, especially mdJSON.",
|
8
|
-
"main": "resources/json/mdcodes.json",
|
9
|
-
"keywords": [
|
10
|
-
"adiwg",
|
11
|
-
"metadata",
|
12
|
-
"json"
|
13
|
-
],
|
14
|
-
"license": "Unlicense",
|
15
|
-
"ignore": [
|
16
|
-
"**/.*",
|
17
|
-
"node_modules",
|
18
|
-
"bower_components",
|
19
|
-
"test",
|
20
|
-
"tests",
|
21
|
-
"lib",
|
22
|
-
"*.gemspec",
|
23
|
-
"Gemfile",
|
24
|
-
"Gemfile.lock",
|
25
|
-
"pkg",
|
26
|
-
"Rakefile",
|
27
|
-
"resources/*.yml"
|
28
|
-
]
|
29
|
-
}
|
@@ -1,35 +0,0 @@
|
|
1
|
-
---
|
2
|
-
# mdJson codelists
|
3
|
-
# base codelist for ISO 19115-2, 19115-1
|
4
|
-
|
5
|
-
codelistType: "staticList"
|
6
|
-
codelistName: "iso_dataQualityType"
|
7
|
-
source: "ISO"
|
8
|
-
sourceName: "DQ_DataQualityInfo"
|
9
|
-
extensible: true
|
10
|
-
description: "datatype of element or entity"
|
11
|
-
codelist:
|
12
|
-
- {code: "000", codeName: DQ_AbsoluteExternalPositionalAccuracy, description: ""}
|
13
|
-
- {code: "001", codeName: DQ_AccuracyOfATimeMeasurement, description: ""}
|
14
|
-
- {code: "002", codeName: DQ_ConceptualConsistency, description: ""}
|
15
|
-
- {code: "003", codeName: DQ_CompletenessCommission, description: ""}
|
16
|
-
- {code: "004", codeName: DQ_CompletenessOmission, description: ""}
|
17
|
-
- {code: "005", codeName: DQ_Confidence, description: ""}
|
18
|
-
- {code: "006", codeName: DQ_CoverageResult, description: ""}
|
19
|
-
- {code: "007", codeName: DQ_DomainConsistency, description: ""}
|
20
|
-
- {code: "008", codeName: DQ_FormatConsistency, description: ""}
|
21
|
-
- {code: "009", codeName: DQ_GriddedDataPositionalAccuracy, description: ""}
|
22
|
-
- {code: "010", codeName: DQ_Homogeneity, description: ""}
|
23
|
-
- {code: "011", codeName: DQ_NonQuantitativeAttributeCorrectness, description: ""}
|
24
|
-
- {code: "012", codeName: DQ_QuantitativeAttributeAccuracy, description: ""}
|
25
|
-
- {code: "013", codeName: DQ_RelativeInternalPositionalAccuracy, description: ""}
|
26
|
-
- {code: "014", codeName: DQ_Representativity, description: ""}
|
27
|
-
- {code: "015", codeName: DQ_TemporalConsistency, description: ""}
|
28
|
-
- {code: "016", codeName: DQ_TemporalValidity, description: ""}
|
29
|
-
- {code: "017", codeName: DQ_ThematicClassisificationCorrectness, description: ""}
|
30
|
-
- {code: "018", codeName: DQ_TopologicalConsistency, description: ""}
|
31
|
-
- {code: "019", codeName: DQ_UsibilityElement, description: ""}
|
32
|
-
- {code: "020", codeName: DQ_Completeness, description: ""}
|
33
|
-
- {code: "021", codeName: DQ_LogicalConsistency, description: ""}
|
34
|
-
- {code: "022", codeName: DQ_PositioinalAccuracy, description: ""}
|
35
|
-
- {code: "023", codeName: DQ_TemporalQuality, description: ""}
|