timetable-extension #1

Open
fred.boniface wants to merge 144 commits from timetable-extension into main
1 changed files with 16 additions and 0 deletions
Showing only changes of commit 9496c9aae0 - Show all commits

View File

@ -84,6 +84,22 @@ func CreateCorpusIndexes() error {
func GetTiplocFromCrs(crs string) (tiploc string, err error) {
// Return TIPLOC from CRS code
// PIPELINE:
/*
bson.A{
bson.D{{"$match", bson.D{{"3ALPHA", "BTH"}}}},
bson.D{
{"$project",
bson.D{
{"TIPLOC", 1},
{"STANOX", 1},
{"_id", 0},
},
},
},
}
*/
err = fmt.Errorf("not yet written")
return "", err
}