From address to coordinates
Every lookup begins by normalizing and validating the address against official postal data, then geocoding it to a latitude and longitude. The target is rooftop accuracy, meaning a point inside the property boundary rather than an approximation. Precision matters because tax boundaries don’t follow postal lines. Two addresses sharing a ZIP code can sit in different school districts, and a JEDD boundary can run down the middle of a street. A ZIP-level approximation is often enough in a state with only state-level taxes, and not nearly enough in one with local taxes. You can bypass normalization entirely by passing latitude and longitude directly, which is useful for new developments that aren’t yet in postal data.The boundary data
Coordinates are matched against roughly 35,000 geospatial tax boundary shapefiles, drawn from three sources:- The U.S. Census Bureau
- State and local taxing jurisdictions
- Symmetry’s own proprietary research
Reading geocode quality
Every lookup returns result codes describing what happened during normalization and geocoding. They tell you how much confidence to place in a result.
The
GS family is the one to watch. GS05 and GS06 indicate rooftop-level geocoding. GS01 through GS04 mean the point was resolved to street, neighborhood, community, or state level instead. In states with local taxes, anything below rooftop deserves review. See Payroll Point result codes for the full list.
When a location resolves incorrectly
Two different tools handle two different problems:- Address suggestions substitute a close match when an address cannot be validated at all.
- Address exceptions override the coordinates when an address validates but resolves to the wrong place.

