@hestia-earth/data-validation 0.37.8 → 0.37.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/search-results.json +21 -21
- package/src/version.ts +1 -1
- package/validation.json +25 -15
package/package.json
CHANGED
package/search-results.json
CHANGED
|
@@ -46,27 +46,6 @@
|
|
|
46
46
|
"ecoalimV9",
|
|
47
47
|
"jarvisAndPain1994",
|
|
48
48
|
"directive200829EcOfTheEuropeanParliament",
|
|
49
|
-
"europeanEnvironmentAgency2016",
|
|
50
|
-
"ipcc2019CountryAverageFertiliserMix",
|
|
51
|
-
"papatryphonEtAl2004",
|
|
52
|
-
"fantkeEtAl2016",
|
|
53
|
-
"lcImpactCertainEffects100Years",
|
|
54
|
-
"haversineFormula",
|
|
55
|
-
"usetoxV2",
|
|
56
|
-
"ipcc2013ExcludingFeedbacks",
|
|
57
|
-
"pribyl2010",
|
|
58
|
-
"harmonizedWorldSoilDatabaseV1-2",
|
|
59
|
-
"poschEtAl2008",
|
|
60
|
-
"ecoinventV3",
|
|
61
|
-
"chaudharyBrooks2018",
|
|
62
|
-
"recipe2016Hierarchist",
|
|
63
|
-
"sqcb",
|
|
64
|
-
"mapbiomas",
|
|
65
|
-
"recipe2016Individualist",
|
|
66
|
-
"cml1992",
|
|
67
|
-
"ecoinventV3AndEmberClimate",
|
|
68
|
-
"lcImpactCertainEffectsInfinite",
|
|
69
|
-
"ridouttPfister2010",
|
|
70
49
|
"emepEea2019",
|
|
71
50
|
"ipcc2021",
|
|
72
51
|
"dammgen2009",
|
|
@@ -89,6 +68,27 @@
|
|
|
89
68
|
"schererPfister2015",
|
|
90
69
|
"globalCropWaterModel2008",
|
|
91
70
|
"cumulativeEnergyDemandCedMethod",
|
|
71
|
+
"europeanEnvironmentAgency2016",
|
|
72
|
+
"ipcc2019CountryAverageFertiliserMix",
|
|
73
|
+
"papatryphonEtAl2004",
|
|
74
|
+
"fantkeEtAl2016",
|
|
75
|
+
"lcImpactCertainEffects100Years",
|
|
76
|
+
"haversineFormula",
|
|
77
|
+
"usetoxV2",
|
|
78
|
+
"ipcc2013ExcludingFeedbacks",
|
|
79
|
+
"pribyl2010",
|
|
80
|
+
"harmonizedWorldSoilDatabaseV1-2",
|
|
81
|
+
"poschEtAl2008",
|
|
82
|
+
"ecoinventV3",
|
|
83
|
+
"chaudharyBrooks2018",
|
|
84
|
+
"recipe2016Hierarchist",
|
|
85
|
+
"sqcb",
|
|
86
|
+
"mapbiomas",
|
|
87
|
+
"recipe2016Individualist",
|
|
88
|
+
"cml1992",
|
|
89
|
+
"ecoinventV3AndEmberClimate",
|
|
90
|
+
"lcImpactCertainEffectsInfinite",
|
|
91
|
+
"ridouttPfister2010",
|
|
92
92
|
"ipcc2001",
|
|
93
93
|
"environmentalFootprintV2-0",
|
|
94
94
|
"europeanEnvironmentAgency2013",
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const DATA_VALIDATION_VERSION = '0.37.
|
|
1
|
+
export const DATA_VALIDATION_VERSION = '0.37.9';
|
package/validation.json
CHANGED
|
@@ -25,6 +25,16 @@
|
|
|
25
25
|
"level": "error",
|
|
26
26
|
"message": "must be greater than min"
|
|
27
27
|
},
|
|
28
|
+
{
|
|
29
|
+
"function": "validate_list_min_max_lookup",
|
|
30
|
+
"level": "error",
|
|
31
|
+
"message": "must be above the minimum"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"function": "validate_list_min_max_lookup",
|
|
35
|
+
"level": "error",
|
|
36
|
+
"message": "must be below the maximum"
|
|
37
|
+
},
|
|
28
38
|
{
|
|
29
39
|
"function": "validate_list_term_percent",
|
|
30
40
|
"level": "warning",
|
|
@@ -320,11 +330,6 @@
|
|
|
320
330
|
"level": "error",
|
|
321
331
|
"message": "must be in the same format as endDate"
|
|
322
332
|
},
|
|
323
|
-
{
|
|
324
|
-
"function": "validate_cycleDuration",
|
|
325
|
-
"level": "error",
|
|
326
|
-
"message": "must equal to endDate - startDate in days"
|
|
327
|
-
},
|
|
328
333
|
{
|
|
329
334
|
"function": "validate_sum_aboveGroundCropResidue",
|
|
330
335
|
"level": "error",
|
|
@@ -340,6 +345,21 @@
|
|
|
340
345
|
"level": "warning",
|
|
341
346
|
"message": "should specify the fate of cropResidue"
|
|
342
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"function": "validate_cycleDuration",
|
|
350
|
+
"level": "error",
|
|
351
|
+
"message": "must equal to endDate - startDate in days"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"function": "validate_maximum_cycleDuration",
|
|
355
|
+
"level": "error",
|
|
356
|
+
"message": "must be below maximum cycleDuration"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"function": "validate_riceGrainInHuskFlooded_minimum_cycleDuration",
|
|
360
|
+
"level": "warning",
|
|
361
|
+
"message": "should be more than the cropping duration"
|
|
362
|
+
},
|
|
343
363
|
{
|
|
344
364
|
"function": "validate_crop_siteDuration",
|
|
345
365
|
"level": "error",
|
|
@@ -395,16 +415,6 @@
|
|
|
395
415
|
"level": "error",
|
|
396
416
|
"message": "must add substrate inputs"
|
|
397
417
|
},
|
|
398
|
-
{
|
|
399
|
-
"function": "validate_maximum_cycleDuration",
|
|
400
|
-
"level": "error",
|
|
401
|
-
"message": "must be below maximum cycleDuration"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"function": "validate_riceGrainInHuskFlooded_minimum_cycleDuration",
|
|
405
|
-
"level": "warning",
|
|
406
|
-
"message": "should be more than the cropping duration"
|
|
407
|
-
},
|
|
408
418
|
{
|
|
409
419
|
"function": "validate_property_valueType",
|
|
410
420
|
"level": "error",
|