Skip to content

Commit

Permalink
Merge pull request #69 from astronomy-commons/sean/fix-hardcoded-string
Browse files Browse the repository at this point in the history
Replace string with constant
  • Loading branch information
smcguire-cmu authored Nov 16, 2023
2 parents d523eb1 + 44e1334 commit ed5bfe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lsdb/dask/crossmatch_catalog_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def crossmatch_catalog_data(
meta[name + suffixes[0]] = pd.Series(dtype=col_type)
for name, col_type in right.dtypes.items():
meta[name + suffixes[1]] = pd.Series(dtype=col_type)
meta["_DIST"] = pd.Series(dtype=np.dtype("float64"))
meta[crossmatch_algorithm.DISTANCE_COLUMN_NAME] = pd.Series(dtype=np.dtype("float64"))
meta_df = pd.DataFrame(meta)
meta_df.index.name = HIPSCAT_ID_COLUMN

Expand Down

0 comments on commit ed5bfe9

Please sign in to comment.