log.debug mymap
this will dump that:
6:04:25 PM: debug [response:[features:[conditions:1], termsofService:Login | Weather Underground, version:0.1], current_observation:[wind_gust_mph:0, precip_1hr_metric: 0, precip_today_metric:0, pressure_trend:+, forecast_url:Local Weather Forecast, News and Conditions | Weather Underground, history_url:http://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=KNJMONRO19, estimated:[:], weather:Clear, windchill_string:NA, station_id:KNJMONRO19, UV:0, observation_epoch:1532653459, wind_gust_kph:0, precip_1hr_in:0.00, observation_time:Last Updated on July 26, 9:04 PM EDT, feelslike_string:85 F (30 C), temp_f:80.2, local_tz_long:America/New_York, relative_humidity:84%, temp_c:26.8, image:[title:Weather Underground, link:http://www.wunderground.com, url:National and Local Weather Radar, Daily Forecast, Hurricane and information from The Weather Channel and weather.com], solarradiation:–, visibility_mi:10.0, observation_location:[full:Trenton, New Jersey, elevation:49 ft, state:New Jersey, longitude:-74.44, latitude:40.36, country_iso3166:US, country:US, city:Trenton], wind_mph:0, heat_index_c:30, precip_today_string:0.00 in (0 mm), observation_time_rfc822:Thu, 26 Jul 2018 21:04:19 -0400, feelslike_f:85, heat_index_f:85, feelslike_c:30, heat_index_string:85 F (30 C), ob_url:Local Weather Forecast, News and Conditions | Weather Underground, dewpoint_string:75 F (24 C), local_tz_offset:-0400, wind_kph:0, windchill_f:NA, windchill_c:NA, wind_degrees:3, pressure_in:29.90, dewpoint_c:24, pressure_mb:1012, icon:clear, local_time_rfc822:Thu, 26 Jul 2018 21:04:25 -0400, precip_1hr_string:0.00 in ( 0 mm), icon_url:National and Local Weather Radar, Daily Forecast, Hurricane and information from The Weather Channel and weather.com, wind_dir:North, dewpoint_f:75, nowcast:, display_location:[zip:08831, magic:1, full:Monroe Township, NJ, elevation:21.9, state:NJ, wmo:99999, longitude:-74.44000244, latitude:40.34999847, state_name:New Jersey, country_iso3166:US, country:US, city:Monroe Township], visibility_km:16.1, temperature_string:80.2 F (26.8 C), local_tz_short:EDT, local_epoch:1532653465, wind_string:Calm, precip_today_in:0.00]]
And you can then see that the weather station they are using is at:
observation_location:[full:Trenton, New Jersey, elevation:49 ft, state:New Jersey, longitude:-74.44, latitude:40.36, country_iso3166:US, country:US, city:Trenton],
to compare to the city you indicated (here is what get when I use your string to call the API):
display_location:[zip:08831, magic:1, full:Monroe Township, NJ, elevation:21.9, state:NJ, wmo:99999, longitude:-74.44000244, latitude:40.34999847, state_name:New Jersey, country_iso3166:US, country:US, city:Monroe Township],
So I believe that you should get the same information without entering the city, state if your hub is setup with similar location.
You can compare the longitude latitude you see in the coordinate of your “My Location” in the IDE and what you have in the display_location:
They should be close.
Hope it helps