Skip to content

Commit

Permalink
Add matchesTarget/matchesObject schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
taranu committed Mar 28, 2022
1 parent e137769 commit ab85719
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions yml/imsim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8281,3 +8281,78 @@ tables:
datatype: long
mysql:datatype: BIGINT
description:
- name: matchesTruth
'@id': '#matchesTruth'
description: Match information for truth_summary sources.
columns:
- name: index
'@id': '#matchesTruth.index'
datatype: long
mysql:datatype: BIGINT
description: Incrementing (implicit) row index
- name: match_candidate
'@id': '#matchesTruth.match_candidate'
datatype: boolean
mysql:datatype: BOOLEAN
description: True for sources that were selected for matching
- name: match_row
'@id': '#matchesTruth.match_row'
datatype: long
mysql:datatype: BIGINT
description: Index of matched objectTable_tract table row, if any
- name: match_count
'@id': '#matchesTruth.match_count'
datatype: int
mysql:datatype: INTEGER
description: Number of candidate object matches within match radius
- name: match_chisq
'@id': '#matchesTruth.match_chisq'
datatype: double
mysql:datatype: double
description: The chi-squared value of the (best) match
- name: match_n_chisq_finite
'@id': '#matchesTruth.match_n_chisq_finite'
datatype: int
mysql:datatype: INTEGER
description: The number of finite columns used to compute the match chisq
- name: id
'@id': '#matchesTruth.id'
datatype: char
length: 16
mysql:datatype: CHAR(16)
description: id for truth_summary source.
- name: match_objectId
'@id': '#matchesTruth.match_objectId'
datatype: long
mysql:datatype: BIGINT
description: objectId of matched objectTable_tract object, if any
- name: matchesObject
'@id': '#matchesObject'
description: Match information for objectTable_tract sources
columns:
- name: index
'@id': '#matchesTruth.index'
datatype: long
mysql:datatype: BIGINT
description: Incrementing (implicit) row index
- name: match_candidate
'@id': '#matchesTruth.match_candidate'
datatype: boolean
mysql:datatype: BOOLEAN
description: True for sources that were selected for matching
- name: match_row
'@id': '#matchesObject.match_row'
datatype: long
mysql:datatype: BIGINT
description: Index of matched truth_summary table row, if any
- name: match_id
'@id': '#matchesObject.match_id'
datatype: char
length: 16
mysql:datatype: CHAR(16)
description: id of matched truth_summary source, if any
- name: objectId
'@id': '#matchesObject.objectId'
datatype: long
mysql:datatype: BIGINT
description: objectId of object

0 comments on commit ab85719

Please sign in to comment.