Skip to content

Commit 500e45b

Browse files
authored
Merge pull request #104 from ropensci/103-tidygeocode-as-default-geocoder
103 tidygeocode as default geocoder
2 parents 1186537 + 2f39979 commit 500e45b

21 files changed

Lines changed: 2164 additions & 623 deletions

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ Imports:
4545
Hmisc,
4646
igraph,
4747
Matrix,
48-
magrittr,
4948
network,
5049
stringdist,
5150
rworldmap,
52-
sna
51+
sna,
52+
tidygeocoder
5353
Suggests:
5454
covr,
5555
gdtools,
@@ -63,7 +63,7 @@ VignetteBuilder:
6363
Remotes:
6464
dkahle/ggmap
6565
Encoding: UTF-8
66-
RoxygenNote: 7.1.2
66+
RoxygenNote: 7.3.2
6767
X-schema.org-keywords:
6868
name disambiguation,
6969
bibliometrics,

NAMESPACE

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ export(plot_net_coauthor)
1010
export(plot_net_country)
1111
export(references_read)
1212
importFrom(ggmap,geocode)
13-
importFrom(ggplot2,theme)
14-
importFrom(dplyr,arrange)
15-
importFrom(dplyr,tally)
16-
importFrom(magrittr, "%>%")
1713
importFrom(network,"%v%")
1814
importFrom(rworldmap,addMapLegend)
1915
importFrom(stats,na.omit)

NEWS.md

Lines changed: 39 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,66 @@
11
# refsplitr News
22

33

4+
refsplitr 1.2 (2025-04-26)
5+
=========================
6+
7+
### NEW FEATURES
8+
9+
* The new default service for georeferencing author institutions is the free
10+
[Nominatim](https://nominatim.org/) service, which uses OpenStreetMap (OSM) data and
11+
which `refsplitr` queries via the [`tidygeocoder`]((https://jessecambon.github.io/tidygeocoder/)
12+
package.[`tidygeocoder`](https://jessecambon.github.io/tidygeocoder/).
13+
The Google Maps API is still an option, but users should be aware that their
14+
georeferencing request may exceed the lower limit of free queries.
15+
16+
* The `authors_addresses` function has been updated and is now more efficient.
17+
18+
* In `plot_net_address`: the deprecated function `fortify` has been replaced
19+
with `sf_convert`
20+
21+
422
refsplitr 1.0.2 (2024-08-12)
523
=========================
624

725
### NEW FEATURES
826

927

10-
* `references_read` now extracts additional fields from Web of Science records: WE (Source Database), C3 (all author affiliations, equivalent to the Scopus `affiliations` field code), EI (eISSN), OA (Open Access), and RID (the original version of the Thomson-Reuters ResearcherID (RI); authors of some older publications might have an RID but not an RI). These are not included in the default output of `references_read`, to include them use `include_all = TRUE`.
28+
* `references_read` now extracts additional fields from Web of Science
29+
records: WE (Source Database), C3 (all author affiliations, equivalent to the
30+
Scopus `affiliations` field code), EI (eISSN), OA (Open Access), and RID
31+
(the original version of the Thomson-Reuters ResearcherID (RI); authors of
32+
some older publications might have an RID but not an RI). These are not
33+
included in the default output of `references_read`; to include
34+
them use `include_all = TRUE`.
1135

12-
* `references_read` no longer extracts some rarely used field codes: GE, LT, MC, MI, and TA
36+
* `references_read` no longer extracts some rarely used field codes:
37+
GE, LT, MC, MI, and TA
1338

14-
* The following field codes are now returned by default when using `references_read`: DT (Document Type), ID (Keywords Plus), IS (Issue), JI (ISO abbreviated source code), and NR (number of references cited by the article).
39+
* The following field codes are now returned by default when using
40+
`references_read`: DT (Document Type), ID (Keywords Plus), IS (Issue),
41+
JI (ISO abbreviated source code), and NR (number of references cited
42+
by the article).
1543

1644

1745
refsplitr 1.0.1 (2024-07-23)
1846
=========================
1947

2048
### NEW FEATURES
2149

22-
* output of `plot_net_country()` now includes a list of any authors that have a lat-lon but no country (called with `products$fixable_countries`).Users can correct these and re-run the visualization to include them in the graph.
50+
* output of `plot_net_country()` now includes a list of any authors that have
51+
a lat-lon but no country (called with `products$fixable_countries`).Users can
52+
correct these and re-run the visualization to include them in the graph.
2353

2454
### DEPRECATED AND DEFUNCT
2555

26-
* Removed the dependency on deprecated package [maptools](https://cran.r-project.org/web/packages/maptools/index.html). [(#90)](https://github.com/ropensci/refsplitr/issues/90)
56+
* Removed the dependency on deprecated package
57+
[maptools](https://cran.r-project.org/web/packages/maptools/index.html).
58+
[(#90)](https://github.com/ropensci/refsplitr/issues/90)
2759

2860
### DOCUMENTATION FIXES
2961

30-
* Updated README with citation of the _Journal of Open Source Software_ article describing refsplitr.
62+
* Updated README with citation of the _Journal of Open Source Software_
63+
article describing refsplitr.
3164

3265

3366
refsplitr 0.9.0 (2020-01-14)

0 commit comments

Comments
 (0)