1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
-- location_extract_countysub_exact(string, stateAbbrev)
-- This function checks the place_lookup table to find a potential match to
-- the location described at the end of the given string. If an exact match
-- fails, a fuzzy match is performed. The location as found in the given
-- string is returned.
CREATE OR REPLACE FUNCTION location_extract_countysub_exact(
fullStreet VARCHAR,
stateAbbrev VARCHAR
) RETURNS VARCHAR
AS $_$
DECLARE
ws VARCHAR;
location VARCHAR;
tempInt INTEGER;
lstate VARCHAR;
rec RECORD;
BEGIN
ws := E'[ ,.\n\f\t]';
-- No hope of determining the location from place. Try countysub.
IF stateAbbrev IS NOT NULL THEN
lstate := statefp FROM state WHERE stusps = stateAbbrev;
SELECT INTO tempInt count(*) FROM cousub
WHERE cousub.statefp = lstate
AND texticregexeq(fullStreet, '(?i)' || name || '$');
ELSE
SELECT INTO tempInt count(*) FROM cousub
WHERE texticregexeq(fullStreet, '(?i)' || name || '$');
END IF;
IF tempInt > 0 THEN
IF stateAbbrev IS NOT NULL THEN
FOR rec IN SELECT substring(fullStreet, '(?i)('
|| name || ')$') AS value, name FROM cousub
WHERE cousub.statefp = lstate
AND texticregexeq(fullStreet, '(?i)' || ws || name ||
'$') ORDER BY length(name) DESC LOOP
-- Only the first result is needed.
location := rec.value;
EXIT;
END LOOP;
ELSE
FOR rec IN SELECT substring(fullStreet, '(?i)('
|| name || ')$') AS value, name FROM cousub
WHERE texticregexeq(fullStreet, '(?i)' || ws || name ||
'$') ORDER BY length(name) DESC LOOP
-- again, only the first is needed.
location := rec.value;
EXIT;
END LOOP;
END IF;
END IF;
RETURN location;
END;
$_$ LANGUAGE plpgsql STABLE COST 10;
|