Closed aaronkrusniak closed 5 months ago
Thank you! I have a very limited number of custom geocoders to work with personally and i figured an issue might arise with respect to custom geocoding fields. The custom json parsing is implemented but I suspect I may have written a bug like you point out somewhere.
It appears that your geocoding service is not available publicly. If possible, would you be able to share what your field metadata looks like?
This can be done via
chigeocoder$candidateFields |> dput()
Sure! It's not pretty, but it looks like this. I'll note that in our case, our custom fields are named all the same as the candidate fields, but they are for a candidate street intersection.
structure(list(name = c("Loc_name", "Shape", "Status", "Score",
"Match_addr", "LongLabel", "ShortLabel", "Addr_type", "Type",
"PlaceName", "Place_addr", "Phone", "URL", "Rank", "AddBldg",
"AddNum", "AddNumFrom", "AddNumTo", "AddRange", "Side", "StPreDir",
"StPreType", "StName", "StType", "StDir", "BldgType", "BldgName",
"LevelType", "LevelName", "UnitType", "UnitName", "SubAddr",
"StAddr", "Block", "Sector", "Nbrhd", "District", "City", "MetroArea",
"Subregion", "Region", "RegionAbbr", "Territory", "Zone", "Postal",
"PostalExt", "Country", "CntryName", "LangCode", "Distance",
"X", "Y", "DisplayX", "DisplayY", "Xmin", "Xmax", "Ymin", "Ymax",
"ExInfo", "User_fld"), type = c("esriFieldTypeString", "esriFieldTypeGeometry",
"esriFieldTypeString", "esriFieldTypeDouble", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeDouble",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeString",
"esriFieldTypeString", "esriFieldTypeString", "esriFieldTypeDouble",
"esriFieldTypeDouble", "esriFieldTypeDouble", "esriFieldTypeDouble",
"esriFieldTypeDouble", "esriFieldTypeDouble", "esriFieldTypeDouble",
"esriFieldTypeDouble", "esriFieldTypeDouble", "esriFieldTypeString",
"esriFieldTypeString"), alias = c("Loc_name", "Shape", "Status",
"Score", "Match_addr", "LongLabel", "ShortLabel", "Addr_type",
"Type", "PlaceName", "Place_addr", "Phone", "URL", "Rank", "BuildingName",
"AddressNumber", "AddNumFrom", "AddNumTo", "AddressRange", "Side",
"StPreDir", "StPreType", "StName", "StType", "StDir", "BldgType",
"BldgName", "LevelType", "LevelName", "UnitType", "UnitName",
"SubAddress", "StAddr", "Block", "Sector", "Neighborhood", "District",
"City", "MetroArea", "Subregion", "Region", "RegionAbbr", "Territory",
"Zone", "Postal", "PostalExt", "Country", "CountryName", "LangCode",
"Distance", "X", "Y", "DisplayX", "DisplayY", "Xmin", "Xmax",
"Ymin", "Ymax", "ExtraInfo", "User_fld"), required = c(FALSE,
TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE, FALSE), length = c(14L, NA, 1L, NA, 500L,
500L, 500L, 20L, 50L, 200L, 500L, 25L, 250L, NA, 125L, 50L, 50L,
50L, 100L, 1L, 5L, 50L, 125L, 30L, 20L, 20L, 50L, 20L, 50L, 20L,
50L, 250L, 300L, 120L, 120L, 120L, 120L, 120L, 120L, 120L, 120L,
50L, 120L, 100L, 20L, 10L, 30L, 100L, 5L, NA, NA, NA, NA, NA,
NA, NA, NA, NA, 500L, 255L)), row.names = c(NA, 60L), class = "data.frame")
@aaronkrusniak thank you! I was able to create a reprex:
library(arcgisutils)
library(arcgisgeocode)
set_arc_token(auth_user())
geocoder <- geocode_server("https://datahub.esriuk.com/arcgis/rest/services/gb_locators/bng_locator/GeocodeServer")
arcgisgeocode:::has_custom_fields(geocoder)
geocode_addresses(
"Old Bedford Rd, Luton LU2 7HA, United Kingdom",
geocoder = geocoder
)
I'll figure this out shortly and push a patch to GitHub. I'll let you know when it's available
Thanks so much @JosiahParry !
@aaronkrusniak Assuming CI is all green I'll merge this in and it should be fixed! https://github.com/R-ArcGIS/arcgisgeocode/pull/21
The binaries should be built about an hour-ish after merging from r-universe. Or, you can install directly from github if you have rust available on your machine.
Merged! You should be able to install it from https://r-arcgis.r-universe.dev/arcgisgeocode in about an hour. Thank you so much for reporting this issue.
Lmk if I can help at all or if you ever want to hop on a call and work through a problem that our packages(may or may not) help with.
@JosiahParry thank you so much! I'll give it a spin and let you know if I run into any more strange behavior :)
I'm having the same issue with a custom geocoder where I receive the error "Error in parse_locations_res(string, use_custom_json_processing) : argument "geocoder" is missing, with no default".
I'm using arcgisgeocode version 1.01.306.
@ryan-honeck that is an arcgisbinding version. Can you try installing the latest build from R-universe? https://r-arcgis.r-universe.dev/arcgisgeocode
Hi there! Started testing this package today and found a bug (or rather it seems like the code may just not be implemented yet?)
I'm trying to geocode a few addresses using an enterprise geocoder with custom fields:
And this last call to
geocode_addresses
is what generates the error:I took a peek at your source code to see if I could track down a lead, and I think I found one. In the source for
core-batch-geocode.R
, you implement some handling for custom fields (lines 283-295):And the body of
parse_locations_res()
looks like this (lines 328-354):So, it looks to me like the call to
parse_locations_res()
on line 291 isn't providing a complete list of arguments. That's fine whenuse_custom_json_processing
isFALSE
, but when it'sTRUE
(i.e. when the geocoder has custom fields),parse_locations_res()
will try to callparse_custom_loc_json()
usinggeocoder
andn
arguments that it hasn't been provided.Looks like this may also be somewhat related to #8.
Sorry if this ends up being bad information— not sure of all the technical details in your stack— but hopefully I am at least pointing you in the right direction or giving you a lead to work off of! Thanks so much for making this package, I think this'll be a huge boon to my organization once we can get it working with our enterprise geocoder :)