NASA-IMPACT / COSMOS

COSMOS is a web application designed to manage collections indexed in NASA's Science Discovery Engine (SDE), facilitating precise content selection and allowing metadata modification before indexing.
https://sde-indexing-helper.nasa-impact.net/
3 stars 1 forks source link

Figure out resolution order of title patterns #1010

Open code-geek opened 2 months ago

code-geek commented 2 months ago

Description

Given N title pattern which may have overlapping URLs, how do we determine which title pattern should take precedence for which URL.

For example:

URL1 -> TitlePatternA URL1 -> TitlePatternB

Here, should TitlePatternB take precedence over TitlePatternA?

This can be done in various ways:

  1. Chronological order (most recent title pattern beats old title pattern)
  2. Size (more specific title pattern that applies to fewer URLs wins a broader title pattern that applies to more URLs)

Implementation Considerations

Deliverable

Dependencies

No response