polifonia-project / sonar2021_demo

This repository is created for the documentation of the Polifonia demo that is going to be presented to SONAR2021
https://polifonia-project.github.io/sonar2021_demo/
2 stars 0 forks source link

Songs with same `track_id` in `places.json` #72

Closed ccolonna closed 2 years ago

ccolonna commented 2 years ago

Hi @andreamust I'm transforming the file in this commit https://github.com/polifonia-project/sonar2021_demo/commit/187f547c711539755fe8b55312fd5726aa8840e3

See for example track_id: isophonics_160

You have two recordings with the same Id:

        {
            "track_id": "isophonics_160",
            "title": "Somebody To Love",
            "title_for_iri": "somebody_to_love",
            "recording_places": [
                {
                    "ref_id": "00189",
                    "session_id": "00189_1",
                    "type": "recorded at",
                    "type_id": "recorded at",
                    "session_type": "mp:RecordingSession",
                    "begin": "1976-07",
                    "end": "1976-11",
                    "ended": "true",
                    "place": {
                        "id": "ac5e3a90_62c3_42a9_8526_c3e647ef9ddf",
                        "type": "Studio",
                        "name": "Sarm West Studios",
                        "address": "8-10 Basing Street, London W11 1ET"
                    }
                },
                {
                    "ref_id": "00189",
                    "session_id": "00189_2",
                    "type": "recorded at",
                    "type_id": "recorded at",
                    "session_type": "mp:RecordingSession",
                    "begin": "1976-07",
                    "end": "1976-11",
                    "ended": "true",
                    "place": {
                        "id": "cfea6b10_668a_4fdb_b677_7e76778f2f29",
                        "type": "Studio",
                        "name": "The Manor",
                        "address": "Shipton-on-Cherwell, Oxfordshire, UK",
                        "coordinates": {
                            "latitude": "51.8455",
                            "longitude": "-1.3049"
                        }
                    }
                },
                {
                    "ref_id": "00189",
                    "session_id": "00189_3",
                    "type": "recorded at",
                    "type_id": "recorded at",
                    "session_type": "mp:RecordingSession",
                    "begin": "1976-07",
                    "end": "1976-11",
                    "ended": "true",
                    "place": {
                        "id": "5bfbd51e_ce05_439a_97dc_cf0507d213c7",
                        "type": "Studio",
                        "name": "Wessex Sound Studios",
                        "address": "106 Highbury New Park, London N5",
                        "coordinates": {
                            "latitude": "51.554722",
                            "longitude": "-0.091389"
                        }
                    }
                }
            ],
            "artists": [
                {
                    "id": "00001",
                    "name": "Queen",
                    "name_iri": "queen",
                    "country": "GB",
                    "start_place": "London"
                }
            ],
            "youtube_id": "kijpcUv-b8M"
        },

And:

        {
            "track_id": "isophonics_160",
            "title": "Somebody To Love (live)",
            "title_for_iri": "somebody_to_love_(live)",
            "recording_places": [
                {
                    "ref_id": "00218",
                    "session_id": "00218_1",
                    "type": "recorded at",
                    "type_id": "recorded at",
                    "session_type": "mp:RecordingSession",
                    "begin": "1992-04-20",
                    "end": "1992-04-20",
                    "ended": "true",
                    "place": {
                        "id": "db17e312_ec0a_4d8e_b2e4_bd00a7924588",
                        "type": "Stadium",
                        "name": "Wembley Stadium",
                        "disambiguation": "1st incarnation, 1923\u20132000",
                        "address": "Wembley, London, HA9 0WS",
                        "coordinates": {
                            "latitude": "51.555556",
                            "longitude": "-0.279722"
                        }
                    }
                }
            ],
            "artists": [
                {
                    "id": "00001",
                    "name": "George Michael",
                    "name_iri": "george_michael",
                    "country": "GB",
                    "start_place": "East Finchley"
                },
                {
                    "id": "00002",
                    "name": "Queen",
                    "name_iri": "queen",
                    "country": "GB",
                    "start_place": "London"
                }
            ]
        },

Another example is track_id: jaah_8

Is this a bug ?

andreamust commented 2 years ago

It looks like a bug in the alignment (string matching) of the Isophonics dataset. @jonnybluesman could you have a quick look at it?

jonnybluesman commented 2 years ago

Should happen for a very few tracks, I will check now. Thanks for having spotted the issue!

jonnybluesman commented 2 years ago

Should be okay now, @ccolonna can close the issue : )

ccolonna commented 2 years ago

Thanks @andreamust @jonnybluesman ! I don't see any new places.json file I'll keep what I already have then!