models¶
- class zipcode_coordinates_tz.models.Benchmark(value)¶
Census geocoding benchmark identifiers.
Benchmarks define the version of address data used for geocoding. See https://geocoding.geo.census.gov/geocoder/benchmarks for available values.
- Members:
Public_AR_CURRENT: The current production benchmark. Public_AR_ACS2024: The 2024 ACS benchmark. Public_AR_Census2020: The 2020 Decennial Census benchmark.
- class zipcode_coordinates_tz.models.Coordinate(latitude: float, longitude: float)¶
Represents a geographic coordinate pair.
- latitude¶
The latitude in decimal degrees (positive = north).
- Type:
float
- longitude¶
The longitude in decimal degrees (positive = east).
- Type:
float
- latitude: float¶
Alias for field number 0
- longitude: float¶
Alias for field number 1
- class zipcode_coordinates_tz.models.FillMissing(value)¶
Controls whether missing timezones are filled from neighboring records.
- Members:
DISABLED: Do not fill missing timezones. ENABLED: Fill missing timezones using the closest geographic match
(ZipCode, City+State, then State).