Extracting GPS Coordinates Without Regex

How can I modify this sitemap to extract GPS coordinates, without using Regex, can coordinates be derived from the postcode?

Url:

Sitemap:
{"_id":"pc_shops","startUrl":["https://www.yelp.co.uk/search?find_desc=computer+shops&find_loc=London"],"selectors":[{"id":"links","parentSelectors":["_root"],"type":"SelectorLink","selector":".css-1egxyvc a","multiple":true},{"id":"name","parentSelectors":["links"],"type":"SelectorText","selector":"h1","multiple":false,"regex":""},{"id":"address","parentSelectors":["links"],"type":"SelectorText","selector":"p.css-qyp8bo","multiple":false,"regex":""},{"id":"phone","parentSelectors":["links"],"type":"SelectorText","selector":"div.css-1vhakgw:nth-of-type(2) p.css-1p9ibgf","multiple":false,"regex":""},{"id":"website","parentSelectors":["links"],"type":"SelectorLink","selector":".css-1p9ibgf a[target]","multiple":false}]}

@Ajak Hello, it appears that the coordinates are embedded within a script and can be extracted by using the following 'Text' selector: script[nonce]:contains("longitude")

Example:

{"_id":"pc_shops","startUrl":["https://www.yelp.co.uk/search?find_desc=Hotels&find_loc=London"],"selectors":[{"id":"links","multiple":true,"parentSelectors":["_root"],"selector":"div[data-testid=\"serp-ia-card\"] h3 > span > a","type":"SelectorLink"},{"id":"directions","multiple":false,"parentSelectors":["links"],"selector":"a:contains(\"Get directions\")","type":"SelectorLink"},{"id":"coordinates","multiple":false,"parentSelectors":["directions"],"regex":"\"center\":.*","selector":"script[nonce]:contains(\"longitude\")","type":"SelectorText"}]}

Thanks, but how do I integrate the code into my sitemap?