Places API Match

Hello! I am using this code to match my data and create placekey for the records.
Code: Google Colab

If I add the longitude and latitude to this query, will it make a difference in terms of accuracy of the match or it is enough to have the parameters from the example ?

query = “”"
query($confidence: Confidence, $street_address: String, $city: String, $state: String, $country: String, $location_name: String,$postal_code: String) {
search(
filter: {
address: {
location_name: $location_name
street_address: $street_address
city: $city
region: $state
postal_code: $postal_code
iso_country_code: $country
}
}
) {
places {
results(first: 500 confidence: $confidence) {
edges {
node {
placekey
safegraph_core {
location_name
street_address
postal_code
}
}
}
}
}
}
}
“”"
Thanks!