Skip to content

Commit 0e6ed87

Browse files
authored
Merge pull request #33 from jessecambon/1.0.0
1.0.0
2 parents aa1322d + 838ec68 commit 0e6ed87

23 files changed

+41
-37
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: tidygeocoder
22
Type: Package
33
Title: Geocoding Made Easy
4-
Version: 0.3.0.9000
4+
Version: 1.0.0
55
Authors@R:
66
c(person(given = "Jesse",
77
family = "Cambon",

R/geo.R

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,10 @@ geo <- function(address = NULL,
154154
## OR the user has explicitly specified single address geocoding.. call the
155155
## single address geocoder in a loop
156156
if ((num_unique_addresses > 1) & ((method %in% c('osm', 'iq')) | (mode == 'single'))) {
157-
if (verbose == TRUE) message('Executing single address geocoding...\n')
157+
if (verbose == TRUE) {
158+
message('Executing single address geocoding...')
159+
message()
160+
}
158161

159162
# construct args for single address query
160163
# note that non-address related fields go to the MoreArgs argument of mapply
@@ -287,11 +290,11 @@ geo <- function(address = NULL,
287290
# Name the latitude and longitude columns in accordance with lat/long arguments
288291
names(results)[1] <- lat
289292
names(results)[2] <- long
290-
291-
### Make sure the proper amount of time has elapsed for the query per min_time
292-
pause_until(start_time, min_time, debug = verbose)
293-
if (verbose == TRUE) message() # insert ending line break if verbose
294293
}
295294

295+
### Make sure the proper amount of time has elapsed for the query per min_time
296+
pause_until(start_time, min_time, debug = verbose)
297+
if (verbose == TRUE) message() # insert ending line break if verbose
298+
296299
return(unpackage_addresses(address_pack, results, unique_only, return_addresses))
297300
}

docs/404.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/tidygeocoder.html

Lines changed: 11 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/authors.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pkgdown: 1.5.1
33
pkgdown_sha: ~
44
articles:
55
tidygeocoder: tidygeocoder.html
6-
last_built: 2020-07-14T20:28Z
6+
last_built: 2020-07-15T12:56Z
77
urls:
88
reference: https://jessecambon.github.io/tidygeocoder/reference
99
article: https://jessecambon.github.io/tidygeocoder/articles

0 commit comments

Comments
 (0)