Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6b41022
KMS-686: Added support for sciencekeywords, platforms and instruments
htranho Jun 24, 2026
8b1db2d
KMS-686: Fix LongName for instruments and platforms
htranho Jun 24, 2026
d85cd3e
KMS-686: Add support for projects and locations
htranho Jun 24, 2026
6f43b81
KMS-686: Add support for isotopiccategory fixing
htranho Jun 25, 2026
897ab05
KMS-686: Add support for productlevelid
htranho Jun 25, 2026
c812bc7
KMS-686: Add support for providers correction
htranho Jun 26, 2026
2f784b3
KMS-686: Use same editor for providers, instruments, platforms and pr…
htranho Jun 26, 2026
3dcb5a0
KMS-686: Code refactor: hierachy schemes use same method
htranho Jun 26, 2026
9d602df
KMS-686: Add code comments
htranho Jun 26, 2026
6eb7945
KMS-686: Add test file for Iso19115DomEditor
htranho Jun 27, 2026
541890c
KMS-686: Add tests
htranho Jun 28, 2026
e61e2a5
KMS-686: Add allowed keyword domains
htranho Jun 29, 2026
e87d420
KMS-686: Add smoke test script, fix code for correction object
htranho Jun 29, 2026
97bf3ce
Merge branch 'KMS-686' of github.com:nasa/kms into KMS-686
htranho Jun 29, 2026
903f88c
KMS-686: Fix test for iso19115
htranho Jun 29, 2026
58df8ec
KMS-686: Fix tests
htranho Jun 30, 2026
c881ae7
KMS-686: Remove keyword domain list
htranho Jun 30, 2026
aa21d28
KMS-686: Update/fix for code reviews
htranho Jul 1, 2026
8c40e63
KMS-686: Fix delete for value matching and matching only first element
htranho Jul 1, 2026
0861d54
KMS-686: Add paths for platfforms and instruments in acquisition info…
htranho Jul 2, 2026
20338ee
KMS-686: Add tests
htranho Jul 2, 2026
6bce8ce
KMS-686: Add tests
htranho Jul 2, 2026
fdd9be0
KMS-686: Add test
htranho Jul 2, 2026
40fc370
KMS-686: Add tests to smoke test script/mock data
htranho Jul 2, 2026
977f10d
KMS-686: Remove additional path of providers: Responsible party
htranho Jul 7, 2026
30cae8d
KMS-686: Fix platfform vs instrument target identity
htranho Jul 7, 2026
ad086c4
KMS-686: Add additional path for projects
htranho Jul 7, 2026
f024188
KMS-686: Update comment
htranho Jul 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"collectionConceptId": "C1234567222-LOCAL",
"nativeFormat": "ISO19115",
"source": "local-smoke",
"corrections": [
{
"scheme": "sciencekeywords",
"action": "replace",
"oldKeywordObject": {
"Category": "EARTH SCIENCE",
"Topic": "ATMOSPHERE",
"Term": "AEROSOLS",
"VariableLevel1": "",
"VariableLevel2": "",
"VariableLevel3": "",
"DetailedVariable": ""
},
"newKeywordObject": {
"Category": "EARTH SCIENCE",
"Topic": "OCEANS",
"Term": "MARINE SEDIMENTS",
"VariableLevel1": "PARTICLE SIZE",
"VariableLevel2": "",
"VariableLevel3": "",
"DetailedVariable": ""
}
},
{
"scheme": "locations",
"action": "replace",
"oldKeywordObject": {
"Category": "CONTINENT",
"Type": "NORTH AMERICA",
"Subregion1": "CANADA",
"Subregion2": "ALBERTA",
"Subregion3": "",
"DetailedLocation": ""
},
"newKeywordObject": {
"Category": "CONTINENT",
"Type": "NORTH AMERICA",
"Subregion1": "MEXICO",
"Subregion2": "",
"Subregion3": "",
"DetailedLocation": ""
}
},
{
"scheme": "platforms",
"action": "replace",
"newLongName": "Earth Observing System AQUA Updated",
"oldKeywordObject": {
"ShortName": "AQUA"
},
"newKeywordObject": {
"ShortName": "AQUA-2"
}
},
{
"scheme": "platforms",
"action": "replace",
"newLongName": "Earth Observing System TERRA Updated",
"oldKeywordObject": {
"ShortName": "TERRA"
},
"newKeywordObject": {
"ShortName": "TERRA-2"
}
},
{
"scheme": "instruments",
"action": "replace",
"newLongName": "Moderate-Resolution Imaging Spectroradiometer Updated",
"oldKeywordObject": {
"ShortName": "MODIS"
},
"newKeywordObject": {
"ShortName": "MODIS-2"
}
},
{
"scheme": "instruments",
"action": "replace",
"newLongName": "Advanced Topographic Laser Altimeter System Updated",
"oldKeywordObject": {
"ShortName": "ATLAS"
},
"newKeywordObject": {
"ShortName": "ATLAS-2"
}
},
{
"scheme": "projects",
"action": "replace",
"newLongName": "New Project Long Name",
"oldKeywordObject": {
"Category": "M - N",
"ShortName": "MEASURES"
},
"newKeywordObject": {
"Category": "M - N",
"ShortName": "MEASURES-UPDATED"
}
},
{
"scheme": "providers",
"action": "replace",
"newLongName": "New Provider Long Name",
"oldKeywordObject": {
"BucketLevel0": "ARCHIVER",
"BucketLevel1": "",
"BucketLevel2": "",
"BucketLevel3": "",
"ShortName": "DOC/NOAA/NESDIS/NCEI"
},
"newKeywordObject": {
"BucketLevel0": "ARCHIVER",
"BucketLevel1": "",
"BucketLevel2": "",
"BucketLevel3": "",
"ShortName": "DOC/NOAA/NESDIS/NCEI-1"
}
},
{
"scheme": "isotopiccategory",
"action": "replace",
"oldKeywordObject": {
"Value": "FARMING"
},
"newKeywordObject": {
"Value": "BIOTA"
}
},
{
"scheme": "productlevelid",
"action": "replace",
"oldKeywordObject": {
"Value": "3"
},
"newKeywordObject": {
"Value": "5"
}
}
]
}
Loading
Loading