adiwg-mdcodes 2.9.0 → 2.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -7
- data/lib/adiwg/mdcodes/version.rb +2 -1
- data/package-lock.json +2 -2
- data/package.json +3 -2
- data/resources/adiwg_dataQualityElement.yml +24 -24
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0526c3b3899762cac428d826dac74f141b3318e661cebfac6a50113f2d93c901
|
4
|
+
data.tar.gz: 298a7bf82ad5b27ddfe133285520fa662b866f7010cd6851b90a629341b775a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f550ff7a269da32a0412499a80197a75c98436bc1fff020e97e9704bb6037c72af0b46294ab4b02a3da88ee6436cd6bcc948e2fbf74efa0b6f7b567faeebae0
|
7
|
+
data.tar.gz: '048015b1f737500bed31d9497d7ae795a44eed070e61f24df80ddbfcdf49f5873d6b023802db6aba819055ed71e9916c7aee4301aab09722c871727785e0e2fa'
|
data/README.md
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
[![Build Status](https://travis-ci.org/adiwg/mdCodes.svg)](https://travis-ci.org/adiwg/mdCodes)
|
2
1
|
[![Gem Version](https://badge.fury.io/rb/adiwg-mdcodes.svg)](http://badge.fury.io/rb/adiwg-mdcodes)
|
3
|
-
[![Bower version](https://badge.fury.io/bo/mdcodes.svg)](https://badge.fury.io/bo/mdcodes)
|
4
2
|
[![npm version](https://badge.fury.io/js/mdcodes.svg)](https://badge.fury.io/js/mdcodes)
|
5
3
|
|
6
4
|
# mdCodes
|
@@ -9,13 +7,9 @@ mdCodes provides code lists in hash or JSON formats for loading of mdEditor and
|
|
9
7
|
tools that use the ADIwg [mdJson-schemas](https://github.com/adiwg/mdJson-schemas). The code lists
|
10
8
|
include all ISO 19115-2 and ISO 19115-1 codes plus supplemental codes added by NGDC and ADIwg. The
|
11
9
|
code lists may be accessed in Ruby using the gem. Alternatively, JSON may be generated from the YAML
|
12
|
-
using [Grunt](http://gruntjs.com/getting-started).
|
10
|
+
using [Grunt](http://gruntjs.com/getting-started). NPM package is available as well.
|
13
11
|
See the following for instructions.
|
14
12
|
|
15
|
-
## Bower
|
16
|
-
|
17
|
-
bower install mdcodes
|
18
|
-
|
19
13
|
## npm
|
20
14
|
|
21
15
|
npm install mdcodes
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# adiwg mdCodes
|
2
2
|
|
3
3
|
# version 2 history
|
4
|
+
# 2.9.1 2024-02-26 refactored data quality
|
4
5
|
# 2.8.4 2023-03-06 added data quality
|
5
6
|
# 2.7.6 2019-07-09 fixed iso_role changed use to user
|
6
7
|
# 2.7.4 2019-04-12 fixed iso_telephone changed sourceName to CI_TelephoneTypeCode
|
@@ -29,7 +30,7 @@
|
|
29
30
|
|
30
31
|
module ADIWG
|
31
32
|
module Mdcodes
|
32
|
-
VERSION = "2.9.
|
33
|
+
VERSION = "2.9.1"
|
33
34
|
end
|
34
35
|
end
|
35
36
|
|
data/package-lock.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "mdcodes",
|
3
|
-
"version": "2.9.
|
3
|
+
"version": "2.9.1",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "mdcodes",
|
9
|
-
"version": "2.9.
|
9
|
+
"version": "2.9.1",
|
10
10
|
"license": "Unlicense",
|
11
11
|
"dependencies": {
|
12
12
|
"buildify": "github:powmedia/buildify#20458a121411f759dcc5ec1b441695eb7fc2b3b7",
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "mdcodes",
|
3
|
-
"version": "2.9.
|
3
|
+
"version": "2.9.1",
|
4
4
|
"main": "index.js",
|
5
5
|
"description": "CodeLists for ADIwg mdJSON",
|
6
6
|
"repository": {
|
@@ -25,7 +25,8 @@
|
|
25
25
|
"grunt-yamllint": "^0.3.0"
|
26
26
|
},
|
27
27
|
"scripts": {
|
28
|
-
"prepublishOnly": "scripts/prepublish.js"
|
28
|
+
"prepublishOnly": "scripts/prepublish.js",
|
29
|
+
"build": "npm i --force && grunt convert && grunt concat-json && npm run prepublishOnly"
|
29
30
|
},
|
30
31
|
"dependencies": {
|
31
32
|
"buildify": "github:powmedia/buildify#20458a121411f759dcc5ec1b441695eb7fc2b3b7",
|
@@ -8,27 +8,27 @@ sourceName: "ADIwg_DataQualityElement"
|
|
8
8
|
extensible: true
|
9
9
|
description: "ISO data quality element class names"
|
10
10
|
codelist:
|
11
|
-
- { code: "001", codeName:
|
12
|
-
- { code: "002", codeName:
|
13
|
-
- { code: "003", codeName:
|
14
|
-
- { code: "004", codeName:
|
15
|
-
- { code: "005", codeName:
|
16
|
-
- { code: "006", codeName:
|
17
|
-
- { code: "007", codeName:
|
18
|
-
- { code: "008", codeName:
|
19
|
-
- { code: "009", codeName:
|
20
|
-
- { code: "010", codeName:
|
21
|
-
- { code: "011", codeName:
|
22
|
-
- { code: "012", codeName:
|
23
|
-
- { code: "013", codeName:
|
24
|
-
- { code: "014", codeName:
|
25
|
-
- { code: "015", codeName:
|
26
|
-
- { code: "016", codeName:
|
27
|
-
- { code: "017", codeName:
|
28
|
-
- { code: "018", codeName:
|
29
|
-
- { code: "019", codeName:
|
30
|
-
- { code: "020", codeName:
|
31
|
-
- { code: "021", codeName:
|
32
|
-
- { code: "022", codeName:
|
33
|
-
- { code: "023", codeName:
|
34
|
-
- { code: "024", codeName:
|
11
|
+
- { code: "001", codeName: AbsoluteExternalPositionalAccuracy, description: "closeness of reported coordinate values to values accepted as or being true" }
|
12
|
+
- { code: "002", codeName: AccuracyOfATimeMeasurement, description: "correctness of the temporal references of an item (reporting of error in time measurement)" }
|
13
|
+
- { code: "003", codeName: ConceptualConsistency, description: "adherence to rules of the conceptual schema" }
|
14
|
+
- { code: "004", codeName: CompletenessCommission, description: "excess data present in the dataset, as described by the scope" }
|
15
|
+
- { code: "005", codeName: CompletenessOmission, description: "data absent from the dataset, as described by the scope" }
|
16
|
+
- { code: "006", codeName: Confidence, description: "trustworthiness of a data quality result" }
|
17
|
+
- { code: "007", codeName: CoverageResult, description: "result of a data quality measure organising the measured values as a coverage" }
|
18
|
+
- { code: "008", codeName: DomainConsistency, description: "adherence of values to the value domains" }
|
19
|
+
- { code: "009", codeName: 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: GriddedDataPositionalAccuracy, description: "closeness of gridded data position values to values accepted as or being true" }
|
21
|
+
- { code: "011", codeName: Homogeneity, description: "expected or tested uniformity of the results obtained for a data quality evaluation" }
|
22
|
+
- { code: "012", codeName: NonQuantitativeAttributeCorrectness, description: "correctness of non-quantitative attributes" }
|
23
|
+
- { code: "013", codeName: QuantitativeAttributeAccuracy, description: "accuracy of quantitative attributes" }
|
24
|
+
- { code: "014", codeName: 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: 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: TemporalConsistency, description: "correctness of ordered events or sequences, if reported" }
|
27
|
+
- { code: "017", codeName: TemporalValidity, description: "validity of data specified by the scope with respect to time" }
|
28
|
+
- { code: "018", codeName: ThematicClassificationCorrectness, description: "comparison of the classes assigned to features or their attributes to a universe of discourse" }
|
29
|
+
- { code: "019", codeName: TopologicalConsistency, description: "correctness of the explicitly encoded topological characteristics of the dataset as described by the scope" }
|
30
|
+
- { code: "020", codeName: UsabilityElement, description: "degree of adherence of a dataset to a specific set of requirements" }
|
31
|
+
- { code: "021", codeName: Completeness, description: "presence and absence of features, their attributes and their relationships" }
|
32
|
+
- { code: "022", codeName: LogicalConsistency, description: "adherence to rules of the conceptual schema" }
|
33
|
+
- { code: "023", codeName: PositionalAccuracy, description: "closeness of reported coordinate values to values accepted as or being true" }
|
34
|
+
- { code: "024", codeName: TemporalQuality, description: "correctness of the temporal references of an item (reporting of error in time measurement)" }
|
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.9.
|
4
|
+
version: 2.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- stansmith907, jlblcc
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|