diff --git a/GenericQueryP.py b/GenericQueryP.py
index ab971ac..8551803 100644
--- a/GenericQueryP.py
+++ b/GenericQueryP.py
@@ -30,19 +30,16 @@ def getPublicationsPublishedInYear(self, year):
for item in self.queryProcessor:
# For every query processor added to the generic query processor, call the query
partial_result = item.getPublicationsPublishedInYear(year)
- #print(partial_result)
# Concatenate the result of this query (type DataFrame) to the empty df outside of the for-in cycle to *save* the result
complete_result = pd.concat([complete_result,partial_result])
# complete_result is now populated by all the results of the query for every query processor
result = list() # list[Publication]
- #print(complete_result)
# Drop all duplicate values
ids = set() # unordered collection of unique elements, no worries about duplicates
# Scroll the complete_result dataframe
for idx,row in complete_result.iterrows():
ids.add(row["doi"])
- #print(ids)
# Iterate over the cleaned set of DOIs and create a Publication object for each
for item in ids:
# Append the Publication object to the result list
@@ -59,16 +56,13 @@ def getPublicationsByAuthorId(self, orcid):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getPublicationsByAuthorId(orcid)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list() # list[Publication]
- #print(complete_result)
# Drop duplicate ids
ids = set()
for idx,row in complete_result.iterrows():
ids.add(row["doi"])
- #print(ids)
for item in ids:
result.append(createPublicationObj(item))
@@ -141,18 +135,15 @@ def getVenuesByPublisherId(self, crossref):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getVenuesByPublisherId(crossref)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
# complete_result is now populated by all the results of the query for every query processor
result = list() # list[Publication]
- #print(complete_result)
# Drop all duplicate values
ven_name = set() # unordered collection of unique elements, no worries about duplicates
# Scroll the complete_result dataframe
for idx,row in complete_result.iterrows():
ven_name.add(row["publication_venue"])
- #print(ven_name)
# Iterate over the cleaned set of publication venue names and create a Venue object for each
for item in ven_name:
# Append the Publication object to the result list
@@ -169,16 +160,13 @@ def getPublicationInVenue(self, issn_isbn):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getPublicationInVenue(issn_isbn)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list() # list[Publication]
- #print(complete_result)
# Drop duplicate ids
ids = set()
for idx,row in complete_result.iterrows():
ids.add(row["doi"])
- #print(ids)
for item in ids:
result.append(createPublicationObj(item))
@@ -192,11 +180,9 @@ def getJournalArticlesInIssue(self, issue, volume, journalId):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getJournalArticlesInIssue(issue,volume,journalId)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list()
- #print(complete_result)
ids = set()
for idx,row in complete_result.iterrows():
ids.add(row["doi"])
@@ -214,11 +200,9 @@ def getJournalArticlesInVolume(self, volume, journalId):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getJournalArticlesInVolume(volume,journalId)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list()
- #print(complete_result)
ids = set()
for idx,row in complete_result.iterrows():
ids.add(row["doi"])
@@ -236,16 +220,13 @@ def getJournalArticlesInJournal(self, journalId):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getJournalArticlesInJournal(journalId)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list()
- #print(complete_result)
ids = set()
for idx,row in complete_result.iterrows():
ids.add(row["doi"])
- #print(ids)
for item in ids:
result.append(createJournalArticleObj(item))
@@ -259,7 +240,6 @@ def getProceedingsByEvent(self, eventPartialName):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getProceedingsByEvent(eventPartialName)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list()
@@ -267,7 +247,6 @@ def getProceedingsByEvent(self, eventPartialName):
ven_name = set()
for idx,row in complete_result.iterrows():
ven_name.add(row["publication_venue"])
- #print(ven_name)
for item in ven_name:
result.append(createVenueObj(item,"proceedings"))
@@ -282,15 +261,12 @@ def getPublicationAuthors(self, doi):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getPublicationAuthors(doi)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list()
- #print(complete_result)
orcid = set()
for idx,row in complete_result.iterrows():
orcid.add(row["orcid"])
- #print(orcid)
for item in orcid:
result.append(createAuthorObj(item))
@@ -305,15 +281,12 @@ def getPublicationsByAuthorName(self, authorPartialName):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getPublicationsByAuthorName(authorPartialName)
- #print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list()
- #print(complete_result)
ids = set()
for idx,row in complete_result.iterrows():
ids.add(row["doi"])
- #print(ids)
for item in ids:
result.append(createPublicationObj(item))
@@ -328,15 +301,12 @@ def getDistinctPublishersOfPublications(self, doiList):
complete_result = pd.DataFrame()
for item in self.queryProcessor:
partial_result = item.getDistinctPublishersOfPublications(doiList)
- print(partial_result)
complete_result = pd.concat([complete_result,partial_result])
result = list()
- print(complete_result)
crossrefs = set()
for idx,row in complete_result.iterrows():
crossrefs.add(row["crossref"])
- print(crossrefs)
for item in crossrefs:
result.append(createPublisherObj(item))
diff --git a/ModelClasses.py b/ModelClasses.py
index b092a1a..db183b5 100644
--- a/ModelClasses.py
+++ b/ModelClasses.py
@@ -15,21 +15,6 @@ def getIds(self):
return result
-""" id1 = IdentifiableEntity(["10546"])
-print(id1)
-print(type(id1))
-print(id1.getIds())
-
-print("\n------------------------\n")
-
-id2 = IdentifiableEntity(["10546","46351"])
-print("This is id2 \n",id2)
-print(type(id2))
-print(id2.getIds())
-"""
-
-
-
class Person(IdentifiableEntity):
# -- Constructor
def __init__(self, givenName, familyName, identifiers):
@@ -47,15 +32,6 @@ def getFamilyName(self):
return self.familyName
-#person1 = Person("Ahsan","Syed",["Ahsa98"])
-""" print("This is person1",person1)
-print(type(person1))
-print("This is the familyName of person1\n",person1.getFamilyName())
-print("This is the givenName of person1\n",person1.getGivenName())
-print(person1.getIds())
-"""
-#person2 = Person("Francesca","Budel",["FraB99","Fra99"])
-
class Organization(IdentifiableEntity):
# -- Constructor
def __init__(self, name, identifiers):
@@ -69,14 +45,6 @@ def getName(self):
return self.name
-#org1 = Organization("The Belmeloro organization",["belm2023"])
-"""
-print(org1)
-print(type(org1))
-print("This is the name of org1\n",org1.getName())
-print(org1.getIds()) """
-
-
class Venue(IdentifiableEntity):
# -- Constructor
def __init__(self, title, identifiers, publisher):
@@ -96,21 +64,6 @@ def getPublisher(self): # Returns an Organization object
return self.publisher
-#ven1 = Venue("Belmeloro Venue", ["belm0000", "belm1111"], org1)
-"""
-print(ven1)
-print(type(ven1))
-
-print("This is the title of the venue\n",ven1.getTitle())
-print("This is the publisher of the venue",ven1.getPublisher())
-print("This is the ID of the venue", ven1.getIds())
-
-print("------------------------------------ \n ------------------------------")
-
-print("ID OF THE PUBLISHER\n",ven1.getPublisher().getIds())
-print("NAME OF THE PUBLISHER\n",ven1.getPublisher().getName())
-"""
-
class Publication(IdentifiableEntity):
# -- Constructor
def __init__(self, title, identifiers, author, cites, publicationVenue=None, publicationYear=None):
@@ -144,17 +97,6 @@ def getAuthors(self):
result.add(person)
return result
-#pub1 = Publication(1963, "The Name of the Rose", ["abc1001","cba1001"], ven1,[person1,person2],[])
-"""
-print(pub1)
-print(type(pub1))
-print(pub1.getIds())
-print("This is the publication year of the publication\n",pub1.getPublicationYear())
-print("This is the title of the publication",pub1.getTitle())
-print("This is the cited publications of the publication", pub1.getCitedPublications())
-print("This is the publication venue of the publication",pub1.getPublicationVenue())
-print("This is the authors of the publication",pub1.getAuthors())
-"""
class JournalArticle(Publication):
# -- Constructor
@@ -172,20 +114,7 @@ def getIssue(self):
def getVolume(self):
return self.volume
-#journal_article1 = JournalArticle("issue1","volume1",1944,"Journal Article on WW2",["id1","id2"],ven1,[person2],[pub1])
-"""
-print(journal_article1)
-print(type(journal_article1))
-print(journal_article1.getIssue())
-print(journal_article1.getVolume())
-
-print(journal_article1.getAuthors())
-print(journal_article1.getCitedPublications())
-print(journal_article1.getIds())
-print(journal_article1.getPublicationYear())
-print(journal_article1.getTitle())
-print(journal_article1.getPublicationVenue())
-"""
+
class BookChapter(Publication):
# -- Constructor
@@ -199,46 +128,22 @@ def __init__(self, chapterNumber, title, identifiers, author, cites, publication
def getChapterNumber(self):
return self.chapterNumber
-""" book_chapter1 = BookChapter(1,1944,"Book on WW2",["id11","id12"],ven1,[person1],[pub1])
-print(book_chapter1)
-print(type(book_chapter1))
-print(book_chapter1.getChapterNumber())
-
-print(book_chapter1.getAuthors())
-print(book_chapter1.getCitedPublications())
-print(book_chapter1.getIds())
-print(book_chapter1.getPublicationYear())
-print(book_chapter1.getTitle())
-print(book_chapter1.getPublicationVenue())
-print("--------------------- \n ------------------- \n -----------------") """
class ProceedingsPaper(Publication):
pass
-""" proceedings_paper1 = ProceedingsPaper(1963, "The Name of the Rose", ["abc1001","cba1001"], ven1,[person1,person2],[])
-print(proceedings_paper1)
-print(type(proceedings_paper1))
-print("--------------------- \n ------------------- \n -----------------") """
class Journal(Venue):
pass
-""" journal1 = Journal("Belmeloro Venue", ["belm0000", "belm1111"], org1)
-print(journal1)
-print(type(journal1))
-print("--------------------- \n ------------------- \n -----------------") """
class Book(Venue):
pass
-""" book1 = Book("Belmeloro Venue", ["belm0000", "belm1111"], org1)
-print(book1)
-print(type(book1))
-print("--------------------- \n ------------------- \n -----------------") """
class Proceedings(Venue):
# -- Constructor
@@ -251,10 +156,6 @@ def __init__(self, event, title, identifiers, publisher):
def getEvent(self):
return self.event
-""" proceedings1 = Proceedings("Event Belmeloro","Belmeloro Venue", ["belm0000", "belm1111"], org1)
-print(proceedings1)
-print(type(proceedings1))
-print(proceedings1.getEvent()) """
class QueryProcessor(object):
pass
\ No newline at end of file
diff --git a/ogData/graph_other_data.json b/ogData/graph_other_data.json
deleted file mode 100644
index 733943b..0000000
--- a/ogData/graph_other_data.json
+++ /dev/null
@@ -1,11075 +0,0 @@
-{
- "authors": {
- "doi:10.1016/j.websem.2021.100655": [
- {
- "family": "Espinoza-Arias",
- "given": "Paola",
- "orcid": "0000-0002-3938-2064"
- },
- {
- "family": "Garijo",
- "given": "Daniel",
- "orcid": "0000-0003-0454-7145"
- },
- {
- "family": "Corcho",
- "given": "Oscar",
- "orcid": "0000-0002-9260-0753"
- }
- ],
- "doi:10.1007/s10115-017-1100-y": [
- {
- "family": "Diefenbach",
- "given": "Dennis",
- "orcid": "0000-0002-0046-2219"
- }
- ],
- "doi:10.1016/j.websem.2014.03.003": [
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- },
- {
- "family": "Gray",
- "given": "Alasdair J.G.",
- "orcid": "0000-0002-5711-4872"
- },
- {
- "family": "Harland",
- "given": "Lee",
- "orcid": "0000-0003-0461-0028"
- }
- ],
- "doi:10.1093/nar/gkz997": [
- {
- "family": "Shefchek",
- "given": "Kent A",
- "orcid": "0000-0001-6439-2224"
- },
- {
- "family": "Vasilevsky",
- "given": "Nicole",
- "orcid": "0000-0001-5208-3432"
- },
- {
- "family": "Balhoff",
- "given": "James P",
- "orcid": "0000-0002-8688-6599"
- },
- {
- "family": "Jupp",
- "given": "Simon",
- "orcid": "0000-0002-0643-3144"
- },
- {
- "family": "Köhler",
- "given": "Sebastian",
- "orcid": "0000-0002-5316-1399"
- },
- {
- "family": "Robinson",
- "given": "Peter N",
- "orcid": "0000-0002-0736-9199"
- },
- {
- "family": "Munoz-Torres",
- "given": "Monica C",
- "orcid": "0000-0001-8430-6039"
- }
- ],
- "doi:10.3390/publications7030050": [
- {
- "family": "Jansen",
- "given": "Gregory",
- "orcid": "0000-0001-6591-6595"
- }
- ],
- "doi:10.1017/s0269888920000065": [
- {
- "family": "Kotis",
- "given": "Konstantinos I.",
- "orcid": "0000-0001-7838-9691"
- }
- ],
- "doi:10.3390/info11030129": [
- {
- "family": "Espinoza-Arias",
- "given": "Paola",
- "orcid": "0000-0002-3938-2064"
- },
- {
- "family": "Corcho",
- "given": "Oscar",
- "orcid": "0000-0002-9260-0753"
- }
- ],
- "doi:10.1007/s00778-018-0528-3": [
- {
- "family": "Kondylakis",
- "given": "Haridimos",
- "orcid": "0000-0002-9917-4486"
- }
- ],
- "doi:10.21105/joss.02731": [
- {
- "family": "Meroño-Peñuela",
- "given": "Albert",
- "orcid": "0000-0003-4646-5842"
- },
- {
- "family": "Martinez-Ortiz",
- "given": "Carlos",
- "orcid": "0000-0001-5565-7577"
- }
- ],
- "doi:10.1016/j.websem.2014.06.002": [
- {
- "family": "Marx",
- "given": "Edgard",
- "orcid": "0000-0002-3111-9405"
- }
- ],
- "doi:10.1007/s10115-019-01401-x": [
- {
- "family": "Wang",
- "given": "Meng",
- "orcid": "0000-0002-2293-1709"
- }
- ],
- "doi:10.1007/978-3-030-30793-6_22": [
- {
- "family": "Li",
- "given": "Yuan-Fang",
- "orcid": "0000-0003-4651-2821"
- }
- ],
- "doi:10.1007/978-3-030-33220-4_25": [
- {
- "family": "Gusmita",
- "given": "Ria Hari",
- "orcid": "0000-0003-4808-850X"
- },
- {
- "family": "Jalota",
- "given": "Rricha",
- "orcid": "0000-0003-1517-6394"
- },
- {
- "family": "Ngonga Ngomo",
- "given": "Axel-Cyrille",
- "orcid": "0000-0001-7112-3516"
- },
- {
- "family": "Usbeck",
- "given": "Ricardo",
- "orcid": "0000-0002-0191-7211"
- }
- ],
- "doi:10.1080/17538947.2020.1738568": [
- {
- "family": "Scheider",
- "given": "Simon",
- "orcid": "0000-0002-2267-4810"
- }
- ],
- "doi:10.1007/s10462-020-09826-5": [
- {
- "family": "Da Silva",
- "given": "José Wellington Franco",
- "orcid": "0000-0001-9093-0428"
- },
- {
- "family": "Venceslau",
- "given": "Amanda Drielly Pires",
- "orcid": "0000-0003-4118-4224"
- },
- {
- "family": "Sales",
- "given": "Juliano Efson",
- "orcid": "0000-0003-2717-6949"
- },
- {
- "family": "Maia",
- "given": "José Gilvan Rodrigues",
- "orcid": "0000-0002-2607-2729"
- },
- {
- "family": "Pinheiro",
- "given": "Vládia Célia Monteiro",
- "orcid": "0000-0002-9851-8304"
- }
- ],
- "doi:10.1007/978-3-030-49461-2_25": [
- {
- "family": "Diefenbach",
- "given": "Dennis",
- "orcid": "0000-0002-0046-2219"
- }
- ],
- "doi:10.1007/s10462-020-09866-x": [
- {
- "family": "Deriu",
- "given": "Jan",
- "orcid": "0000-0002-8405-1344"
- }
- ],
- "doi:10.1007/s10796-020-10035-2": [
- {
- "family": "Kafle",
- "given": "Sabin",
- "orcid": "0000-0003-2141-4360"
- }
- ],
- "doi:10.1007/978-3-030-60276-5_25": [
- {
- "family": "Kuleshov",
- "given": "Sergey",
- "orcid": "0000-0002-8454-5598"
- },
- {
- "family": "Zaytseva",
- "given": "Alexandra",
- "orcid": "0000-0002-1345-8550"
- },
- {
- "family": "Nenausnikov",
- "given": "Konstantin",
- "orcid": "0000-0002-4628-2096"
- }
- ],
- "doi:10.1007/978-3-030-54956-5_2": [
- {
- "family": "Jaradeh",
- "given": "Mohamad Yaser",
- "orcid": "0000-0001-8777-2780"
- },
- {
- "family": "Stocker",
- "given": "Markus",
- "orcid": "0000-0001-5492-3212"
- },
- {
- "family": "Auer",
- "given": "Sören",
- "orcid": "0000-0002-0698-2864"
- }
- ],
- "doi:10.1007/s11280-020-00836-5": [
- {
- "family": "Liu",
- "given": "Yu",
- "orcid": "0000-0002-5080-9102"
- }
- ],
- "doi:10.3390/a13090217": [
- {
- "family": "Kondylakis",
- "given": "Haridimos",
- "orcid": "0000-0002-9917-4486"
- }
- ],
- "doi:10.1007/978-3-030-62466-8_1": [
- {
- "family": "Rose",
- "given": "Jewgeni",
- "orcid": "0000-0002-3053-3962"
- },
- {
- "family": "Lehmann",
- "given": "Jens",
- "orcid": "0000-0001-9108-4278"
- }
- ],
- "doi:10.1016/j.eswa.2020.113205": [
- {
- "family": "Rahmani",
- "given": "Amir Masoud",
- "orcid": "0000-0001-8641-6119"
- }
- ],
- "doi:10.1007/s00521-020-05491-5": [
- {
- "family": "Obukhov",
- "given": "Artem D.",
- "orcid": "0000-0002-3450-5213"
- }
- ],
- "doi:10.1002/bse.2855": [
- {
- "family": "Garzaâ€Reyes",
- "given": "Jose Arturo",
- "orcid": "0000-0002-5493-877X"
- }
- ],
- "doi:10.3390/info12040160": [
- {
- "family": "Mccrae",
- "given": "John P.",
- "orcid": "0000-0002-7227-1331"
- },
- {
- "family": "Pereira",
- "given": "Bianca",
- "orcid": "0000-0002-6734-3580"
- },
- {
- "family": "Buitelaar",
- "given": "Paul",
- "orcid": "0000-0001-7238-9842"
- },
- {
- "family": "Sarkar",
- "given": "Rajdeep",
- "orcid": "0000-0002-3942-2978"
- }
- ],
- "doi:10.1002/widm.1412": [
- {
- "family": "Momtazi",
- "given": "Saeedeh",
- "orcid": "0000-0002-8110-1342"
- }
- ],
- "doi:10.3390/info12070271": [
- {
- "family": "Krisnadhi",
- "given": "Adila Alfa",
- "orcid": "0000-0003-0745-6804"
- }
- ],
- "doi:10.1108/dta-12-2020-0312": [
- {
- "family": "Wang",
- "given": "Shaofei",
- "orcid": "0000-0002-6378-4792"
- },
- {
- "family": "Dang",
- "given": "Depeng",
- "orcid": "0000-0001-7923-9329"
- }
- ],
- "doi:10.1007/978-3-030-80418-3_17": [
- {
- "family": "Marx",
- "given": "Edgard",
- "orcid": "0000-0002-3111-9405"
- }
- ],
- "doi:10.1007/978-3-030-82147-0_16": [
- {
- "family": "Perevalov",
- "given": "Aleksandr",
- "orcid": "0000-0002-6803-3357"
- },
- {
- "family": "Both",
- "given": "Andreas",
- "orcid": "0000-0002-9177-5463"
- }
- ],
- "doi:10.1016/j.knosys.2021.107626": [
- {
- "family": "Bakhshi",
- "given": "Mahdi",
- "orcid": "0000-0001-9110-0557"
- },
- {
- "family": "Nematbakhsh",
- "given": "Mohammadali",
- "orcid": "0000-0002-4374-9228"
- },
- {
- "family": "Mohsenzadeh",
- "given": "Mehran",
- "orcid": "0000-0001-6835-409X"
- },
- {
- "family": "Rahmani",
- "given": "Amir Masoud",
- "orcid": "0000-0001-8641-6119"
- }
- ],
- "doi:10.1007/s10791-021-09398-0": [
- {
- "family": "Trabelsi",
- "given": "Mohamed",
- "orcid": "0000-0001-5841-5012"
- }
- ],
- "doi:10.1016/j.websem.2021.100681": [
- {
- "family": "Yu",
- "given": "Xin",
- "orcid": "0000-0002-5420-1209"
- },
- {
- "family": "Qu",
- "given": "Yuzhong",
- "orcid": "0000-0003-2777-8149"
- }
- ],
- "doi:10.1155/2014/506740": [
- {
- "family": "Colomo-Palacios",
- "given": "Ricardo",
- "orcid": "0000-0002-1555-9726"
- },
- {
- "family": "GarcÃa-Sánchez",
- "given": "Francisco",
- "orcid": "0000-0003-2667-5359"
- }
- ],
- "doi:10.1007/s10845-018-1427-6": [
- {
- "family": "Järvenpää",
- "given": "Eeva",
- "orcid": "0000-0001-6513-135X"
- },
- {
- "family": "Siltala",
- "given": "Niko",
- "orcid": "0000-0001-6456-1251"
- },
- {
- "family": "Lanz",
- "given": "Minna",
- "orcid": "0000-0003-2182-4669"
- }
- ],
- "doi:10.1080/20964471.2019.1661662": [
- {
- "family": "Sun",
- "given": "Kai",
- "orcid": "0000-0002-0343-6032"
- },
- {
- "family": "Song",
- "given": "Jia",
- "orcid": "0000-0002-9051-1925"
- }
- ],
- "doi:10.3390/electronics7120371": [
- {
- "family": "Mcheick",
- "given": "Hamid",
- "orcid": "0000-0002-2589-8609"
- }
- ],
- "doi:10.1080/19401493.2018.1492020": [
- {
- "family": "Mitterhofer",
- "given": "Matthias",
- "orcid": "0000-0003-2814-5060"
- },
- {
- "family": "Schneider",
- "given": "Georg Ferdinand",
- "orcid": "0000-0002-2033-859X"
- },
- {
- "family": "Steiger",
- "given": "Simone",
- "orcid": "0000-0002-4161-8857"
- }
- ],
- "doi:10.3233/ds-170010": [
- {
- "family": "Kuhn",
- "given": "Tobias",
- "orcid": "0000-0002-1267-0234"
- },
- {
- "family": "Dumontier",
- "given": "Michel",
- "orcid": "0000-0003-4727-9435"
- }
- ],
- "doi:10.4018/ijossp.2019040101": [
- {
- "family": "Marir",
- "given": "Toufik",
- "orcid": "0000-0002-8709-0680"
- },
- {
- "family": "Gherbi",
- "given": "Abdelouahed",
- "orcid": "0000-0001-9117-5743"
- }
- ],
- "doi:10.4018/ijpada.2014010107": [
- {
- "family": "Janssen",
- "given": "Marijn",
- "orcid": "0000-0001-6211-8790"
- }
- ],
- "doi:10.4018/ijsita.2017100105": [
- {
- "family": "Bouchiha",
- "given": "Djelloul",
- "orcid": "0000-0001-7314-4329"
- }
- ],
- "doi:10.4018/jdsst.2011010102": [
- {
- "family": "Alor-Hernández",
- "given": "Giner",
- "orcid": "0000-0003-3296-0981"
- }
- ],
- "doi:10.4028/www.scientific.net/amm.809-810.1281": [
- {
- "family": "Petrovan",
- "given": "Adrian",
- "orcid": "0000-0001-6877-027X"
- }
- ],
- "doi:10.1007/s41870-019-00283-0": [
- {
- "family": "John",
- "given": "Antony",
- "orcid": "0000-0002-3264-7672"
- }
- ],
- "doi:10.1177/2055207618804927": [
- {
- "family": "Bilici",
- "given": "Eda",
- "orcid": "0000-0002-3998-9915"
- },
- {
- "family": "Despotou",
- "given": "George",
- "orcid": "0000-0003-3437-6412"
- }
- ],
- "doi:10.1007/s12136-018-0370-7": [
- {
- "family": "Tambassi",
- "given": "Timothy",
- "orcid": "0000-0001-6460-5920"
- }
- ],
- "doi:10.1007/s12145-019-00398-9": [
- {
- "family": "Sermet",
- "given": "Yusuf",
- "orcid": "0000-0003-1516-8335"
- }
- ],
- "doi:10.1007/978-3-319-91189-2_11": [
- {
- "family": "GarcÃa-Sánchez",
- "given": "Francisco",
- "orcid": "0000-0003-2667-5359"
- },
- {
- "family": "GarcÃa-DÃaz",
- "given": "José Antonio",
- "orcid": "0000-0002-3651-2660"
- },
- {
- "family": "Gómez-BerbÃs",
- "given": "Juan Miguel",
- "orcid": "0000-0003-3902-9452"
- },
- {
- "family": "Valencia-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.4258/hir.2018.24.4.376": [
- {
- "family": "Vargas-Lombardo",
- "given": "Miguel",
- "orcid": "0000-0002-2074-2939"
- }
- ],
- "doi:10.1155/2015/734984": [
- {
- "family": "Ren",
- "given": "Yi",
- "orcid": "0000-0002-3665-700X"
- }
- ],
- "doi:10.1186/s41039-019-0105-4": [
- {
- "family": "Samuelsen",
- "given": "Jeanette",
- "orcid": "0000-0002-8084-0258"
- }
- ],
- "doi:10.1186/s41239-019-0146-1": [
- {
- "family": "Romero",
- "given": "Lucila",
- "orcid": "0000-0001-5345-7627"
- }
- ],
- "doi:10.1007/978-3-030-00940-3_15": [
- {
- "family": "Guedea-Noriega",
- "given": "Héctor Hiram",
- "orcid": "0000-0003-4055-2312"
- },
- {
- "family": "GarcÃa-Sánchez",
- "given": "Francisco",
- "orcid": "0000-0003-2667-5359"
- }
- ],
- "doi:10.1007/978-3-030-00940-3_6": [
- {
- "family": "Bazán-Vera",
- "given": "William",
- "orcid": "0000-0002-9479-1944"
- },
- {
- "family": "Samaniego-Cobo",
- "given": "Teresa",
- "orcid": "0000-0003-1425-3394"
- },
- {
- "family": "Anchundia",
- "given": "Silvia Medina",
- "orcid": "0000-0002-8593-4202"
- },
- {
- "family": "Alarcón-Salvatierra",
- "given": "Pablo",
- "orcid": "0000-0002-3964-1732"
- }
- ],
- "doi:10.3390/app9122553": [
- {
- "family": "Butt",
- "given": "Shahid I.",
- "orcid": "0000-0002-6020-1512"
- }
- ],
- "doi:10.1590/1981-5344/3306": [
- {
- "family": "Sérgio",
- "given": "Marina Carradore",
- "orcid": "0000-0002-3942-2249"
- }
- ],
- "doi:10.1007/s00530-019-00610-2": [
- {
- "family": "Sánchez-Nielsen",
- "given": "Elena",
- "orcid": "0000-0003-2114-4137"
- }
- ],
- "doi:10.1002/cpe.4489": [
- {
- "family": "Lu",
- "given": "Mingming",
- "orcid": "0000-0002-4762-1280"
- }
- ],
- "doi:10.1111/exsy.12291": [
- {
- "family": "Yurin",
- "given": "Aleksandr Yurievich",
- "orcid": "0000-0001-9089-5730"
- },
- {
- "family": "Dorodnykh",
- "given": "Nikita Olegovich",
- "orcid": "0000-0001-7794-4462"
- },
- {
- "family": "Nikolaychuk",
- "given": "Olga Anatolievna",
- "orcid": "0000-0002-5186-0073"
- }
- ],
- "doi:10.1111/exsy.12355": [
- {
- "family": "Bayoudhi",
- "given": "Leila",
- "orcid": "0000-0002-8659-043X"
- }
- ],
- "doi:10.1111/exsy.12378": [
- {
- "family": "Meditskos",
- "given": "Georgios",
- "orcid": "0000-0003-4242-5245"
- },
- {
- "family": "Kontopoulos",
- "given": "Efstratios",
- "orcid": "0000-0002-4435-2521"
- },
- {
- "family": "Vrochidis",
- "given": "Stefanos",
- "orcid": "0000-0002-2505-9178"
- },
- {
- "family": "Kompatsiaris",
- "given": "Ioannis",
- "orcid": "0000-0001-6447-9020"
- }
- ],
- "doi:10.1111/exsy.12380": [
- {
- "family": "Öztürk",
- "given": "Övünç",
- "orcid": "0000-0001-7127-7902"
- }
- ],
- "doi:10.3390/ijgi6120386": [
- {
- "family": "Lucieer",
- "given": "Arko",
- "orcid": "0000-0002-9468-4516"
- }
- ],
- "doi:10.1111/cgf.13324": [
- {
- "family": "Andrienko",
- "given": "N.",
- "orcid": "0000-0003-3313-1560"
- },
- {
- "family": "Andrienko",
- "given": "G.",
- "orcid": "0000-0002-8574-6295"
- }
- ],
- "doi:10.1007/978-3-030-69992-5_1": [
- {
- "family": "Zhang",
- "given": "Jing",
- "orcid": "0000-0003-2541-4923"
- }
- ],
- "doi:10.1007/978-3-658-33466-6_32": [
- {
- "family": "Klauß",
- "given": "Manuel",
- "orcid": "0000-0001-7450-0882"
- },
- {
- "family": "Friedel",
- "given": "Sven",
- "orcid": "0000-0002-9035-3728"
- }
- ],
- "doi:10.1016/j.inffus.2021.01.007": [
- {
- "family": "Osman",
- "given": "Inès",
- "orcid": "0000-0002-8349-7272"
- },
- {
- "family": "Ben Yahia",
- "given": "Sadok",
- "orcid": "0000-0001-8939-8948"
- }
- ],
- "doi:10.3390/ijgi10060358": [
- {
- "family": "Wang",
- "given": "Xin",
- "orcid": "0000-0003-3569-2126"
- }
- ],
- "doi:10.1007/978-3-030-71292-1_39": [
- {
- "family": "Wang",
- "given": "Hao",
- "orcid": "0000-0002-0131-0823"
- },
- {
- "family": "Li",
- "given": "Yueyan",
- "orcid": "0000-0002-6117-3576"
- },
- {
- "family": "Deng",
- "given": "Sanhong",
- "orcid": "0000-0002-6910-3935"
- }
- ],
- "doi:10.3390/en14072024": [
- {
- "family": "Pritoni",
- "given": "Marco",
- "orcid": "0000-0003-4200-6905"
- },
- {
- "family": "Paine",
- "given": "Drew",
- "orcid": "0000-0003-0711-9744"
- },
- {
- "family": "Fierro",
- "given": "Gabriel",
- "orcid": "0000-0002-2081-4525"
- },
- {
- "family": "Mosiman",
- "given": "Cory",
- "orcid": "0000-0002-3070-3300"
- },
- {
- "family": "Poplawski",
- "given": "Michael",
- "orcid": "0000-0001-8879-5407"
- }
- ],
- "doi:10.1016/j.compind.2021.103496": [
- {
- "family": "Hodkiewicz",
- "given": "Melinda",
- "orcid": "0000-0002-7336-3932"
- },
- {
- "family": "Woods",
- "given": "Caitlin",
- "orcid": "0000-0001-7829-7674"
- }
- ],
- "doi:10.1186/s13174-021-00135-w": [
- {
- "family": "Hocker",
- "given": "Julian",
- "orcid": "0000-0003-3417-9486"
- }
- ],
- "doi:10.1080/15230406.2021.1952109": [
- {
- "family": "Vilches-Blázquez",
- "given": "Luis M.",
- "orcid": "0000-0001-5799-469X"
- },
- {
- "family": "Ramos",
- "given": "José Ãngel",
- "orcid": "0000-0002-2463-2059"
- }
- ],
- "doi:10.1007/978-3-030-86970-0_23": [
- {
- "family": "Wilson",
- "given": "R. S. I.",
- "orcid": "0000-0002-1249-0372"
- },
- {
- "family": "Goonetillake",
- "given": "J. S.",
- "orcid": "0000-0003-0839-4529"
- },
- {
- "family": "Indika",
- "given": "W. A.",
- "orcid": "0000-0002-4749-9190"
- },
- {
- "family": "Ginige",
- "given": "Athula",
- "orcid": "0000-0002-7445-588X"
- }
- ],
- "doi:10.1017/s0269888921000114": [
- {
- "family": "Grislin-Le Strugeon",
- "given": "Emmanuelle",
- "orcid": "0000-0002-8429-4012"
- },
- {
- "family": "Marcal De Oliveira",
- "given": "Kathia",
- "orcid": "0000-0001-8146-5966"
- },
- {
- "family": "Zekri",
- "given": "Dorsaf",
- "orcid": "0000-0003-4527-8922"
- },
- {
- "family": "Thilliez",
- "given": "Marie",
- "orcid": "0000-0003-4097-3301"
- }
- ],
- "doi:10.1016/j.jcp.2021.110624": [
- {
- "family": "Zhang",
- "given": "Dongxiao",
- "orcid": "0000-0001-6930-5994"
- },
- {
- "family": "Wang",
- "given": "Nanzhe",
- "orcid": "0000-0002-5177-946X"
- },
- {
- "family": "Zhang",
- "given": "Haoran",
- "orcid": "0000-0002-4641-0641"
- }
- ],
- "doi:10.1007/978-3-030-82430-3_7": [
- {
- "family": "Pauwels",
- "given": "Pieter",
- "orcid": "0000-0001-8020-4609"
- },
- {
- "family": "Costin",
- "given": "Aaron",
- "orcid": "0000-0003-4263-8101"
- },
- {
- "family": "Rasmussen",
- "given": "Mads Holten",
- "orcid": "0000-0002-6519-7057"
- }
- ],
- "doi:10.1016/j.cageo.2021.105005": [
- {
- "family": "Cicconeto",
- "given": "Fernando",
- "orcid": "0000-0001-6774-1039"
- },
- {
- "family": "Alvarenga",
- "given": "Renata Dos Santos",
- "orcid": "0000-0002-2671-5552"
- },
- {
- "family": "Carbonera",
- "given": "Joel Luis",
- "orcid": "0000-0002-4499-3601"
- }
- ],
- "doi:10.3390/su132413844": [
- {
- "family": "Pietra",
- "given": "Caterina",
- "orcid": "0000-0001-5195-4494"
- },
- {
- "family": "De Lotto",
- "given": "Roberto",
- "orcid": "0000-0002-0532-2506"
- },
- {
- "family": "Bahshwan",
- "given": "Rakan",
- "orcid": "0000-0002-5947-3449"
- }
- ],
- "doi:10.1108/oir-11-2020-0497": [
- {
- "family": "Mohamad",
- "given": "Ummul Hanan",
- "orcid": "0000-0002-2708-1678"
- }
- ],
- "doi:10.3390/electronics10212616": [
- {
- "family": "Ferilli",
- "given": "Stefano",
- "orcid": "0000-0003-1118-0601"
- }
- ],
- "doi:10.3390/app11219825": [
- {
- "family": "Dworschak",
- "given": "Fabian",
- "orcid": "0000-0001-6987-4927"
- },
- {
- "family": "Schleich",
- "given": "Benjamin",
- "orcid": "0000-0002-3638-4179"
- },
- {
- "family": "Wartzack",
- "given": "Sandro",
- "orcid": "0000-0002-0244-5033"
- }
- ],
- "doi:10.3390/en14206692": [
- {
- "family": "Wierling",
- "given": "August",
- "orcid": "0000-0002-7443-7593"
- },
- {
- "family": "Schwanitz",
- "given": "Valeria Jana",
- "orcid": "0000-0002-8752-2754"
- },
- {
- "family": "Bałazińska",
- "given": "Maria",
- "orcid": "0000-0001-7508-6118"
- },
- {
- "family": "Demir",
- "given": "Muhittin Hakan",
- "orcid": "0000-0002-0412-3724"
- },
- {
- "family": "Dennis",
- "given": "Richard",
- "orcid": "0000-0002-4472-7194"
- },
- {
- "family": "Fernández-Peruchena",
- "given": "Carlos M.",
- "orcid": "0000-0003-4801-4375"
- },
- {
- "family": "GÅ‚adysz",
- "given": "Paweł",
- "orcid": "0000-0003-0219-6580"
- },
- {
- "family": "Hoyer-Klick",
- "given": "Carsten",
- "orcid": "0000-0002-7273-9176"
- },
- {
- "family": "Joshi",
- "given": "Kevin",
- "orcid": "0000-0003-0016-5289"
- },
- {
- "family": "Kruczek",
- "given": "Mariusz",
- "orcid": "0000-0002-5052-3729"
- },
- {
- "family": "Lacroix",
- "given": "David",
- "orcid": "0000-0001-6067-8524"
- },
- {
- "family": "Markowska",
- "given": "Małgorzata",
- "orcid": "0000-0002-9105-6856"
- },
- {
- "family": "Mayo-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0002-0151-3954"
- },
- {
- "family": "Morrison",
- "given": "Robbie",
- "orcid": "0000-0003-1363-2560"
- },
- {
- "family": "Paier",
- "given": "Manfred",
- "orcid": "0000-0002-4648-4819"
- },
- {
- "family": "Peronato",
- "given": "Giuseppe",
- "orcid": "0000-0002-2992-355X"
- },
- {
- "family": "Suna",
- "given": "Demet",
- "orcid": "0000-0001-6220-0946"
- },
- {
- "family": "Süß",
- "given": "Wolfgang",
- "orcid": "0000-0003-2785-7736"
- },
- {
- "family": "Fernandez Vanoni",
- "given": "Maria Luisa",
- "orcid": "0000-0001-7152-4037"
- },
- {
- "family": "Vasiljevic",
- "given": "Nikola",
- "orcid": "0000-0002-9381-9693"
- }
- ],
- "doi:10.1080/00207543.2021.2002967": [
- {
- "family": "Rožanec",
- "given": "Jože M.",
- "orcid": "0000-0002-3665-639X"
- },
- {
- "family": "Lu",
- "given": "Jinzhi",
- "orcid": "0000-0001-5044-2921"
- },
- {
- "family": "Mladenić",
- "given": "Dunja",
- "orcid": "0000-0003-4480-082X"
- },
- {
- "family": "Fortuna",
- "given": "Blaž",
- "orcid": "0000-0002-8585-9388"
- },
- {
- "family": "Zheng",
- "given": "Xiaochen",
- "orcid": "0000-0003-1506-3314"
- },
- {
- "family": "Kiritsis",
- "given": "Dimitris",
- "orcid": "0000-0003-3660-9187"
- }
- ],
- "doi:10.3390/app12010143": [
- {
- "family": "Mckensy-Sambola",
- "given": "Dexon",
- "orcid": "0000-0002-3121-0831"
- },
- {
- "family": "RodrÃguez-GarcÃa",
- "given": "Miguel Ãngel",
- "orcid": "0000-0001-6244-6532"
- },
- {
- "family": "GarcÃa-Sánchez",
- "given": "Francisco",
- "orcid": "0000-0003-2667-5359"
- },
- {
- "family": "Valencia-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.1007/978-3-030-89811-3_20": [
- {
- "family": "Saniei",
- "given": "Rana",
- "orcid": "0000-0002-4773-7961"
- }
- ],
- "doi:10.1016/j.is.2021.101967": [
- {
- "family": "SperlÃ",
- "given": "Giancarlo",
- "orcid": "0000-0003-4033-3777"
- }
- ],
- "doi:10.3390/app12010287": [
- {
- "family": "Wang",
- "given": "Fengxiang",
- "orcid": "0000-0002-7383-4634"
- }
- ],
- "doi:10.4018/978-1-6684-3702-5.ch037": [
- {
- "family": "Sajja",
- "given": "Priti Srinivas",
- "orcid": "0000-0002-9676-0885"
- }
- ],
- "doi:10.1016/j.eswa.2019.04.009": [
- {
- "family": "Barreiros",
- "given": "Emanoel Francisco Spósito",
- "orcid": "0000-0002-7806-3189"
- }
- ],
- "doi:10.1016/j.eswa.2019.112965": [
- {
- "family": "Yoo",
- "given": "Soyeop",
- "orcid": "0000-0002-5058-0002"
- }
- ],
- "doi:10.1016/j.jss.2018.09.069": [
- {
- "family": "Nabli",
- "given": "Hajer",
- "orcid": "0000-0002-3603-251X"
- }
- ],
- "doi:10.1007/s10010-021-00466-x": [
- {
- "family": "Strack",
- "given": "Bernhard",
- "orcid": "0000-0002-1815-1136"
- }
- ],
- "doi:10.3390/info12060236": [
- {
- "family": "Zhu",
- "given": "Ling",
- "orcid": "0000-0001-7783-4175"
- }
- ],
- "doi:10.3390/app11062813": [
- {
- "family": "Colucci",
- "given": "Elisabetta",
- "orcid": "0000-0001-8635-3066"
- },
- {
- "family": "Xing",
- "given": "Xufeng",
- "orcid": "0000-0003-1143-4181"
- },
- {
- "family": "Mostafavi",
- "given": "Mir Abolfazl",
- "orcid": "0000-0002-3688-6638"
- },
- {
- "family": "Noardo",
- "given": "Francesca",
- "orcid": "0000-0003-2269-5336"
- },
- {
- "family": "Spanò",
- "given": "Antonia",
- "orcid": "0000-0003-4243-7959"
- }
- ],
- "doi:10.1007/s40194-021-01151-x": [
- {
- "family": "Fabry",
- "given": "Cagtay",
- "orcid": "0000-0002-0788-8079"
- },
- {
- "family": "Pittner",
- "given": "Andreas",
- "orcid": "0000-0002-5019-7775"
- },
- {
- "family": "Hirthammer",
- "given": "Volker",
- "orcid": "0000-0002-0160-969X"
- },
- {
- "family": "Rethmeier",
- "given": "Michael",
- "orcid": "0000-0001-8123-6696"
- }
- ],
- "doi:10.1007/978-3-030-67708-4_5": [
- {
- "family": "Torrecilla-GarcÃa",
- "given": "J. A.",
- "orcid": "0000-0002-4179-0008"
- },
- {
- "family": "Pardo-Ferreira",
- "given": "M. C.",
- "orcid": "0000-0002-0385-5683"
- },
- {
- "family": "MartÃnez-Rojas",
- "given": "M.",
- "orcid": "0000-0002-7050-3629"
- },
- {
- "family": "Rubio-Romero",
- "given": "J. C.",
- "orcid": "0000-0002-5122-7526"
- }
- ],
- "doi:10.1016/j.comcom.2021.04.024": [
- {
- "family": "Hai",
- "given": "Nan",
- "orcid": "0000-0001-5114-9348"
- }
- ],
- "doi:10.1007/978-3-030-80847-1_9": [
- {
- "family": "Mercier-Laurent",
- "given": "Eunika",
- "orcid": "0000-0003-2303-7263"
- },
- {
- "family": "Talens",
- "given": "Guilaine",
- "orcid": "0000-0002-3919-5840"
- },
- {
- "family": "Thivant",
- "given": "Eric",
- "orcid": "0000-0003-0314-3720"
- }
- ],
- "doi:10.1080/0194262x.2021.1920555": [
- {
- "family": "Ye",
- "given": "Yong",
- "orcid": "0000-0002-7626-397X"
- }
- ],
- "doi:10.7466/jfbl.2020.38.4.1": [
- {
- "family": "Lee",
- "given": "Jeenkyoung",
- "orcid": "0000-0002-8569-7155"
- },
- {
- "family": "Lee",
- "given": "Jaerim",
- "orcid": "0000-0002-3328-9117"
- },
- {
- "family": "Park",
- "given": "Sunyoung",
- "orcid": "0000-0002-9816-5094"
- }
- ],
- "doi:10.3390/jrfm14060238": [
- {
- "family": "Abeysekera",
- "given": "Indra",
- "orcid": "0000-0002-1098-0562"
- }
- ],
- "doi:10.4018/978-1-7998-6792-0.ch005": [
- {
- "family": "Pal",
- "given": "Kamalendu",
- "orcid": "0000-0001-7158-6481"
- },
- {
- "family": "Williams",
- "given": "Idongesit",
- "orcid": "0000-0002-5398-3579"
- }
- ],
- "doi:10.1111/exsy.12748": [
- {
- "family": "Sánchezâ€Nielsen",
- "given": "Elena",
- "orcid": "0000-0003-2114-4137"
- }
- ],
- "doi:10.3390/ani11010145": [
- {
- "family": "Tschirren",
- "given": "Linda",
- "orcid": "0000-0001-5272-421X"
- },
- {
- "family": "Güler",
- "given": "Ali Cem",
- "orcid": "0000-0002-7421-5755"
- },
- {
- "family": "Segner",
- "given": "Helmut",
- "orcid": "0000-0002-1783-1295"
- },
- {
- "family": "Refardt",
- "given": "Dominik",
- "orcid": "0000-0001-9048-144X"
- }
- ],
- "doi:10.3390/axioms10020093": [
- {
- "family": "Solares",
- "given": "Efrain",
- "orcid": "0000-0003-1310-8638"
- },
- {
- "family": "Cruz-Reyes",
- "given": "Laura",
- "orcid": "0000-0002-4541-1642"
- }
- ],
- "doi:10.4018/978-1-7998-6874-3.ch006": [
- {
- "family": "Pal",
- "given": "Kamalendu",
- "orcid": "0000-0001-7158-6481"
- }
- ],
- "doi:10.3390/encyclopedia1010015": [
- {
- "family": "Machado",
- "given": "LuÃs Miguel Oliveira",
- "orcid": "0000-0003-3403-5618"
- }
- ],
- "doi:10.1016/j.compind.2020.103374": [
- {
- "family": "Dimassi",
- "given": "Saoussen",
- "orcid": "0000-0002-2418-8680"
- },
- {
- "family": "Demoly",
- "given": "Frédéric",
- "orcid": "0000-0002-5825-6573"
- },
- {
- "family": "Gomes",
- "given": "Samuel",
- "orcid": "0000-0003-3344-2481"
- }
- ],
- "doi:10.1017/s0890060421000147": [
- {
- "family": "Zhu",
- "given": "Siyu",
- "orcid": "0000-0003-4645-3681"
- }
- ],
- "doi:10.3390/app11125633": [
- {
- "family": "Steindl",
- "given": "Gernot",
- "orcid": "0000-0002-9035-9206"
- },
- {
- "family": "Kastner",
- "given": "Wolfgang",
- "orcid": "0000-0001-5420-404X"
- }
- ],
- "doi:10.3390/met11071025": [
- {
- "family": "Saldaña",
- "given": "Manuel",
- "orcid": "0000-0001-9265-1529"
- },
- {
- "family": "Flores",
- "given": "VÃctor",
- "orcid": "0000-0002-6995-9434"
- },
- {
- "family": "Robles",
- "given": "Pedro",
- "orcid": "0000-0002-8312-7554"
- },
- {
- "family": "Moraga",
- "given": "Carlos",
- "orcid": "0000-0001-6620-5787"
- }
- ],
- "doi:10.1007/978-3-030-79150-6_10": [
- {
- "family": "Humm",
- "given": "Bernhard G.",
- "orcid": "0000-0001-7805-1981"
- },
- {
- "family": "Zender",
- "given": "Alexander",
- "orcid": "0000-0002-6956-9049"
- }
- ],
- "doi:10.1111/nbu.12482": [
- {
- "family": "Wilsonâ€Barnes",
- "given": "S.",
- "orcid": "0000-0001-9945-4800"
- }
- ],
- "doi:10.1177/01655515211022185": [
- {
- "family": "Wei",
- "given": "Tong",
- "orcid": "0000-0002-4159-6248"
- }
- ],
- "doi:10.1007/s11069-021-04742-5": [
- {
- "family": "Liu",
- "given": "Xiaohui",
- "orcid": "0000-0001-7087-2478"
- }
- ],
- "doi:10.3390/asi4010021": [
- {
- "family": "Kouamé",
- "given": "Konan-Marcelin",
- "orcid": "0000-0002-3384-2445"
- },
- {
- "family": "Mcheick",
- "given": "Hamid",
- "orcid": "0000-0002-2589-8609"
- }
- ],
- "doi:10.3390/electronics10080905": [
- {
- "family": "GarcÃa-Sánchez",
- "given": "Francisco",
- "orcid": "0000-0003-2667-5359"
- },
- {
- "family": "Valencia-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.3390/app11157056": [
- {
- "family": "Moskal",
- "given": "Jakub",
- "orcid": "0000-0001-6467-773X"
- },
- {
- "family": "Kokar",
- "given": "Mieczyslaw M.",
- "orcid": "0000-0001-9243-3089"
- }
- ],
- "doi:10.1007/978-3-030-79022-6_10": [
- {
- "family": "Gal",
- "given": "Graham",
- "orcid": "0000-0001-6526-9367"
- },
- {
- "family": "Snoeck",
- "given": "Monique",
- "orcid": "0000-0002-3824-3214"
- },
- {
- "family": "Laurier",
- "given": "Wim",
- "orcid": "0000-0002-9448-248X"
- }
- ],
- "doi:10.1002/widm.1413": [
- {
- "family": "Huang",
- "given": "Yue",
- "orcid": "0000-0003-1938-1440"
- }
- ],
- "doi:10.1007/978-3-030-72657-7_24": [
- {
- "family": "Machado",
- "given": "Samuel",
- "orcid": "0000-0002-9078-5280"
- },
- {
- "family": "Oliveira E Sá",
- "given": "Jorge",
- "orcid": "0000-0003-4095-3431"
- }
- ],
- "doi:10.4018/978-1-5225-7501-6.ch036": [
- {
- "family": "Pal",
- "given": "Kamalendu",
- "orcid": "0000-0001-7158-6481"
- }
- ],
- "doi:10.4018/978-1-5225-8223-6.ch008": [
- {
- "family": "Pal",
- "given": "Kamalendu",
- "orcid": "0000-0001-7158-6481"
- }
- ],
- "doi:10.1080/0951192x.2019.1571236": [
- {
- "family": "Ansari",
- "given": "Fazel",
- "orcid": "0000-0002-2705-0396"
- }
- ],
- "doi:10.1080/0951192x.2019.1599443": [
- {
- "family": "Tiwari",
- "given": "Manoj Kumar",
- "orcid": "0000-0001-8564-1402"
- }
- ],
- "doi:10.1080/09544828.2019.1643830": [
- {
- "family": "Jia",
- "given": "Lizhen",
- "orcid": "0000-0002-7184-859X"
- },
- {
- "family": "Peng",
- "given": "Qingjin",
- "orcid": "0000-0002-9664-5326"
- },
- {
- "family": "Tan",
- "given": "Runhua",
- "orcid": "0000-0002-6797-8199"
- },
- {
- "family": "Zhu",
- "given": "Xuehong",
- "orcid": "0000-0003-4824-1869"
- }
- ],
- "doi:10.1007/978-3-319-61911-8_13": [
- {
- "family": "Luna-Aveiga",
- "given": "Harry",
- "orcid": "0000-0001-8998-9078"
- },
- {
- "family": "Medina-Moreira",
- "given": "José",
- "orcid": "0000-0003-1728-1462"
- },
- {
- "family": "Lagos-Ortiz",
- "given": "Katty",
- "orcid": "0000-0002-2510-7416"
- },
- {
- "family": "Apolinario",
- "given": "Oscar",
- "orcid": "0000-0003-4059-9516"
- },
- {
- "family": "Paredes-Valverde",
- "given": "Mario Andrés",
- "orcid": "0000-0001-9508-9818"
- },
- {
- "family": "Del Pilar Salas-Zárate",
- "given": "MarÃa",
- "orcid": "0000-0003-1818-3434"
- },
- {
- "family": "Valencia-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.1007/978-3-319-67283-0_4": [
- {
- "family": "Vergara-Lozano",
- "given": "Vanessa",
- "orcid": "0000-0002-0644-5946"
- },
- {
- "family": "Medina-Moreira",
- "given": "José",
- "orcid": "0000-0003-1728-1462"
- },
- {
- "family": "Rochina",
- "given": "Christian",
- "orcid": "0000-0001-8547-5598"
- },
- {
- "family": "Garzón-Goya",
- "given": "Mayra",
- "orcid": "0000-0001-5069-1370"
- },
- {
- "family": "Sinche-Guzmán",
- "given": "Andrea",
- "orcid": "0000-0003-1480-0263"
- },
- {
- "family": "Bucaram-Leverone",
- "given": "Martha",
- "orcid": "0000-0002-5779-3852"
- }
- ],
- "doi:10.1108/jd-10-2017-0139": [
- {
- "family": "Tallerås",
- "given": "Kim",
- "orcid": "0000-0002-0255-6841"
- }
- ],
- "doi:10.1007/978-3-030-24289-3_20": [
- {
- "family": "Tianxing",
- "given": "Man",
- "orcid": "0000-0003-2187-1641"
- },
- {
- "family": "Zhukova",
- "given": "Nataly",
- "orcid": "0000-0001-5877-4461"
- },
- {
- "family": "Meltsov",
- "given": "Vasily",
- "orcid": "0000-0001-5479-9979"
- },
- {
- "family": "Shichkina",
- "given": "Yulia",
- "orcid": "0000-0001-7140-1686"
- }
- ],
- "doi:10.1017/s0269888916000011": [
- {
- "family": "Dos Santos",
- "given": "Paulo Sérgio M.",
- "orcid": "0000-0001-9502-1362"
- },
- {
- "family": "Travassos",
- "given": "Guilherme H.",
- "orcid": "0000-0002-4258-0424"
- }
- ],
- "doi:10.1017/s0269888918000139": [
- {
- "family": "Smart",
- "given": "Paul",
- "orcid": "0000-0001-9989-5307"
- }
- ],
- "doi:10.4018/978-1-5225-0956-1.ch009": [
- {
- "family": "Pal",
- "given": "Kamalendu",
- "orcid": "0000-0001-7158-6481"
- }
- ],
- "doi:10.1007/978-3-030-30760-8_23": [
- {
- "family": "Proença",
- "given": "Diogo",
- "orcid": "0000-0002-3671-9637"
- },
- {
- "family": "Borbinha",
- "given": "José",
- "orcid": "0000-0001-5463-8438"
- }
- ],
- "doi:10.1007/s11095-017-2308-y": [
- {
- "family": "Herwig",
- "given": "Christoph",
- "orcid": "0000-0003-2314-1458"
- }
- ],
- "doi:10.1007/978-3-319-74433-9_2": [
- {
- "family": "Poveda-Villalón",
- "given": "MarÃa",
- "orcid": "0000-0003-3587-0367"
- }
- ],
- "doi:10.1017/s1351324918000347": [
- {
- "family": "Bosque-Gil",
- "given": "J.",
- "orcid": "0000-0001-6433-4649"
- }
- ],
- "doi:10.1007/978-3-030-10728-4_4": [
- {
- "family": "Bazán-Vera",
- "given": "William",
- "orcid": "0000-0002-9479-1944"
- },
- {
- "family": "Espinoza-Moran",
- "given": "Winston",
- "orcid": "0000-0002-8729-1458"
- },
- {
- "family": "Arcos-Jácome",
- "given": "Diego",
- "orcid": "0000-0002-7741-0978"
- },
- {
- "family": "Burgos-Herreria",
- "given": "Tany",
- "orcid": "0000-0003-4132-9905"
- }
- ],
- "doi:10.1002/ett.3625": [
- {
- "family": "Arooj",
- "given": "Ansif",
- "orcid": "0000-0001-7116-4545"
- },
- {
- "family": "Umer",
- "given": "Tariq",
- "orcid": "0000-0002-3333-8142"
- }
- ],
- "doi:10.1186/s40561-017-0046-6": [
- {
- "family": "Demaidi",
- "given": "Mona Nabil",
- "orcid": "0000-0001-8161-4992"
- }
- ],
- "doi:10.1017/aer.2019.74": [
- {
- "family": "Schuetz",
- "given": "C. G.",
- "orcid": "0000-0002-0955-8647"
- },
- {
- "family": "Neumayr",
- "given": "B.",
- "orcid": "0000-0003-1551-172X"
- },
- {
- "family": "Schrefl",
- "given": "M.",
- "orcid": "0000-0003-1741-0252"
- }
- ],
- "doi:10.1080/00207543.2017.1415468": [
- {
- "family": "Arena",
- "given": "Damiano",
- "orcid": "0000-0001-7661-1850"
- },
- {
- "family": "Tsolakis",
- "given": "Apostolos Charalampos",
- "orcid": "0000-0003-2606-1402"
- },
- {
- "family": "Zikos",
- "given": "Stylianos",
- "orcid": "0000-0003-2437-6101"
- },
- {
- "family": "Krinidis",
- "given": "Stelios",
- "orcid": "0000-0002-9666-7023"
- },
- {
- "family": "Ziogou",
- "given": "Chrysovalantou",
- "orcid": "0000-0001-7609-5809"
- },
- {
- "family": "Ioannidis",
- "given": "Dimosthenis",
- "orcid": "0000-0002-5747-2186"
- },
- {
- "family": "Voutetakis",
- "given": "Spyros",
- "orcid": "0000-0001-9212-1712"
- },
- {
- "family": "Tzovaras",
- "given": "Dimitrios",
- "orcid": "0000-0001-6915-6722"
- },
- {
- "family": "Kiritsis",
- "given": "Dimitris",
- "orcid": "0000-0003-3660-9187"
- }
- ],
- "doi:10.1680/jmapl.17.00052": [
- {
- "family": "Akinyemi",
- "given": "Abiodun",
- "orcid": "0000-0001-6891-5379"
- },
- {
- "family": "Gray",
- "given": "Alasdair J G",
- "orcid": "0000-0002-5711-4872"
- }
- ],
- "doi:10.1186/s13326-017-0154-9": [
- {
- "family": "Fernández-Breis",
- "given": "Jesualdo Tomás",
- "orcid": "0000-0002-7558-2880"
- }
- ],
- "doi:10.1186/s13326-017-0158-5": [
- {
- "family": "Mazo",
- "given": "Claudia",
- "orcid": "0000-0003-1703-8964"
- }
- ],
- "doi:10.1109/access.2016.2621756": [
- {
- "family": "Li",
- "given": "Xin",
- "orcid": "0000-0003-2726-6143"
- }
- ],
- "doi:10.1109/access.2017.2734681": [
- {
- "family": "Xu",
- "given": "Guangquan",
- "orcid": "0000-0003-2079-0989"
- }
- ],
- "doi:10.1109/tip.2016.2552401": [
- {
- "family": "Zand",
- "given": "Mohsen",
- "orcid": "0000-0001-8177-6000"
- }
- ],
- "doi:10.3390/app10020591": [
- {
- "family": "De Rosa",
- "given": "Francesca",
- "orcid": "0000-0002-7168-0125"
- }
- ],
- "doi:10.3390/app10031040": [
- {
- "family": "Paredes-Valverde",
- "given": "Mario Andrés",
- "orcid": "0000-0001-9508-9818"
- },
- {
- "family": "GarcÃa-DÃaz",
- "given": "José Antonio",
- "orcid": "0000-0002-3651-2660"
- },
- {
- "family": "Valencia-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.1007/s12652-019-01561-2": [
- {
- "family": "Espinoza-Arias",
- "given": "Paola",
- "orcid": "0000-0002-3938-2064"
- },
- {
- "family": "Poveda-Villalón",
- "given": "MarÃa",
- "orcid": "0000-0003-3587-0367"
- },
- {
- "family": "Corcho",
- "given": "Oscar",
- "orcid": "0000-0002-9260-0753"
- }
- ],
- "doi:10.1075/tlrp.20": [
- {
- "family": "L'Homme",
- "given": "Marie-Claude",
- "orcid": "0000-0003-1175-9509"
- }
- ],
- "doi:10.36702/zin.495": [
- {
- "family": "Roszkowski",
- "given": "Marcin",
- "orcid": "0000-0001-7396-4685"
- }
- ],
- "doi:10.1007/978-3-030-37933-9_8": [
- {
- "family": "Proença",
- "given": "Diogo",
- "orcid": "0000-0002-3671-9637"
- },
- {
- "family": "Borbinha",
- "given": "José",
- "orcid": "0000-0001-5463-8438"
- }
- ],
- "doi:10.1007/978-3-030-35249-3_66": [
- {
- "family": "Imanov",
- "given": "Elbrus",
- "orcid": "0000-0002-4754-4457"
- },
- {
- "family": "Daniel",
- "given": "Ezekiel",
- "orcid": "0000-0001-8809-4694"
- }
- ],
- "doi:10.1007/978-3-030-34146-6_23": [
- {
- "family": "Martins",
- "given": "Beatriz Franco",
- "orcid": "0000-0001-9190-1047"
- }
- ],
- "doi:10.1007/978-3-030-42517-3_1": [
- {
- "family": "Altamirano Di Luca",
- "given": "Marlon A.",
- "orcid": "0000-0002-2456-3372"
- },
- {
- "family": "González BenÃtez",
- "given": "Neilys",
- "orcid": "0000-0001-8691-445X"
- }
- ],
- "doi:10.4018/978-1-7998-1863-2.ch002": [
- {
- "family": "Sajja",
- "given": "Priti Srinivas",
- "orcid": "0000-0002-9676-0885"
- }
- ],
- "doi:10.4018/978-1-7998-1934-9.ch013": [
- {
- "family": "DÃaz-Piraquive",
- "given": "Flor Nancy",
- "orcid": "0000-0002-5966-6224"
- }
- ],
- "doi:10.4018/978-1-7998-2104-5.ch009": [
- {
- "family": "Rajh",
- "given": "Arian",
- "orcid": "0000-0001-7567-7495"
- }
- ],
- "doi:10.1017/s0269888919000237": [
- {
- "family": "Olivares-Alarcos",
- "given": "Alberto",
- "orcid": "0000-0002-7733-7715"
- }
- ],
- "doi:10.3390/app10072277": [
- {
- "family": "Gherardini",
- "given": "Francesco",
- "orcid": "0000-0002-9275-4314"
- }
- ],
- "doi:10.1590/1678-9865202032e180077": [
- {
- "family": "Vilches-Blázquez",
- "given": "Luis Manuel",
- "orcid": "0000-0001-5799-469X"
- },
- {
- "family": "Comesaña",
- "given": "Diana",
- "orcid": "0000-0002-2623-7343"
- },
- {
- "family": "Arrieta Moreno",
- "given": "Lorena De Jesús",
- "orcid": "0000-0003-3573-7427"
- }
- ],
- "doi:10.3390/su11236549": [
- {
- "family": "Barbancho",
- "given": "Julio",
- "orcid": "0000-0002-9132-6158"
- },
- {
- "family": "Ropero",
- "given": "Jorge",
- "orcid": "0000-0001-5445-0646"
- },
- {
- "family": "Luque",
- "given": "JoaquÃn",
- "orcid": "0000-0001-9041-0035"
- },
- {
- "family": "León",
- "given": "Carlos",
- "orcid": "0000-0002-0043-8104"
- }
- ],
- "doi:10.1007/978-3-030-39459-2_2": [
- {
- "family": "Kosa",
- "given": "Victoria",
- "orcid": "0000-0002-7300-8818"
- },
- {
- "family": "Chaves-Fraga",
- "given": "David",
- "orcid": "0000-0003-3236-2789"
- },
- {
- "family": "Dobrovolskyi",
- "given": "Hennadii",
- "orcid": "0000-0001-5742-104X"
- },
- {
- "family": "Ermolayev",
- "given": "Vadim",
- "orcid": "0000-0002-5159-254X"
- }
- ],
- "doi:10.2196/preprints.20443": [
- {
- "family": "Li",
- "given": "Xiaoying",
- "orcid": "0000-0003-4407-6616"
- },
- {
- "family": "Lin",
- "given": "Xin",
- "orcid": "0000-0001-8850-1608"
- },
- {
- "family": "Ren",
- "given": "Huiling",
- "orcid": "0000-0002-1067-408X"
- },
- {
- "family": "Guo",
- "given": "Jinjing",
- "orcid": "0000-0003-1590-8014"
- }
- ],
- "doi:10.1007/s11629-019-5576-7": [
- {
- "family": "Sun",
- "given": "Xiao-Tao",
- "orcid": "0000-0002-6348-3690"
- },
- {
- "family": "Xu",
- "given": "Jian-Gang",
- "orcid": "0000-0002-3748-6097"
- },
- {
- "family": "Wang",
- "given": "Zhen-Bo",
- "orcid": "0000-0001-5342-0613"
- }
- ],
- "doi:10.1007/978-3-030-45442-5_15": [
- {
- "family": "Cardoso",
- "given": "João",
- "orcid": "0000-0003-0057-8788"
- },
- {
- "family": "Proença",
- "given": "Diogo",
- "orcid": "0000-0002-3671-9637"
- },
- {
- "family": "Borbinha",
- "given": "José",
- "orcid": "0000-0001-5463-8438"
- }
- ],
- "doi:10.1007/s10115-020-01498-5": [
- {
- "family": "Sebei",
- "given": "Hiba",
- "orcid": "0000-0002-8100-5449"
- },
- {
- "family": "Hadj Taieb",
- "given": "Mohamed Ali",
- "orcid": "0000-0002-2786-8913"
- },
- {
- "family": "Ben Aouicha",
- "given": "Mohamed",
- "orcid": "0000-0002-2277-5814"
- }
- ],
- "doi:10.1007/s12652-020-02150-4": [
- {
- "family": "Pignaton De Freitas",
- "given": "Edison",
- "orcid": "0000-0003-4655-8889"
- }
- ],
- "doi:10.1017/s0266462320000471": [
- {
- "family": "Janssen",
- "given": "Luca M. M.",
- "orcid": "0000-0002-0184-3742"
- },
- {
- "family": "Pokhilenko",
- "given": "Irina",
- "orcid": "0000-0001-6390-2851"
- },
- {
- "family": "Drost",
- "given": "Ruben M. W. A.",
- "orcid": "0000-0002-7428-040X"
- }
- ],
- "doi:10.1177/1420326x20952817": [
- {
- "family": "TaÅŸoz",
- "given": "Åževkiye Merve",
- "orcid": "0000-0001-5213-5079"
- }
- ],
- "doi:10.4018/978-1-7998-4240-8.ch004": [
- {
- "family": "Gupta",
- "given": "Divya",
- "orcid": "0000-0003-1214-635X"
- }
- ],
- "doi:10.1108/ajim-11-2019-0320": [
- {
- "family": "Hocker",
- "given": "Julian",
- "orcid": "0000-0003-3417-9486"
- }
- ],
- "doi:10.3390/ijgi9100588": [
- {
- "family": "Poux",
- "given": "Florent",
- "orcid": "0000-0001-6368-4399"
- },
- {
- "family": "Billen",
- "given": "Roland",
- "orcid": "0000-0002-3101-8057"
- },
- {
- "family": "Kasprzyk",
- "given": "Jean-Paul",
- "orcid": "0000-0002-1663-6332"
- },
- {
- "family": "Hallot",
- "given": "Pierre",
- "orcid": "0000-0002-4449-6496"
- }
- ],
- "doi:10.1002/eng2.12217": [
- {
- "family": "Ullah",
- "given": "Amm Sharif",
- "orcid": "0000-0003-4584-5288"
- }
- ],
- "doi:10.1111/exsy.12629": [
- {
- "family": "Rhayem",
- "given": "Ahlem",
- "orcid": "0000-0002-4124-5894"
- }
- ],
- "doi:10.1007/978-3-030-62015-8_2": [
- {
- "family": "RodrÃguez-GarcÃa",
- "given": "Miguel Ãngel",
- "orcid": "0000-0001-6244-6532"
- },
- {
- "family": "GarcÃa-Sánchez",
- "given": "Francisco",
- "orcid": "0000-0003-2667-5359"
- }
- ],
- "doi:10.3390/designs4040047": [
- {
- "family": "Horváth",
- "given": "Imre",
- "orcid": "0000-0002-6008-0570"
- }
- ],
- "doi:10.3390/en13153990": [
- {
- "family": "Santos",
- "given": "Gabriel",
- "orcid": "0000-0001-8839-8807"
- },
- {
- "family": "Faria",
- "given": "Pedro",
- "orcid": "0000-0002-5982-8342"
- },
- {
- "family": "Vale",
- "given": "Zita",
- "orcid": "0000-0002-4560-9544"
- },
- {
- "family": "Pinto",
- "given": "Tiago",
- "orcid": "0000-0001-8248-080X"
- },
- {
- "family": "Corchado",
- "given": "Juan M.",
- "orcid": "0000-0002-2829-1829"
- }
- ],
- "doi:10.1007/978-3-030-63799-6_17": [
- {
- "family": "Esnaola-Gonzalez",
- "given": "Iker",
- "orcid": "0000-0001-6542-2878"
- }
- ],
- "doi:10.1007/978-3-030-64058-3_67": [
- {
- "family": "Imanov",
- "given": "Elbrus",
- "orcid": "0000-0002-4754-4457"
- },
- {
- "family": "Asengi",
- "given": "Fidelis Jumare",
- "orcid": "0000-0002-2109-7353"
- }
- ],
- "doi:10.1007/978-3-030-65847-2_11": [
- {
- "family": "Espinoza-Arias",
- "given": "Paola",
- "orcid": "0000-0002-3938-2064"
- },
- {
- "family": "Garijo",
- "given": "Daniel",
- "orcid": "0000-0003-0454-7145"
- },
- {
- "family": "Corcho",
- "given": "Oscar",
- "orcid": "0000-0002-9260-0753"
- }
- ],
- "doi:10.15407/csc.2020.04.044": [
- {
- "family": "Pidnebesna",
- "given": "Halyna A.",
- "orcid": "0000-0002-5735-9861"
- },
- {
- "family": "Stepashko",
- "given": "Volodymyr S.",
- "orcid": "0000-0003-4179-6909"
- }
- ],
- "doi:10.1108/jmtm-04-2020-0137": [
- {
- "family": "Shafiee",
- "given": "Sara",
- "orcid": "0000-0001-9433-5060"
- }
- ],
- "doi:10.1186/s12911-020-01291-y": [
- {
- "family": "Abad-Navarro",
- "given": "Francisco",
- "orcid": "0000-0003-0201-3115"
- },
- {
- "family": "Quesada-MartÃnez",
- "given": "Manuel",
- "orcid": "0000-0003-0487-308X"
- },
- {
- "family": "Duque-Ramos",
- "given": "Astrid",
- "orcid": "0000-0001-6233-6384"
- },
- {
- "family": "Fernández-Breis",
- "given": "Jesualdo Tomás",
- "orcid": "0000-0002-7558-2880"
- }
- ],
- "doi:10.2196/20443": [
- {
- "family": "Li",
- "given": "Xiaoying",
- "orcid": "0000-0003-4407-6616"
- },
- {
- "family": "Lin",
- "given": "Xin",
- "orcid": "0000-0001-8850-1608"
- },
- {
- "family": "Ren",
- "given": "Huiling",
- "orcid": "0000-0002-1067-408X"
- },
- {
- "family": "Guo",
- "given": "Jinjing",
- "orcid": "0000-0003-1590-8014"
- }
- ],
- "doi:10.1016/j.jvolgeores.2014.07.012": [
- {
- "family": "Pshenichny",
- "given": "Cyril A.",
- "orcid": "0000-0002-5602-7777"
- }
- ],
- "doi:10.1016/j.cirpj.2018.06.002": [
- {
- "family": "Ansari",
- "given": "Fazel",
- "orcid": "0000-0002-2705-0396"
- }
- ],
- "doi:10.1016/j.ijinfomgt.2016.05.022": [
- {
- "family": "Idris",
- "given": "Norisma",
- "orcid": "0000-0001-5682-5931"
- }
- ],
- "doi:10.1016/j.cmpb.2014.01.020": [
- {
- "family": "MartÃnez-Romero",
- "given": "Marcos",
- "orcid": "0000-0002-9814-3258"
- }
- ],
- "doi:10.1016/j.comcom.2019.02.002": [
- {
- "family": "Pradeep",
- "given": "Preeja",
- "orcid": "0000-0001-6708-4964"
- }
- ],
- "doi:10.1016/j.eswa.2014.03.022": [
- {
- "family": "Valencia-Garcia",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.1016/j.eswa.2020.113843": [
- {
- "family": "Bunnell",
- "given": "Lawrence",
- "orcid": "0000-0003-0621-3245"
- },
- {
- "family": "Yoon",
- "given": "Victoria Y.",
- "orcid": "0000-0002-5690-4282"
- }
- ],
- "doi:10.1016/j.ecoinf.2017.06.003": [
- {
- "family": "Meyer",
- "given": "Thomas",
- "orcid": "0000-0003-2204-6969"
- }
- ],
- "doi:10.1016/j.datak.2014.07.006": [
- {
- "family": "Le Goc",
- "given": "Marc",
- "orcid": "0000-0002-0255-4328"
- }
- ],
- "doi:10.1016/j.cmpb.2013.12.023": [
- {
- "family": "Zhang",
- "given": "Xiaowei",
- "orcid": "0000-0001-8562-416X"
- },
- {
- "family": "Ma",
- "given": "Xu",
- "orcid": "0000-0001-9714-3558"
- },
- {
- "family": "Chen",
- "given": "Jing",
- "orcid": "0000-0002-4626-4103"
- }
- ],
- "doi:10.1016/j.cosrev.2020.100339": [
- {
- "family": "Aliane",
- "given": "Hassina",
- "orcid": "0000-0003-3317-2741"
- }
- ],
- "doi:10.1016/j.rser.2015.04.021": [
- {
- "family": "Zhang",
- "given": "Kenan",
- "orcid": "0000-0001-9862-9146"
- }
- ],
- "doi:10.1016/j.scico.2018.01.003": [
- {
- "family": "Salas-Zárate",
- "given": "MarÃa Del Pilar",
- "orcid": "0000-0003-1818-3434"
- },
- {
- "family": "Colomo-Palacios",
- "given": "Ricardo",
- "orcid": "0000-0002-1555-9726"
- },
- {
- "family": "Valencia-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.1016/j.rcim.2019.05.010": [
- {
- "family": "Shah",
- "given": "N.",
- "orcid": "0000-0002-4140-8200"
- }
- ],
- "doi:10.1016/j.aei.2018.10.009": [
- {
- "family": "Yuan",
- "given": "Jingfeng",
- "orcid": "0000-0002-0922-6853"
- }
- ],
- "doi:10.1016/j.future.2018.01.062": [
- {
- "family": "Haoxi",
- "given": "Zhang",
- "orcid": "0000-0002-1341-1912"
- }
- ],
- "doi:10.1016/j.pmcj.2016.03.001": [
- {
- "family": "Colomo-Palacios",
- "given": "Ricardo",
- "orcid": "0000-0002-1555-9726"
- }
- ],
- "doi:10.1016/j.jmsy.2014.05.003": [
- {
- "family": "Lu",
- "given": "Yuqian",
- "orcid": "0000-0001-5954-0421"
- }
- ],
- "doi:10.1016/j.compind.2019.05.003": [
- {
- "family": "Yang",
- "given": "Lan",
- "orcid": "0000-0002-7905-1438"
- },
- {
- "family": "Cormican",
- "given": "Kathryn",
- "orcid": "0000-0003-1688-1087"
- },
- {
- "family": "Yu",
- "given": "Ming",
- "orcid": "0000-0002-3980-7181"
- }
- ],
- "doi:10.1016/j.knosys.2013.10.006": [
- {
- "family": "Valencia-GarcÃa",
- "given": "Rafael",
- "orcid": "0000-0003-2457-1791"
- }
- ],
- "doi:10.1016/j.compchemeng.2016.05.018": [
- {
- "family": "Cecelja",
- "given": "Franjo",
- "orcid": "0000-0002-4683-4313"
- }
- ],
- "doi:10.1016/j.compmedimag.2014.09.004": [
- {
- "family": "Racoceanu",
- "given": "D.",
- "orcid": "0000-0002-9416-1803"
- }
- ],
- "doi:10.1016/j.jbusres.2019.05.016": [
- {
- "family": "Moon",
- "given": "Sangkil",
- "orcid": "0000-0002-4883-0498"
- }
- ],
- "doi:10.1016/j.autcon.2019.102956": [
- {
- "family": "Rasmussen",
- "given": "Mads Holten",
- "orcid": "0000-0002-6519-7057"
- },
- {
- "family": "Pauwels",
- "given": "Pieter",
- "orcid": "0000-0001-8020-4609"
- },
- {
- "family": "Hviid",
- "given": "Christian Anker",
- "orcid": "0000-0002-8340-7222"
- }
- ],
- "doi:10.1016/j.compind.2014.02.017": [
- {
- "family": "Grabot",
- "given": "Bernard",
- "orcid": "0000-0002-2694-9113"
- }
- ],
- "doi:10.1016/j.measurement.2018.01.009": [
- {
- "family": "Da Silva",
- "given": "Clay Palmeira",
- "orcid": "0000-0003-3369-7302"
- }
- ],
- "doi:10.1016/j.cose.2018.07.013": [
- {
- "family": "Navarro",
- "given": "Luiz C.",
- "orcid": "0000-0002-8041-8743"
- }
- ],
- "doi:10.1016/j.jbi.2019.103293": [
- {
- "family": "Lingren",
- "given": "Todd",
- "orcid": "0000-0003-0195-7456"
- },
- {
- "family": "Luo",
- "given": "Yuan",
- "orcid": "0000-0002-4497-8049"
- },
- {
- "family": "Weng",
- "given": "Chunhua",
- "orcid": "0000-0003-0311-7100"
- }
- ],
- "doi:10.1080/15230406.2019.1647797": [
- {
- "family": "Chen",
- "given": "Zugang",
- "orcid": "0000-0002-7782-9488"
- }
- ],
- "doi:10.3390/bdcc2030025": [
- {
- "family": "Laurent",
- "given": "Anne",
- "orcid": "0000-0003-3708-6429"
- }
- ],
- "doi:10.1080/17538947.2016.1266041": [
- {
- "family": "Song",
- "given": "Jia",
- "orcid": "0000-0002-9051-1925"
- }
- ],
- "doi:10.1016/j.earscirev.2018.07.006": [
- {
- "family": "Zhang",
- "given": "Xiang",
- "orcid": "0000-0002-1017-742X"
- },
- {
- "family": "Chen",
- "given": "Nengcheng",
- "orcid": "0000-0002-3521-9972"
- }
- ],
- "doi:10.1007/s00778-019-00564-x": [
- {
- "family": "Chapman",
- "given": "Adriane",
- "orcid": "0000-0002-3814-2587"
- },
- {
- "family": "Simperl",
- "given": "Elena",
- "orcid": "0000-0003-1722-947X"
- },
- {
- "family": "Koesten",
- "given": "Laura",
- "orcid": "0000-0003-4110-1759"
- },
- {
- "family": "Konstantinidis",
- "given": "George",
- "orcid": "0000-0002-3962-9303"
- },
- {
- "family": "Ibáñez",
- "given": "Luis-Daniel",
- "orcid": "0000-0001-6993-0001"
- },
- {
- "family": "Kacprzak",
- "given": "Emilia",
- "orcid": "0000-0002-3784-2733"
- },
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- }
- ],
- "doi:10.1111/jace.16677": [
- {
- "family": "De Guire",
- "given": "Eileen",
- "orcid": "0000-0002-1602-5056"
- },
- {
- "family": "Dickey",
- "given": "Elizabeth C.",
- "orcid": "0000-0003-4005-7872"
- },
- {
- "family": "French",
- "given": "Roger H.",
- "orcid": "0000-0002-6162-0532"
- },
- {
- "family": "Harmer",
- "given": "Martin",
- "orcid": "0000-0003-1389-3306"
- },
- {
- "family": "Mauro",
- "given": "John",
- "orcid": "0000-0002-4319-3530"
- }
- ],
- "doi:10.1108/ijpsm-02-2018-0062": [
- {
- "family": "Hitz-Gamper",
- "given": "Benedikt Simon",
- "orcid": "0000-0001-7937-0159"
- },
- {
- "family": "Neumann",
- "given": "Oliver",
- "orcid": "0000-0002-0988-9729"
- }
- ],
- "doi:10.1007/978-3-030-30796-7_27": [
- {
- "family": "Ibáñez",
- "given": "Luis-Daniel",
- "orcid": "0000-0001-6993-0001"
- },
- {
- "family": "Simperl",
- "given": "Elena",
- "orcid": "0000-0003-1722-947X"
- }
- ],
- "doi:10.1007/s00778-019-00591-8": [
- {
- "family": "Wu",
- "given": "Dingming",
- "orcid": "0000-0002-7901-9876"
- }
- ],
- "doi:10.1093/ije/dyz051": [
- {
- "family": "Hodgson",
- "given": "Susan",
- "orcid": "0000-0001-8519-8586"
- },
- {
- "family": "Piel",
- "given": "Frédéric B",
- "orcid": "0000-0001-8131-7728"
- },
- {
- "family": "Hansell",
- "given": "Anna",
- "orcid": "0000-0001-9904-7447"
- }
- ],
- "doi:10.1007/978-3-030-62466-8_41": [
- {
- "family": "Benjelloun",
- "given": "Omar",
- "orcid": "0000-0002-4173-7709"
- },
- {
- "family": "Chen",
- "given": "Shiyu",
- "orcid": "0000-0001-7844-2501"
- },
- {
- "family": "Noy",
- "given": "Natasha",
- "orcid": "0000-0002-7437-0624"
- }
- ],
- "doi:10.1016/j.envsoft.2015.12.005": [
- {
- "family": "Clites",
- "given": "Anne H.",
- "orcid": "0000-0002-2385-3802"
- }
- ],
- "doi:10.1155/2021/3591034": [
- {
- "family": "Sun",
- "given": "Xiaoqian",
- "orcid": "0000-0002-8713-142X"
- },
- {
- "family": "Wandelt",
- "given": "Sebastian",
- "orcid": "0000-0003-0088-9287"
- }
- ],
- "doi:10.1016/j.datak.2018.10.002": [
- {
- "family": "Benavides",
- "given": "Carmen",
- "orcid": "0000-0002-6514-6858"
- },
- {
- "family": "Alaiz",
- "given": "Héctor",
- "orcid": "0000-0001-6572-1261"
- }
- ],
- "doi:10.1007/978-981-33-4565-2_3": [
- {
- "family": "Ojo-Gonzalez",
- "given": "Karina",
- "orcid": "0000-0002-8104-7606"
- },
- {
- "family": "Prosper-Heredia",
- "given": "Rene",
- "orcid": "0000-0002-0938-7809"
- },
- {
- "family": "Dominguez-Quintero",
- "given": "Luis",
- "orcid": "0000-0002-3309-6745"
- },
- {
- "family": "Vargas-Lombardo",
- "given": "Miguel",
- "orcid": "0000-0002-2074-2939"
- }
- ],
- "doi:10.1038/s41597-021-00797-y": [
- {
- "family": "Kamdar",
- "given": "Maulik R.",
- "orcid": "0000-0002-9898-0515"
- },
- {
- "family": "Musen",
- "given": "Mark A.",
- "orcid": "0000-0003-3325-793X"
- }
- ],
- "doi:10.3390/su13116407": [
- {
- "family": "Janota",
- "given": "Aleš",
- "orcid": "0000-0003-2132-1295"
- },
- {
- "family": "Spalek",
- "given": "Juraj",
- "orcid": "0000-0001-8945-628X"
- },
- {
- "family": "Faltus",
- "given": "VladimÃr",
- "orcid": "0000-0003-0050-5239"
- }
- ],
- "doi:10.3390/electronics10091060": [
- {
- "family": "Spoladore",
- "given": "Daniele",
- "orcid": "0000-0002-0527-070X"
- },
- {
- "family": "Pessot",
- "given": "Elena",
- "orcid": "0000-0002-0072-8881"
- }
- ],
- "doi:10.3390/info12100432": [
- {
- "family": "Elmhadhbi",
- "given": "Linda",
- "orcid": "0000-0001-9444-0848"
- },
- {
- "family": "Karray",
- "given": "Mohamed-Hedi",
- "orcid": "0000-0002-9652-5164"
- }
- ],
- "doi:10.1111/exsy.12851": [
- {
- "family": "Mora",
- "given": "Manuel",
- "orcid": "0000-0003-1631-5931"
- }
- ],
- "doi:10.3390/data3040044": [
- {
- "family": "Viehberg",
- "given": "Finn",
- "orcid": "0000-0003-0253-2222"
- }
- ],
- "doi:10.3390/sym11030309": [
- {
- "family": "Bajwa",
- "given": "Imran",
- "orcid": "0000-0002-5161-6441"
- }
- ],
- "doi:10.1007/s10462-019-09693-9": [
- {
- "family": "Bukhari",
- "given": "Syed Ahmad Chan",
- "orcid": "0000-0002-6517-5261"
- }
- ],
- "doi:10.1080/23311916.2016.1193959": [
- {
- "family": "Khusro",
- "given": "Shah",
- "orcid": "0000-0002-7734-7243"
- }
- ],
- "doi:10.4018/978-1-4666-2494-8.ch016": [
- {
- "family": "Sajja",
- "given": "Priti Srinivas",
- "orcid": "0000-0002-9676-0885"
- }
- ],
- "doi:10.1080/1206212x.2019.1574950": [
- {
- "family": "Mehla",
- "given": "Sonia",
- "orcid": "0000-0001-5293-1163"
- },
- {
- "family": "Jain",
- "given": "Sarika",
- "orcid": "0000-0002-7432-8506"
- }
- ],
- "doi:10.4018/ijdibe.2019010104": [
- {
- "family": "Abdullahi",
- "given": "Abdulrasheed Madugu",
- "orcid": "0000-0003-1774-333X"
- },
- {
- "family": "Ibrahim",
- "given": "Yahaya Makarfi",
- "orcid": "0000-0002-9155-2905"
- }
- ],
- "doi:10.1017/s0021859619000820": [
- {
- "family": "Goldstein",
- "given": "A.",
- "orcid": "0000-0002-1038-762X"
- }
- ],
- "doi:10.1007/s10639-020-10226-z": [
- {
- "family": "Stancin",
- "given": "Kristian",
- "orcid": "0000-0001-8048-9026"
- },
- {
- "family": "Poscic",
- "given": "Patrizia",
- "orcid": "0000-0001-5456-7991"
- },
- {
- "family": "Jaksic",
- "given": "Danijela",
- "orcid": "0000-0002-7205-8872"
- }
- ],
- "doi:10.1093/jamia/ocaa061": [
- {
- "family": "Kronk",
- "given": "Clair A",
- "orcid": "0000-0001-8397-8810"
- }
- ],
- "doi:10.1016/j.ssci.2019.05.029": [
- {
- "family": "Hughes",
- "given": "Peter",
- "orcid": "0000-0002-1063-4897"
- }
- ],
- "doi:10.1016/j.jclepro.2015.08.088": [
- {
- "family": "Martinopoulos",
- "given": "Georgios",
- "orcid": "0000-0002-9095-2210"
- }
- ],
- "doi:10.1016/j.is.2015.02.003": [
- {
- "family": "Roddick",
- "given": "John F.",
- "orcid": "0000-0001-7024-0796"
- }
- ],
- "doi:10.4018/978-1-5225-9687-5.ch002": [
- {
- "family": "Hdioud",
- "given": "Ferdaous",
- "orcid": "0000-0002-8870-2386"
- }
- ],
- "doi:10.1007/s10796-016-9631-4": [
- {
- "family": "Abdullah",
- "given": "Norris Syed",
- "orcid": "0000-0002-9587-1348"
- }
- ],
- "doi:10.1007/978-3-030-30859-9_5": [
- {
- "family": "Castro De Souza",
- "given": "Saymon",
- "orcid": "0000-0001-8256-7702"
- },
- {
- "family": "Gonçalves Pereira Filho",
- "given": "José",
- "orcid": "0000-0002-8056-3836"
- }
- ],
- "doi:10.29375/25392115.3227": [
- {
- "family": "Tovar Vidal",
- "given": "Mireya",
- "orcid": "0000-0002-9086-7446"
- }
- ],
- "doi:10.1007/978-3-030-01762-0_12": [
- {
- "family": "Koho",
- "given": "Mikko",
- "orcid": "0000-0002-7373-9338"
- },
- {
- "family": "Ikkala",
- "given": "Esko",
- "orcid": "0000-0002-9571-7260"
- },
- {
- "family": "Hyvönen",
- "given": "Eero",
- "orcid": "0000-0003-1695-5840"
- }
- ],
- "doi:10.4018/978-1-5225-7186-5.ch011": [
- {
- "family": "Grandi",
- "given": "Fabio",
- "orcid": "0000-0002-5780-8794"
- }
- ],
- "doi:10.1007/978-3-030-20485-3_11": [
- {
- "family": "Kozierkiewicz",
- "given": "Adrianna",
- "orcid": "0000-0001-8445-3979"
- },
- {
- "family": "Pietranik",
- "given": "Marcin",
- "orcid": "0000-0003-4255-889X"
- }
- ],
- "doi:10.1080/00207543.2017.1421785": [
- {
- "family": "Li",
- "given": "Xinyu",
- "orcid": "0000-0002-4117-9698"
- }
- ],
- "doi:10.1111/tgis.12602": [
- {
- "family": "Gupta",
- "given": "Prashant",
- "orcid": "0000-0002-4988-384X"
- },
- {
- "family": "Gahegan",
- "given": "Mark",
- "orcid": "0000-0001-7209-8156"
- }
- ],
- "doi:10.1007/978-3-030-50316-1_26": [
- {
- "family": "Bürger",
- "given": "Jens",
- "orcid": "0000-0003-2504-1653"
- },
- {
- "family": "Kehrer",
- "given": "Timo",
- "orcid": "0000-0002-2582-5557"
- },
- {
- "family": "Jürjens",
- "given": "Jan",
- "orcid": "0000-0002-8938-0470"
- }
- ],
- "doi:10.1007/s12008-020-00712-6": [
- {
- "family": "Jeanson",
- "given": "Loïc",
- "orcid": "0000-0002-6667-090X"
- }
- ],
- "doi:10.1016/j.jss.2018.06.039": [
- {
- "family": "Romero",
- "given": "Oscar",
- "orcid": "0000-0001-6350-8328"
- }
- ],
- "doi:10.1016/j.jcss.2015.06.001": [
- {
- "family": "Grandi",
- "given": "Fabio",
- "orcid": "0000-0002-5780-8794"
- }
- ],
- "doi:10.1007/s10209-021-00791-6": [
- {
- "family": "Bonacin",
- "given": "Rodrigo",
- "orcid": "0000-0003-3441-0887"
- }
- ],
- "doi:10.3390/electronics10141650": [
- {
- "family": "Gawish",
- "given": "Mariam",
- "orcid": "0000-0002-5136-3464"
- },
- {
- "family": "Fernández-Veiga",
- "given": "Manuel",
- "orcid": "0000-0002-5088-0881"
- }
- ],
- "doi:10.1016/j.compind.2021.103449": [
- {
- "family": "Li",
- "given": "Xinyu",
- "orcid": "0000-0002-4117-9698"
- },
- {
- "family": "Lyu",
- "given": "Mengtao",
- "orcid": "0000-0003-1505-1970"
- },
- {
- "family": "Wang",
- "given": "Zuoxu",
- "orcid": "0000-0003-2524-1217"
- }
- ],
- "doi:10.1007/978-3-030-71187-0_107": [
- {
- "family": "Bayoudhi",
- "given": "Leila",
- "orcid": "0000-0002-8659-043X"
- }
- ],
- "doi:10.1016/j.websem.2021.100658": [
- {
- "family": "Pernisch",
- "given": "Romana",
- "orcid": "0000-0001-8590-1817"
- },
- {
- "family": "Dell’Aglio",
- "given": "Daniele",
- "orcid": "0000-0003-4904-2511"
- },
- {
- "family": "Bernstein",
- "given": "Abraham",
- "orcid": "0000-0002-0128-4602"
- }
- ],
- "doi:10.1108/bpmj-05-2019-0183": [
- {
- "family": "Chatterjee",
- "given": "Sheshadri",
- "orcid": "0000-0003-1075-5549"
- }
- ],
- "doi:10.4018/ijegr.2019070102": [
- {
- "family": "Chatterjee",
- "given": "Sheshadri",
- "orcid": "0000-0003-1075-5549"
- }
- ],
- "doi:10.1007/978-3-030-33246-4_14": [
- {
- "family": "Debruyne",
- "given": "Christophe",
- "orcid": "0000-0003-4734-3847"
- }
- ],
- "doi:10.3989/redc.2019.4.1605": [
- {
- "family": "González-Limón",
- "given": "Myriam",
- "orcid": "0000-0002-6569-7545"
- },
- {
- "family": "RodrÃguez-Ramos",
- "given": "Asunción",
- "orcid": "0000-0003-2761-9236"
- }
- ],
- "doi:10.1145/3190576": [
- {
- "family": "Vidal",
- "given": "Maria-Esther",
- "orcid": "0000-0003-1160-8727"
- }
- ],
- "doi:10.1007/s42421-020-00023-y": [
- {
- "family": "Venkatachalapathy",
- "given": "Archana",
- "orcid": "0000-0003-3361-4538"
- }
- ],
- "doi:10.1016/j.ijinfomgt.2019.05.008": [
- {
- "family": "Janssen",
- "given": "Marijn",
- "orcid": "0000-0001-6211-8790"
- }
- ],
- "doi:10.1016/j.cities.2019.03.009": [
- {
- "family": "Lam",
- "given": "Patrick T.I.",
- "orcid": "0000-0002-2116-6953"
- }
- ],
- "doi:10.1016/j.bdr.2016.10.001": [
- {
- "family": "Consoli",
- "given": "Sergio",
- "orcid": "0000-0001-7357-5858"
- }
- ],
- "doi:10.1016/j.scitotenv.2019.03.440": [
- {
- "family": "Arts",
- "given": "Koen",
- "orcid": "0000-0001-6436-6499"
- }
- ],
- "doi:10.1016/j.giq.2018.10.006": [
- {
- "family": "Richards",
- "given": "Deborah",
- "orcid": "0000-0002-7363-1511"
- }
- ],
- "doi:10.1016/j.jbi.2020.103504": [
- {
- "family": "Chi",
- "given": "Yu-Liang",
- "orcid": "0000-0002-9979-1134"
- }
- ],
- "doi:10.1016/j.giq.2018.11.004": [
- {
- "family": "Komarkova",
- "given": "Jitka",
- "orcid": "0000-0002-0209-3373"
- }
- ],
- "doi:10.1016/j.eswa.2019.113135": [
- {
- "family": "Musyaffa",
- "given": "Fathoni A.",
- "orcid": "0000-0003-4846-8051"
- },
- {
- "family": "Orlandi",
- "given": "Fabrizio",
- "orcid": "0000-0001-9561-4635"
- }
- ],
- "doi:10.1016/j.jlamp.2014.12.005": [
- {
- "family": "Horne",
- "given": "Ross",
- "orcid": "0000-0003-0162-1901"
- },
- {
- "family": "Sassone",
- "given": "Vladimiro",
- "orcid": "0000-0002-6432-1482"
- }
- ],
- "doi:10.1177/00208523211009955": [
- {
- "family": "Gao",
- "given": "Yingying",
- "orcid": "0000-0001-9944-9059"
- },
- {
- "family": "Janssen",
- "given": "Marijn",
- "orcid": "0000-0001-6211-8790"
- },
- {
- "family": "Zhang",
- "given": "Congcong",
- "orcid": "0000-0002-6047-5513"
- }
- ],
- "doi:10.1016/j.patter.2020.100136": [
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- }
- ],
- "doi:10.1007/s10994-021-06118-z": [
- {
- "family": "Iwata",
- "given": "Tomoharu",
- "orcid": "0000-0003-4425-1971"
- }
- ],
- "doi:10.1002/poi3.176": [
- {
- "family": "Meyer",
- "given": "Eric T.",
- "orcid": "0000-0002-1998-7162"
- }
- ],
- "doi:10.1080/15228835.2017.1416515": [
- {
- "family": "Rao",
- "given": "A. Ravishankar",
- "orcid": "0000-0002-7483-0678"
- }
- ],
- "doi:10.1007/s11423-019-09706-y": [
- {
- "family": "Coughlan",
- "given": "Tim",
- "orcid": "0000-0002-0891-5438"
- }
- ],
- "doi:10.1186/s40965-018-0051-x": [
- {
- "family": "Corti",
- "given": "Paolo",
- "orcid": "0000-0002-5245-5133"
- }
- ],
- "doi:10.1002/cpe.4186": [
- {
- "family": "Storti",
- "given": "Emanuele",
- "orcid": "0000-0001-5966-6921"
- }
- ],
- "doi:10.1007/s41060-016-0025-y": [
- {
- "family": "Oyama",
- "given": "Satoshi",
- "orcid": "0000-0002-8124-3578"
- },
- {
- "family": "Baba",
- "given": "Yukino",
- "orcid": "0000-0001-5310-9841"
- },
- {
- "family": "Ohmukai",
- "given": "Ikki",
- "orcid": "0000-0002-3276-3753"
- },
- {
- "family": "Kashima",
- "given": "Hisashi",
- "orcid": "0000-0002-5906-7571"
- }
- ],
- "doi:10.1080/02681102.2017.1412289": [
- {
- "family": "Kassen",
- "given": "Maxat",
- "orcid": "0000-0001-9643-4249"
- }
- ],
- "doi:10.1108/dta-10-2017-0078": [
- {
- "family": "Lv",
- "given": "Hong",
- "orcid": "0000-0002-4905-3758"
- }
- ],
- "doi:10.31921/doxacom.n27a14": [
- {
- "family": "Arias",
- "given": "Diego",
- "orcid": "0000-0003-2023-2530"
- },
- {
- "family": "Sánchez GarcÃa",
- "given": "Pilar",
- "orcid": "0000-0002-6223-182X"
- },
- {
- "family": "Redondo",
- "given": "Marta",
- "orcid": "0000-0001-8143-465X"
- }
- ],
- "doi:10.1049/iet-sen.2016.0325": [
- {
- "family": "Sernadela",
- "given": "Pedro",
- "orcid": "0000-0002-3306-0195"
- }
- ],
- "doi:10.1155/2017/8327980": [
- {
- "family": "Sernadela",
- "given": "Pedro",
- "orcid": "0000-0002-3306-0195"
- },
- {
- "family": "Posada",
- "given": "Manuel",
- "orcid": "0000-0002-8372-4180"
- },
- {
- "family": "Robinson",
- "given": "Peter",
- "orcid": "0000-0002-0736-9199"
- },
- {
- "family": "Roos",
- "given": "Marco",
- "orcid": "0000-0002-8691-772X"
- },
- {
- "family": "Oliveira",
- "given": "José LuÃs",
- "orcid": "0000-0002-6672-6176"
- }
- ],
- "doi:10.1007/s10916-017-0705-8": [
- {
- "family": "Sernadela",
- "given": "Pedro",
- "orcid": "0000-0002-3306-0195"
- }
- ],
- "doi:10.1093/database/bax088": [
- {
- "family": "Sernadela",
- "given": "Pedro",
- "orcid": "0000-0002-3306-0195"
- }
- ],
- "doi:10.1016/j.yjbinx.2020.100074": [
- {
- "family": "Nicholson",
- "given": "Nicholas",
- "orcid": "0000-0003-1149-1426"
- },
- {
- "family": "Perego",
- "given": "Andrea",
- "orcid": "0000-0001-9300-2694"
- }
- ],
- "doi:10.1016/j.future.2015.09.008": [
- {
- "family": "Antunes",
- "given": "Mário",
- "orcid": "0000-0002-6504-9441"
- }
- ],
- "doi:10.3390/app11167233": [
- {
- "family": "Nicholson",
- "given": "Nicholas Charles",
- "orcid": "0000-0003-1149-1426"
- },
- {
- "family": "Giusti",
- "given": "Francesco",
- "orcid": "0000-0002-6295-0154"
- },
- {
- "family": "Negrao Carvalho",
- "given": "Raquel",
- "orcid": "0000-0002-5754-408X"
- }
- ],
- "doi:10.1007/978-3-030-88361-4_12": [
- {
- "family": "Igne",
- "given": "Federico",
- "orcid": "0000-0002-2790-7513"
- },
- {
- "family": "Germano",
- "given": "Stefano",
- "orcid": "0000-0001-6993-0618"
- },
- {
- "family": "Horrocks",
- "given": "Ian",
- "orcid": "0000-0002-2685-7462"
- }
- ],
- "doi:10.21105/joss.03374": [
- {
- "family": "Vaidya",
- "given": "Gaurav",
- "orcid": "0000-0003-0587-0454"
- },
- {
- "family": "Cellinese",
- "given": "Nico",
- "orcid": "0000-0002-7157-9414"
- },
- {
- "family": "Lapp",
- "given": "Hilmar",
- "orcid": "0000-0001-9107-0714"
- }
- ],
- "doi:10.1021/acssynbio.8b00532": [
- {
- "family": "Mısırlı",
- "given": "Göksel",
- "orcid": "0000-0002-2454-7188"
- },
- {
- "family": "Wipat",
- "given": "Anil",
- "orcid": "0000-0001-7310-4191"
- }
- ],
- "doi:10.1186/s13326-021-00246-0": [
- {
- "family": "Grütter",
- "given": "Rolf",
- "orcid": "0000-0003-3711-4899"
- }
- ],
- "doi:10.1007/s10845-021-01855-3": [
- {
- "family": "Montero Jiménez",
- "given": "Juan José",
- "orcid": "0000-0002-3215-3736"
- }
- ],
- "doi:10.1016/j.softx.2021.100952": [
- {
- "family": "Buoncompagni",
- "given": "Luca",
- "orcid": "0000-0001-8121-1616"
- },
- {
- "family": "Kareem",
- "given": "Syed Yusha",
- "orcid": "0000-0002-2360-1680"
- },
- {
- "family": "Mastrogiovanni",
- "given": "Fulvio",
- "orcid": "0000-0001-5913-1898"
- }
- ],
- "doi:10.3390/app112110450": [
- {
- "family": "Jearanaiwongkul",
- "given": "Watanee",
- "orcid": "0000-0003-2101-1625"
- },
- {
- "family": "Anutariya",
- "given": "Chutiporn",
- "orcid": "0000-0001-7101-212X"
- },
- {
- "family": "Racharak",
- "given": "Teeradaj",
- "orcid": "0000-0002-8823-2361"
- },
- {
- "family": "Andres",
- "given": "Frederic",
- "orcid": "0000-0002-5003-7579"
- }
- ],
- "doi:10.1017/s1471068421000466": [
- {
- "family": "Koopmann",
- "given": "Patrick",
- "orcid": "0000-0001-5999-2583"
- },
- {
- "family": "Turhan",
- "given": "Anni-Yasmin",
- "orcid": "0000-0001-6336-335X"
- }
- ],
- "doi:10.7717/peerj-cs.777": [
- {
- "family": "Tianxing",
- "given": "Man",
- "orcid": "0000-0003-2187-1641"
- },
- {
- "family": "Ignatov",
- "given": "Dmitry I.",
- "orcid": "0000-0002-6584-8534"
- },
- {
- "family": "Shichkina",
- "given": "Yulia Alexandrovna",
- "orcid": "0000-0001-7140-1686"
- },
- {
- "family": "Vodyaho",
- "given": "Alexander Ivanovich",
- "orcid": "0000-0002-0933-0933"
- }
- ],
- "doi:10.1016/j.websem.2021.100694": [
- {
- "family": "Scioscia",
- "given": "Floriano",
- "orcid": "0000-0002-7859-9602"
- },
- {
- "family": "Bilenchi",
- "given": "Ivano",
- "orcid": "0000-0001-8294-2445"
- },
- {
- "family": "Ruta",
- "given": "Michele",
- "orcid": "0000-0003-2125-327X"
- },
- {
- "family": "Gramegna",
- "given": "Filippo",
- "orcid": "0000-0003-4162-957X"
- },
- {
- "family": "Loconte",
- "given": "Davide",
- "orcid": "0000-0002-0182-4672"
- }
- ],
- "doi:10.3390/jsan10040066": [
- {
- "family": "Hina",
- "given": "Manolo Dulva",
- "orcid": "0000-0001-8523-3986"
- }
- ],
- "doi:10.3390/app10186328": [
- {
- "family": "Mendez",
- "given": "Jose R.",
- "orcid": "0000-0002-1935-4760"
- },
- {
- "family": "Basto-Fernandes",
- "given": "Vitor",
- "orcid": "0000-0003-4269-5114"
- }
- ],
- "doi:10.1101/256529": [
- {
- "family": "Kulmanov",
- "given": "Maxat",
- "orcid": "0000-0003-1710-1820"
- },
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.1007/978-3-030-61380-8_3": [
- {
- "family": "Sperotto",
- "given": "Fábio Aiub",
- "orcid": "0000-0002-7153-5630"
- },
- {
- "family": "De Aguiar",
- "given": "Marilton Sanchotene",
- "orcid": "0000-0002-5247-6022"
- }
- ],
- "doi:10.1186/s13326-016-0091-z": [
- {
- "family": "Fernández-Breis",
- "given": "Jesualdo Tomás",
- "orcid": "0000-0002-7558-2880"
- }
- ],
- "doi:10.1186/s13326-017-0133-1": [
- {
- "family": "Gonçalves",
- "given": "Rafael S.",
- "orcid": "0000-0003-1255-0125"
- }
- ],
- "doi:10.1186/s12859-017-1999-8": [
- {
- "family": "RodrÃguez-GarcÃa",
- "given": "Miguel Ãngel",
- "orcid": "0000-0001-6244-6532"
- }
- ],
- "doi:10.1093/bib/bby015": [
- {
- "family": "Oliveira",
- "given": "Daniela",
- "orcid": "0000-0003-0559-8737"
- }
- ],
- "doi:10.1186/s12911-017-0568-4": [
- {
- "family": "Taboada",
- "given": "MarÃa",
- "orcid": "0000-0002-2353-596X"
- }
- ],
- "doi:10.3390/ijgi8030107": [
- {
- "family": "Zhan",
- "given": "Wenqiang",
- "orcid": "0000-0002-9003-0478"
- }
- ],
- "doi:10.1002/cpe.5743": [
- {
- "family": "Huang",
- "given": "Meifa",
- "orcid": "0000-0001-6491-4387"
- }
- ],
- "doi:10.1093/bioinformatics/bty933": [
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.1108/jeim-06-2016-0116": [
- {
- "family": "Koutsomitropoulos",
- "given": "Dimitrios",
- "orcid": "0000-0003-4847-0100"
- }
- ],
- "doi:10.1007/978-3-030-00461-3_6": [
- {
- "family": "Cota",
- "given": "Giuseppe",
- "orcid": "0000-0002-3780-6265"
- },
- {
- "family": "Riguzzi",
- "given": "Fabrizio",
- "orcid": "0000-0003-1654-9703"
- },
- {
- "family": "Zese",
- "given": "Riccardo",
- "orcid": "0000-0001-8352-6304"
- },
- {
- "family": "Bellodi",
- "given": "Elena",
- "orcid": "0000-0002-3717-3779"
- },
- {
- "family": "Lamma",
- "given": "Evelina",
- "orcid": "0000-0003-2747-4292"
- }
- ],
- "doi:10.1186/s12911-020-01267-y": [
- {
- "family": "Tao",
- "given": "Cui",
- "orcid": "0000-0002-4267-1924"
- }
- ],
- "doi:10.1186/s12911-020-01336-2": [
- {
- "family": "Slater",
- "given": "Luke T.",
- "orcid": "0000-0001-9227-0670"
- }
- ],
- "doi:10.1186/s13326-018-0191-z": [
- {
- "family": "Metke-Jimenez",
- "given": "Alejandro",
- "orcid": "0000-0003-1068-0938"
- }
- ],
- "doi:10.1186/s13326-020-00233-x": [
- {
- "family": "Nicholson",
- "given": "Nicholas Charles",
- "orcid": "0000-0003-1149-1426"
- }
- ],
- "doi:10.1016/j.rcim.2018.04.002": [
- {
- "family": "Å ormaz",
- "given": "Dušan",
- "orcid": "0000-0003-3726-3288"
- },
- {
- "family": "Sarkar",
- "given": "Arkopaul",
- "orcid": "0000-0002-8967-7813"
- }
- ],
- "doi:10.1016/j.ins.2016.05.022": [
- {
- "family": "MartÃnez-Cruz",
- "given": "Carmen",
- "orcid": "0000-0002-8117-0647"
- }
- ],
- "doi:10.1016/j.jbi.2018.06.008": [
- {
- "family": "Cornet",
- "given": "Ronald",
- "orcid": "0000-0002-1704-5980"
- }
- ],
- "doi:10.1049/sfw2.12034": [
- {
- "family": "Barbosa",
- "given": "Jorge L. V.",
- "orcid": "0000-0002-0358-2056"
- },
- {
- "family": "Dias",
- "given": "Lucas P. S.",
- "orcid": "0000-0001-9560-0874"
- },
- {
- "family": "Nesi",
- "given": "Luan C.",
- "orcid": "0000-0001-9612-7900"
- }
- ],
- "doi:10.1007/s10579-021-09546-4": [
- {
- "family": "Bellandi",
- "given": "Andrea",
- "orcid": "0000-0002-1900-5616"
- }
- ],
- "doi:10.1007/978-3-030-75775-5_15": [
- {
- "family": "Parsia",
- "given": "Bijan",
- "orcid": "0000-0002-3222-7571"
- }
- ],
- "doi:10.4018/978-1-7998-6992-4.ch019": [
- {
- "family": "Ihianle",
- "given": "Isibor Kennedy",
- "orcid": "0000-0001-7445-8573"
- }
- ],
- "doi:10.1007/s00165-021-00549-0": [
- {
- "family": "Dubslaff",
- "given": "Clemens",
- "orcid": "0000-0001-5718-8276"
- },
- {
- "family": "Koopmann",
- "given": "Patrick",
- "orcid": "0000-0001-5999-2583"
- },
- {
- "family": "Turhan",
- "given": "Anni-Yasmin",
- "orcid": "0000-0001-6336-335X"
- }
- ],
- "doi:10.1007/978-3-030-77817-0_19": [
- {
- "family": "Ngantcha",
- "given": "Patricia",
- "orcid": "0000-0002-8615-5665"
- }
- ],
- "doi:10.1007/s13740-021-00133-y": [
- {
- "family": "Kokar",
- "given": "Mieczyslaw M.",
- "orcid": "0000-0001-9243-3089"
- }
- ],
- "doi:10.1155/2018/5083247": [
- {
- "family": "Qin",
- "given": "Feiwei",
- "orcid": "0000-0001-5036-9365"
- },
- {
- "family": "Peng",
- "given": "Yong",
- "orcid": "0000-0003-1208-972X"
- }
- ],
- "doi:10.1007/s10817-017-9406-8": [
- {
- "family": "Parsia",
- "given": "Bijan",
- "orcid": "0000-0002-3222-7571"
- },
- {
- "family": "Matentzoglu",
- "given": "Nicolas",
- "orcid": "0000-0002-7356-1779"
- }
- ],
- "doi:10.1186/s40965-018-0053-8": [
- {
- "family": "Degbelo",
- "given": "Auriol",
- "orcid": "0000-0001-5087-8776"
- }
- ],
- "doi:10.1007/978-3-319-99906-7_15": [
- {
- "family": "Barreto",
- "given": "Renan Gomes",
- "orcid": "0000-0002-0919-6957"
- },
- {
- "family": "Aversari",
- "given": "Lucas Oliveira Costa",
- "orcid": "0000-0003-4152-5842"
- },
- {
- "family": "Gomes",
- "given": "CecÃlia Neta Alves Pegado",
- "orcid": "0000-0003-2395-4846"
- },
- {
- "family": "Lino",
- "given": "Natasha Correia Queiroz",
- "orcid": "0000-0002-8131-0566"
- }
- ],
- "doi:10.1007/s00354-019-00072-0": [
- {
- "family": "Jearanaiwongkul",
- "given": "Watanee",
- "orcid": "0000-0003-2101-1625"
- }
- ],
- "doi:10.1111/exsy.12519": [
- {
- "family": "Çelik Ertuğrul",
- "given": "Duygu",
- "orcid": "0000-0003-1380-705X"
- }
- ],
- "doi:10.1038/s41598-019-40368-1": [
- {
- "family": "Alghamdi",
- "given": "Sarah M.",
- "orcid": "0000-0001-5544-7166"
- },
- {
- "family": "Sundberg",
- "given": "Beth A.",
- "orcid": "0000-0002-4261-0750"
- },
- {
- "family": "Schofield",
- "given": "Paul N.",
- "orcid": "0000-0002-5111-7263"
- },
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.1002/er.5262": [
- {
- "family": "Park",
- "given": "Moonâ€Ghu",
- "orcid": "0000-0002-4807-096X"
- }
- ],
- "doi:10.4018/ijsita.2019040104": [
- {
- "family": "Benslimane",
- "given": "Sidi Mohamed",
- "orcid": "0000-0002-7008-7434"
- }
- ],
- "doi:10.1007/978-3-030-34968-4_11": [
- {
- "family": "Dubslaff",
- "given": "Clemens",
- "orcid": "0000-0001-5718-8276"
- },
- {
- "family": "Koopmann",
- "given": "Patrick",
- "orcid": "0000-0001-5999-2583"
- }
- ],
- "doi:10.1017/s026988892000017x": [
- {
- "family": "Mohammadi",
- "given": "Majid",
- "orcid": "0000-0002-7131-8724"
- }
- ],
- "doi:10.3390/app9214547": [
- {
- "family": "Vega-Barbas",
- "given": "Mario",
- "orcid": "0000-0003-4506-6284"
- },
- {
- "family": "Villagrá",
- "given": "VÃctor A.",
- "orcid": "0000-0002-7067-6968"
- },
- {
- "family": "Riesco",
- "given": "Raúl",
- "orcid": "0000-0001-9258-1524"
- },
- {
- "family": "Larriva-Novo",
- "given": "Xavier",
- "orcid": "0000-0001-5335-5698"
- },
- {
- "family": "Berrocal",
- "given": "Julio",
- "orcid": "0000-0001-6822-0921"
- }
- ],
- "doi:10.1080/00207543.2019.1680895": [
- {
- "family": "Zhang",
- "given": "Heng",
- "orcid": "0000-0001-6960-7634"
- }
- ],
- "doi:10.4018/ijkss.2020040101": [
- {
- "family": "Takhom",
- "given": "Akkharawoot",
- "orcid": "0000-0002-7192-2585"
- }
- ],
- "doi:10.1002/cpe.5744": [
- {
- "family": "Huang",
- "given": "Meifa",
- "orcid": "0000-0001-6491-4387"
- }
- ],
- "doi:10.1093/bib/bbz009": [
- {
- "family": "Fernández-Breis",
- "given": "Jesualdo Tomás",
- "orcid": "0000-0002-7558-2880"
- }
- ],
- "doi:10.1101/2020.05.16.099309": [
- {
- "family": "Slater",
- "given": "Luke T",
- "orcid": "0000-0001-9227-0670"
- },
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.4018/ijhcitp.2020070105": [
- {
- "family": "Mira Da Silva",
- "given": "Miguel",
- "orcid": "0000-0002-0489-4465"
- }
- ],
- "doi:10.1007/s13218-020-00655-w": [
- {
- "family": "Koopmann",
- "given": "Patrick",
- "orcid": "0000-0001-5999-2583"
- }
- ],
- "doi:10.1186/s13326-016-0055-3": [
- {
- "family": "Jupp",
- "given": "Simon",
- "orcid": "0000-0002-0643-3144"
- }
- ],
- "doi:10.1186/s13326-017-0170-9": [
- {
- "family": "Faria",
- "given": "Daniel",
- "orcid": "0000-0003-1511-277X"
- }
- ],
- "doi:10.1017/s1471068420000101": [
- {
- "family": "Karimi",
- "given": "Arash",
- "orcid": "0000-0001-7618-094X"
- }
- ],
- "doi:10.1186/s13673-019-0184-7": [
- {
- "family": "Khanam",
- "given": "Shirin Akther",
- "orcid": "0000-0001-5522-8406"
- }
- ],
- "doi:10.3390/s16101596": [
- {
- "family": "Zhao",
- "given": "Shuai",
- "orcid": "0000-0002-5217-004X"
- }
- ],
- "doi:10.1007/s00799-018-0256-8": [
- {
- "family": "González Pinto",
- "given": "José MarÃa",
- "orcid": "0000-0002-2908-3466"
- }
- ],
- "doi:10.1007/s11276-019-02029-z": [
- {
- "family": "Sánchez-Cervantes",
- "given": "José Luis",
- "orcid": "0000-0001-5194-1263"
- },
- {
- "family": "Alor-Hernández",
- "given": "Giner",
- "orcid": "0000-0003-3296-0981"
- },
- {
- "family": "GarcÃa-Alcaráz",
- "given": "Jorge Luis",
- "orcid": "0000-0002-7092-6963"
- }
- ],
- "doi:10.1038/sdata.2016.18": [
- {
- "family": "Wilkinson",
- "given": "Mark D.",
- "orcid": "0000-0001-6960-357X"
- },
- {
- "family": "Dumontier",
- "given": "Michel",
- "orcid": "0000-0003-4727-9435"
- },
- {
- "family": "Aalbersberg",
- "given": "Ijsbrand Jan",
- "orcid": "0000-0002-0209-4480"
- },
- {
- "family": "Appleton",
- "given": "Gabrielle",
- "orcid": "0000-0003-0179-7384"
- },
- {
- "family": "Axton",
- "given": "Myles",
- "orcid": "0000-0002-8042-4131"
- },
- {
- "family": "Baak",
- "given": "Arie",
- "orcid": "0000-0003-2829-6715"
- },
- {
- "family": "Blomberg",
- "given": "Niklas",
- "orcid": "0000-0003-4155-5910"
- },
- {
- "family": "Boiten",
- "given": "Jan-Willem",
- "orcid": "0000-0003-0327-638X"
- },
- {
- "family": "Da Silva Santos",
- "given": "Luiz Bonino",
- "orcid": "0000-0002-1164-1351"
- },
- {
- "family": "Bourne",
- "given": "Philip E.",
- "orcid": "0000-0002-7618-7292"
- },
- {
- "family": "Brookes",
- "given": "Anthony J.",
- "orcid": "0000-0001-8686-0017"
- },
- {
- "family": "Clark",
- "given": "Tim",
- "orcid": "0000-0003-4060-7360"
- },
- {
- "family": "Crosas",
- "given": "Mercè",
- "orcid": "0000-0003-1304-1939"
- },
- {
- "family": "Dillo",
- "given": "Ingrid",
- "orcid": "0000-0001-5654-2392"
- },
- {
- "family": "Dumon",
- "given": "Olivier",
- "orcid": "0000-0001-8599-7345"
- },
- {
- "family": "Edmunds",
- "given": "Scott",
- "orcid": "0000-0001-6444-1436"
- },
- {
- "family": "Evelo",
- "given": "Chris T.",
- "orcid": "0000-0002-5301-3142"
- },
- {
- "family": "Finkers",
- "given": "Richard",
- "orcid": "0000-0002-4368-8058"
- },
- {
- "family": "Gonzalez-Beltran",
- "given": "Alejandra",
- "orcid": "0000-0003-3499-8262"
- },
- {
- "family": "Gray",
- "given": "Alasdair J.G.",
- "orcid": "0000-0002-5711-4872"
- },
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- },
- {
- "family": "Goble",
- "given": "Carole",
- "orcid": "0000-0003-1219-2137"
- },
- {
- "family": "Grethe",
- "given": "Jeffrey S.",
- "orcid": "0000-0001-5212-7052"
- },
- {
- "family": "Heringa",
- "given": "Jaap",
- "orcid": "0000-0001-8641-4930"
- },
- {
- "family": "’T Hoen",
- "given": "Peter A.C",
- "orcid": "0000-0003-4450-3112"
- },
- {
- "family": "Hooft",
- "given": "Rob",
- "orcid": "0000-0001-6825-9439"
- },
- {
- "family": "Kuhn",
- "given": "Tobias",
- "orcid": "0000-0002-1267-0234"
- },
- {
- "family": "Kok",
- "given": "Joost",
- "orcid": "0000-0002-7352-1400"
- },
- {
- "family": "Lusher",
- "given": "Scott J.",
- "orcid": "0000-0003-2401-4223"
- },
- {
- "family": "Martone",
- "given": "Maryann E.",
- "orcid": "0000-0002-8406-3871"
- },
- {
- "family": "Packer",
- "given": "Abel L.",
- "orcid": "0000-0001-9610-5728"
- },
- {
- "family": "Persson",
- "given": "Bengt",
- "orcid": "0000-0003-3165-5344"
- },
- {
- "family": "Rocca-Serra",
- "given": "Philippe",
- "orcid": "0000-0001-9853-5668"
- },
- {
- "family": "Roos",
- "given": "Marco",
- "orcid": "0000-0002-8691-772X"
- },
- {
- "family": "Sansone",
- "given": "Susanna-Assunta",
- "orcid": "0000-0001-5306-5690"
- },
- {
- "family": "Schultes",
- "given": "Erik",
- "orcid": "0000-0001-8888-635X"
- },
- {
- "family": "Sengstag",
- "given": "Thierry",
- "orcid": "0000-0002-7516-6246"
- },
- {
- "family": "Slater",
- "given": "Ted",
- "orcid": "0000-0003-1386-0731"
- },
- {
- "family": "Swertz",
- "given": "Morris A.",
- "orcid": "0000-0002-0979-3401"
- },
- {
- "family": "Thompson",
- "given": "Mark",
- "orcid": "0000-0002-7633-1442"
- },
- {
- "family": "Van Mulligen",
- "given": "Erik",
- "orcid": "0000-0003-1377-9386"
- },
- {
- "family": "Velterop",
- "given": "Jan",
- "orcid": "0000-0002-4836-6568"
- },
- {
- "family": "Waagmeester",
- "given": "Andra",
- "orcid": "0000-0001-9773-4008"
- },
- {
- "family": "Wolstencroft",
- "given": "Katherine",
- "orcid": "0000-0002-1279-5133"
- },
- {
- "family": "Zhao",
- "given": "Jun",
- "orcid": "0000-0001-6935-9028"
- },
- {
- "family": "Mons",
- "given": "Barend",
- "orcid": "0000-0003-3934-0072"
- }
- ],
- "doi:10.1007/978-3-030-30796-7_28": [
- {
- "family": "Lisena",
- "given": "Pasquale",
- "orcid": "0000-0003-3094-5585"
- },
- {
- "family": "Meroño-Peñuela",
- "given": "Albert",
- "orcid": "0000-0003-4646-5842"
- },
- {
- "family": "Kuhn",
- "given": "Tobias",
- "orcid": "0000-0002-1267-0234"
- },
- {
- "family": "Troncy",
- "given": "Raphaël",
- "orcid": "0000-0003-0457-1436"
- }
- ],
- "doi:10.1108/dta-09-2019-0164": [
- {
- "family": "Anjaria",
- "given": "Kushal Ajaybhai",
- "orcid": "0000-0001-9034-6977"
- }
- ],
- "doi:10.1007/978-3-030-46970-2_22": [
- {
- "family": "Trifan",
- "given": "Alina",
- "orcid": "0000-0001-7613-1435"
- },
- {
- "family": "Oliveira",
- "given": "José LuÃs",
- "orcid": "0000-0002-6672-6176"
- }
- ],
- "doi:10.1093/bioinformatics/btx566": [
- {
- "family": "Pastor",
- "given": "Manuel",
- "orcid": "0000-0001-8850-1341"
- }
- ],
- "doi:10.1145/3345551": [
- {
- "family": "Mountantonakis",
- "given": "Michalis",
- "orcid": "0000-0002-1951-0241"
- }
- ],
- "doi:10.1016/j.websem.2014.11.003": [
- {
- "family": "Loizou",
- "given": "Antonis",
- "orcid": "0000-0002-1303-2189"
- },
- {
- "family": "Angles",
- "given": "Renzo",
- "orcid": "0000-0002-6740-9711"
- },
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- }
- ],
- "doi:10.1016/j.compag.2017.10.012": [
- {
- "family": "Aubin",
- "given": "Sophie",
- "orcid": "0000-0002-2404-1582"
- },
- {
- "family": "Pesce",
- "given": "Valeria",
- "orcid": "0000-0003-4805-8220"
- }
- ],
- "doi:10.1016/j.jbi.2019.103154": [
- {
- "family": "Trifan",
- "given": "Alina",
- "orcid": "0000-0002-6672-6176"
- }
- ],
- "doi:10.1007/s41061-021-00349-3": [
- {
- "family": "Hao",
- "given": "Ge-Fei",
- "orcid": "0000-0003-4090-8411"
- }
- ],
- "doi:10.1002/humu.23641": [
- {
- "family": "Landrum",
- "given": "Melissa J.",
- "orcid": "0000-0003-1914-2749"
- }
- ],
- "doi:10.1002/humu.23655": [
- {
- "family": "Wojcik",
- "given": "Monica H",
- "orcid": "0000-0002-8162-5031"
- },
- {
- "family": "Rehm",
- "given": "Heidi L.",
- "orcid": "0000-0002-6025-0015"
- }
- ],
- "doi:10.1007/s10592-018-1072-9": [
- {
- "family": "Muñoz-Fuentes",
- "given": "Violeta",
- "orcid": "0000-0003-3574-546X"
- },
- {
- "family": "Cacheiro",
- "given": "Pilar",
- "orcid": "0000-0002-6335-8208"
- },
- {
- "family": "Meehan",
- "given": "Terrence F.",
- "orcid": "0000-0003-1980-3228"
- },
- {
- "family": "Aguilar-Pimentel",
- "given": "Juan Antonio",
- "orcid": "0000-0002-4694-7107"
- }
- ],
- "doi:10.1038/nprot.2015.124": [
- {
- "family": "Jacobsen",
- "given": "Julius O B",
- "orcid": "0000-0002-3265-1591"
- },
- {
- "family": "Köhler",
- "given": "Sebastian",
- "orcid": "0000-0002-5316-1399"
- },
- {
- "family": "Buske",
- "given": "Orion J",
- "orcid": "0000-0002-9064-092X"
- },
- {
- "family": "Robinson",
- "given": "Peter N",
- "orcid": "0000-0002-0736-9199"
- }
- ],
- "doi:10.1038/s41588-018-0096-x": [
- {
- "family": "Vasilevsky",
- "given": "Nicole A.",
- "orcid": "0000-0001-5208-3432"
- },
- {
- "family": "Carmody",
- "given": "Leigh",
- "orcid": "0000-0001-7941-2961"
- },
- {
- "family": "Baynam",
- "given": "Gareth",
- "orcid": "0000-0003-4920-9553"
- },
- {
- "family": "Chong",
- "given": "Jessica",
- "orcid": "0000-0002-1616-2448"
- },
- {
- "family": "Adams",
- "given": "David",
- "orcid": "0000-0002-6660-1242"
- },
- {
- "family": "Rageth",
- "given": "Kayli",
- "orcid": "0000-0002-6387-4317"
- },
- {
- "family": "Robinson",
- "given": "Peter N.",
- "orcid": "0000-0002-0736-9199"
- },
- {
- "family": "Köhler",
- "given": "Sebastian",
- "orcid": "0000-0002-5316-1399"
- },
- {
- "family": "Haendel",
- "given": "Melissa A.",
- "orcid": "0000-0001-9114-8737"
- }
- ],
- "doi:10.1038/s41746-019-0110-4": [
- {
- "family": "Zhang",
- "given": "Xingmin Aaron",
- "orcid": "0000-0002-7284-3950"
- },
- {
- "family": "Yates",
- "given": "Amy",
- "orcid": "0000-0002-0664-7185"
- },
- {
- "family": "Vasilevsky",
- "given": "Nicole",
- "orcid": "0000-0001-5208-3432"
- },
- {
- "family": "Callahan",
- "given": "Tiffany J.",
- "orcid": "0000-0002-8169-9049"
- },
- {
- "family": "Carmody",
- "given": "Leigh C.",
- "orcid": "0000-0001-7941-2961"
- },
- {
- "family": "Danis",
- "given": "Daniel",
- "orcid": "0000-0003-0900-3411"
- },
- {
- "family": "Fecho",
- "given": "Karamarie",
- "orcid": "0000-0002-6704-9306"
- },
- {
- "family": "Köhler",
- "given": "Sebastian",
- "orcid": "0000-0002-5316-1399"
- },
- {
- "family": "Vreeman",
- "given": "Daniel J.",
- "orcid": "0000-0001-5119-6531"
- },
- {
- "family": "Bennett",
- "given": "Tellen D.",
- "orcid": "0000-0003-1483-4236"
- },
- {
- "family": "Feinstein",
- "given": "James A.",
- "orcid": "0000-0003-3074-8805"
- },
- {
- "family": "Hunter",
- "given": "Lawrence E.",
- "orcid": "0000-0003-1455-3370"
- },
- {
- "family": "Chute",
- "given": "Christopher G.",
- "orcid": "0000-0001-5437-2545"
- },
- {
- "family": "Robinson",
- "given": "Peter N.",
- "orcid": "0000-0002-0736-9199"
- }
- ],
- "doi:10.1093/nar/gkx1132": [
- {
- "family": "Fabregat",
- "given": "Antonio",
- "orcid": "0000-0002-3288-8599"
- },
- {
- "family": "D’Eustachio",
- "given": "Peter",
- "orcid": "0000-0002-5494-626X"
- }
- ],
- "doi:10.1093/nar/gkx998": [
- {
- "family": "Lee",
- "given": "Raymond Y N",
- "orcid": "0000-0002-8151-7479"
- },
- {
- "family": "Howe",
- "given": "Kevin L",
- "orcid": "0000-0002-1751-9226"
- },
- {
- "family": "Kersey",
- "given": "Paul",
- "orcid": "0000-0002-7054-800X"
- }
- ],
- "doi:10.1093/nar/gky1003": [
- {
- "family": "Gramates",
- "given": "L Sian",
- "orcid": "0000-0002-6700-3797"
- }
- ],
- "doi:10.1093/nar/gky1056": [
- {
- "family": "Bult",
- "given": "Carol J",
- "orcid": "0000-0001-9433-210X"
- },
- {
- "family": "Blake",
- "given": "Judith A",
- "orcid": "0000-0001-8522-334X"
- },
- {
- "family": "Smith",
- "given": "Cynthia L",
- "orcid": "0000-0003-3691-0324"
- }
- ],
- "doi:10.1093/nar/gky1079": [
- {
- "family": "Tyers",
- "given": "Mike",
- "orcid": "0000-0002-9713-9994"
- }
- ],
- "doi:10.1093/nar/gky1105": [
- {
- "family": "Köhler",
- "given": "Sebastian",
- "orcid": "0000-0002-5316-1399"
- },
- {
- "family": "Vasilevsky",
- "given": "Nicole",
- "orcid": "0000-0001-5208-3432"
- },
- {
- "family": "Gourdine",
- "given": "Jean-Philippe",
- "orcid": "0000-0001-9969-8610"
- },
- {
- "family": "Mcmurry",
- "given": "Julie A",
- "orcid": "0000-0002-9353-5498"
- },
- {
- "family": "Cipriani",
- "given": "Valentina",
- "orcid": "0000-0002-0839-9955"
- },
- {
- "family": "Balhoff",
- "given": "James P",
- "orcid": "0000-0002-8688-6599"
- },
- {
- "family": "Conlin",
- "given": "Tom",
- "orcid": "0000-0003-0355-5581"
- },
- {
- "family": "Blau",
- "given": "Hannah",
- "orcid": "0000-0003-4557-5492"
- },
- {
- "family": "Laulederkind",
- "given": "Stanley J F",
- "orcid": "0000-0001-5356-4174"
- },
- {
- "family": "Yüksel",
- "given": "Zafer",
- "orcid": "0000-0002-2085-5773"
- },
- {
- "family": "Beltran",
- "given": "Sergi",
- "orcid": "0000-0002-2810-3445"
- },
- {
- "family": "Bello",
- "given": "Susan M",
- "orcid": "0000-0003-4606-0597"
- },
- {
- "family": "Wheeler",
- "given": "Matthew T",
- "orcid": "0000-0001-8721-3022"
- },
- {
- "family": "Thompson",
- "given": "Rachel",
- "orcid": "0000-0002-6889-0121"
- },
- {
- "family": "Lovering",
- "given": "Ruth C",
- "orcid": "0000-0002-9791-0064"
- },
- {
- "family": "Zhang",
- "given": "Xingmin A",
- "orcid": "0000-0002-7284-3950"
- },
- {
- "family": "Lochmüller",
- "given": "Hanns",
- "orcid": "0000-0003-2324-8001"
- },
- {
- "family": "Rath",
- "given": "Ana",
- "orcid": "0000-0003-4308-6337"
- },
- {
- "family": "Smith",
- "given": "Cynthia",
- "orcid": "0000-0003-3691-0324"
- },
- {
- "family": "Robinson",
- "given": "Peter N",
- "orcid": "0000-0002-0736-9199"
- }
- ],
- "doi:10.1093/nar/gky1120": [
- {
- "family": "Buniello",
- "given": "Annalisa",
- "orcid": "0000-0002-4623-8642"
- },
- {
- "family": "Flicek",
- "given": "Paul",
- "orcid": "0000-0002-3897-7955"
- },
- {
- "family": "Burdett",
- "given": "Tony",
- "orcid": "0000-0002-2513-5396"
- },
- {
- "family": "Cunningham",
- "given": "Fiona",
- "orcid": "0000-0002-7445-2419"
- }
- ],
- "doi:10.1093/nar/gky1131": [
- {
- "family": "Lyon",
- "given": "David",
- "orcid": "0000-0001-5794-0456"
- },
- {
- "family": "Junge",
- "given": "Alexander",
- "orcid": "0000-0002-2410-9671"
- },
- {
- "family": "Huerta-Cepas",
- "given": "Jaime",
- "orcid": "0000-0003-4195-5025"
- },
- {
- "family": "Doncheva",
- "given": "Nadezhda T",
- "orcid": "0000-0002-8806-6850"
- },
- {
- "family": "Morris",
- "given": "John H",
- "orcid": "0000-0003-0290-7979"
- },
- {
- "family": "Bork",
- "given": "Peer",
- "orcid": "0000-0002-2627-833X"
- },
- {
- "family": "Jensen",
- "given": "Lars J",
- "orcid": "0000-0001-7885-715X"
- },
- {
- "family": "Mering",
- "given": "Christian Von",
- "orcid": "0000-0001-7734-9102"
- }
- ],
- "doi:10.1186/s13326-017-0126-0": [
- {
- "family": "Osumi-Sutherland",
- "given": "David",
- "orcid": "0000-0002-7073-9172"
- }
- ],
- "doi:10.1371/journal.pone.0213090": [
- {
- "family": "Carbon",
- "given": "Seth",
- "orcid": "0000-0001-8244-1536"
- },
- {
- "family": "Champieux",
- "given": "Robin",
- "orcid": "0000-0001-7023-9832"
- },
- {
- "family": "Mcmurry",
- "given": "Julie A.",
- "orcid": "0000-0002-9353-5498"
- },
- {
- "family": "Winfree",
- "given": "Lilly",
- "orcid": "0000-0001-7120-8536"
- }
- ],
- "doi:10.1101/2020.03.06.980169": [
- {
- "family": "Statzer",
- "given": "Cyril",
- "orcid": "0000-0002-3980-8360"
- },
- {
- "family": "Ewald",
- "given": "Collin Y.",
- "orcid": "0000-0003-1166-4171"
- }
- ],
- "doi:10.1101/2020.04.06.027425": [
- {
- "family": "Bruskiewich",
- "given": "Richard M.",
- "orcid": "0000-0002-4447-5978"
- }
- ],
- "doi:10.1101/2020.07.11.198556": [
- {
- "family": "Nasr",
- "given": "Talia",
- "orcid": "0000-0002-2473-5402"
- },
- {
- "family": "Chaturvedi",
- "given": "Praneet",
- "orcid": "0000-0002-8713-6570"
- },
- {
- "family": "Trisno",
- "given": "Stephen L.",
- "orcid": "0000-0003-0937-4474"
- },
- {
- "family": "Wells",
- "given": "James M.",
- "orcid": "0000-0002-1398-848X"
- },
- {
- "family": "Sinner",
- "given": "Debora",
- "orcid": "0000-0002-0704-5223"
- },
- {
- "family": "Zorn",
- "given": "Aaron M.",
- "orcid": "0000-0003-3217-3590"
- }
- ],
- "doi:10.1101/2020.07.16.206243": [
- {
- "family": "Siegele",
- "given": "Deborah A.",
- "orcid": "0000-0001-8935-0696"
- }
- ],
- "doi:10.1101/2020.07.10.197541": [
- {
- "family": "Slater",
- "given": "Luke T",
- "orcid": "0000-0001-9227-0670"
- },
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- },
- {
- "family": "Gkoutos",
- "given": "Georgios V",
- "orcid": "0000-0002-2061-091X"
- }
- ],
- "doi:10.1093/jamiaopen/ooaa030": [
- {
- "family": "Van Enckevort",
- "given": "Esther",
- "orcid": "0000-0002-2440-3993"
- }
- ],
- "doi:10.1101/2020.08.14.251579": [
- {
- "family": "Nowotarski",
- "given": "Stephanie H.",
- "orcid": "0000-0003-2569-1939"
- },
- {
- "family": "Davies",
- "given": "Erin L.",
- "orcid": "0000-0002-7535-4407"
- },
- {
- "family": "Robb",
- "given": "Sofia M. C.",
- "orcid": "0000-0002-3528-5267"
- },
- {
- "family": "Ross",
- "given": "Eric J.",
- "orcid": "0000-0001-8317-7271"
- },
- {
- "family": "Doddihal",
- "given": "Viraj",
- "orcid": "0000-0002-3918-4412"
- },
- {
- "family": "Mcclain",
- "given": "Melainia",
- "orcid": "0000-0002-8947-9841"
- },
- {
- "family": "Alvarado",
- "given": "Alejandro Sánchez",
- "orcid": "0000-0002-1966-6959"
- }
- ],
- "doi:10.1038/s41581-020-00335-w": [
- {
- "family": "Ong",
- "given": "Edison",
- "orcid": "0000-0002-5159-414X"
- },
- {
- "family": "Wang",
- "given": "Lucy L.",
- "orcid": "0000-0001-8752-6635"
- },
- {
- "family": "Schaub",
- "given": "Jennifer",
- "orcid": "0000-0001-8788-239X"
- },
- {
- "family": "Steck",
- "given": "Becky",
- "orcid": "0000-0001-7565-4904"
- },
- {
- "family": "Dowd",
- "given": "Frederick",
- "orcid": "0000-0002-6199-6345"
- },
- {
- "family": "Barisoni",
- "given": "Laura",
- "orcid": "0000-0003-0848-9683"
- },
- {
- "family": "Valerius",
- "given": "M. Todd",
- "orcid": "0000-0001-8143-9231"
- },
- {
- "family": "Crawford",
- "given": "Dana C.",
- "orcid": "0000-0002-6437-6248"
- },
- {
- "family": "Alexandrov",
- "given": "Theodore",
- "orcid": "0000-0001-9464-6125"
- },
- {
- "family": "Anderton",
- "given": "Christopher R.",
- "orcid": "0000-0002-6170-1033"
- },
- {
- "family": "Stoeckert",
- "given": "Christian",
- "orcid": "0000-0002-5714-991X"
- },
- {
- "family": "Diehl",
- "given": "Alexander D.",
- "orcid": "0000-0001-9990-8331"
- },
- {
- "family": "Robinson",
- "given": "Peter N.",
- "orcid": "0000-0002-0736-9199"
- },
- {
- "family": "Himmelfarb",
- "given": "Jonathan",
- "orcid": "0000-0002-3319-1224"
- },
- {
- "family": "Kretzler",
- "given": "Matthias",
- "orcid": "0000-0003-4064-0582"
- },
- {
- "family": "He",
- "given": "Yongqun",
- "orcid": "0000-0001-9189-9661"
- }
- ],
- "doi:10.1093/nar/gkaa753": [
- {
- "family": "Zhang",
- "given": "Jian",
- "orcid": "0000-0002-6558-791X"
- }
- ],
- "doi:10.12688/f1000research.25144.1": [
- {
- "family": "François",
- "given": "Liesbeth",
- "orcid": "0000-0001-6346-8303"
- },
- {
- "family": "Godard",
- "given": "Patrice",
- "orcid": "0000-0001-6257-9730"
- }
- ],
- "doi:10.1371/journal.pcbi.1008376": [
- {
- "family": "Thessen",
- "given": "Anne E.",
- "orcid": "0000-0002-2908-3327"
- },
- {
- "family": "Walls",
- "given": "Ramona L.",
- "orcid": "0000-0001-8815-0078"
- },
- {
- "family": "Vogt",
- "given": "Lars",
- "orcid": "0000-0002-8280-0487"
- },
- {
- "family": "Buttigieg",
- "given": "Pier Luigi",
- "orcid": "0000-0002-4366-3088"
- },
- {
- "family": "Mungall",
- "given": "Christopher J.",
- "orcid": "0000-0002-6601-2165"
- },
- {
- "family": "Mcguinness",
- "given": "Deborah L.",
- "orcid": "0000-0001-7037-4567"
- },
- {
- "family": "Haendel",
- "given": "Melissa A.",
- "orcid": "0000-0001-9114-8737"
- }
- ],
- "doi:10.1371/journal.pcbi.1008453": [
- {
- "family": "Kulmanov",
- "given": "Maxat",
- "orcid": "0000-0003-1710-1820"
- },
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.1093/bioinformatics/btaa879": [
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.1093/nar/gkaa1043": [
- {
- "family": "Rosenberg",
- "given": "Avi Z",
- "orcid": "0000-0003-2356-950X"
- },
- {
- "family": "Robinson",
- "given": "Peter N",
- "orcid": "0000-0002-0736-9199"
- }
- ],
- "doi:10.1093/nar/gkaa980": [
- {
- "family": "Tweedie",
- "given": "Susan",
- "orcid": "0000-0003-1818-8243"
- },
- {
- "family": "Braschi",
- "given": "Bryony",
- "orcid": "0000-0002-5269-0985"
- },
- {
- "family": "Jones",
- "given": "Tamsin E M",
- "orcid": "0000-0002-0027-0858"
- },
- {
- "family": "Yates",
- "given": "Bethan",
- "orcid": "0000-0003-1658-1762"
- },
- {
- "family": "Bruford",
- "given": "Elspeth A",
- "orcid": "0000-0002-8380-5247"
- }
- ],
- "doi:10.1093/g3journal/jkaa035": [
- {
- "family": "Wu",
- "given": "Peter I-Fan",
- "orcid": "0000-0001-5570-4871"
- },
- {
- "family": "Siegele",
- "given": "Deborah A",
- "orcid": "0000-0001-8935-0696"
- }
- ],
- "doi:10.1093/bioinformatics/btab019": [
- {
- "family": "Luo",
- "given": "Ling",
- "orcid": "0000-0002-5141-0259"
- },
- {
- "family": "Yan",
- "given": "Shankai",
- "orcid": "0000-0003-0369-4979"
- },
- {
- "family": "Veltri",
- "given": "Daniel",
- "orcid": "0000-0002-6101-6693"
- },
- {
- "family": "Robinson",
- "given": "Peter N",
- "orcid": "0000-0002-0736-9199"
- },
- {
- "family": "Lu",
- "given": "Zhiyong",
- "orcid": "0000-0001-9998-916X"
- }
- ],
- "doi:10.1101/2021.01.28.428557": [
- {
- "family": "Althagafi",
- "given": "Azza",
- "orcid": "0000-0001-6084-8706"
- },
- {
- "family": "Kathiresan",
- "given": "Nagarajan",
- "orcid": "0000-0002-5558-6331"
- },
- {
- "family": "Mineta",
- "given": "Katsuhiko",
- "orcid": "0000-0002-4727-045X"
- },
- {
- "family": "Gojobori",
- "given": "Takashi",
- "orcid": "0000-0001-7850-1743"
- },
- {
- "family": "Alfares",
- "given": "Ahmad",
- "orcid": "0000-0003-4222-0952"
- },
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.1186/s13023-021-01797-2": [
- {
- "family": "Christesen",
- "given": "Henrik Thybo",
- "orcid": "0000-0001-5330-6853"
- }
- ],
- "doi:10.1242/dmm.046573": [
- {
- "family": "Nasr",
- "given": "Talia",
- "orcid": "0000-0002-2473-5402"
- },
- {
- "family": "Chaturvedi",
- "given": "Praneet",
- "orcid": "0000-0002-8713-6570"
- },
- {
- "family": "Trisno",
- "given": "Stephen L.",
- "orcid": "0000-0003-0937-4474"
- },
- {
- "family": "Wells",
- "given": "James M.",
- "orcid": "0000-0002-1398-848X"
- },
- {
- "family": "Sinner",
- "given": "Debora",
- "orcid": "0000-0002-0704-5223"
- },
- {
- "family": "Zorn",
- "given": "Aaron M.",
- "orcid": "0000-0003-3217-3590"
- }
- ],
- "doi:10.1371/journal.pone.0231916": [
- {
- "family": "Bruskiewich",
- "given": "Richard M.",
- "orcid": "0000-0002-4447-5978"
- }
- ],
- "doi:10.1016/j.crtox.2021.03.001": [
- {
- "family": "Grondin",
- "given": "Cynthia J.",
- "orcid": "0000-0002-4642-1738"
- }
- ],
- "doi:10.1038/s41398-021-01528-y": [
- {
- "family": "Chaudry",
- "given": "Besma S.",
- "orcid": "0000-0003-0340-3270"
- },
- {
- "family": "Osborn",
- "given": "Olivia",
- "orcid": "0000-0003-0516-7937"
- }
- ],
- "doi:10.1016/j.ydbio.2021.05.015": [
- {
- "family": "Edwards",
- "given": "Nicole A.",
- "orcid": "0000-0001-6952-2569"
- },
- {
- "family": "Shen",
- "given": "Yufeng",
- "orcid": "0000-0002-1299-5979"
- },
- {
- "family": "Chung",
- "given": "Wendy K.",
- "orcid": "0000-0003-3438-5685"
- },
- {
- "family": "Zorn",
- "given": "Aaron M.",
- "orcid": "0000-0003-3217-3590"
- }
- ],
- "doi:10.1101/2021.02.12.21251663": [
- {
- "family": "Wand",
- "given": "Hannah",
- "orcid": "0000-0001-8662-3353"
- }
- ],
- "doi:10.1002/1873-3468.14067": [
- {
- "family": "Wilson",
- "given": "Samantha L.",
- "orcid": "0000-0003-4346-9696"
- },
- {
- "family": "Way",
- "given": "Gregory P.",
- "orcid": "0000-0002-0503-9348"
- },
- {
- "family": "Bittremieux",
- "given": "Wout",
- "orcid": "0000-0002-3105-1359"
- },
- {
- "family": "Armache",
- "given": "Jeanâ€Paul",
- "orcid": "0000-0001-9195-2282"
- },
- {
- "family": "Haendel",
- "given": "Melissa A.",
- "orcid": "0000-0001-9114-8737"
- },
- {
- "family": "Hoffman",
- "given": "Michael M.",
- "orcid": "0000-0002-4517-1562"
- }
- ],
- "doi:10.1093/database/baab003": [
- {
- "family": "Chan",
- "given": "Lauren",
- "orcid": "0000-0002-7463-6306"
- },
- {
- "family": "Vasilevsky",
- "given": "Nicole",
- "orcid": "0000-0001-5208-3432"
- },
- {
- "family": "Thessen",
- "given": "Anne",
- "orcid": "0000-0002-2908-3327"
- }
- ],
- "doi:10.1002/ajmg.a.62239": [
- {
- "family": "Sobreira",
- "given": "Nara Lygia",
- "orcid": "0000-0002-5228-5613"
- }
- ],
- "doi:10.1186/s13326-021-00241-5": [
- {
- "family": "Slater",
- "given": "Luke T.",
- "orcid": "0000-0001-9227-0670"
- }
- ],
- "doi:10.1101/2021.03.01.433348": [
- {
- "family": "Carrio-Cordo",
- "given": "Paula",
- "orcid": "0000-0002-9367-640X"
- },
- {
- "family": "Baudis",
- "given": "Michael",
- "orcid": "0000-0002-9903-4248"
- }
- ],
- "doi:10.1093/bioinformatics/btaa1091": [
- {
- "family": "Sperandio",
- "given": "Olivier",
- "orcid": "0000-0001-6610-2729"
- }
- ],
- "doi:10.1242/dev.196097": [
- {
- "family": "Nowotarski",
- "given": "Stephanie H.",
- "orcid": "0000-0003-2569-1939"
- },
- {
- "family": "Davies",
- "given": "Erin L.",
- "orcid": "0000-0002-7535-4407"
- },
- {
- "family": "Robb",
- "given": "Sofia M. C.",
- "orcid": "0000-0002-3528-5267"
- },
- {
- "family": "Ross",
- "given": "Eric J.",
- "orcid": "0000-0001-8317-7271"
- },
- {
- "family": "Doddihal",
- "given": "Viraj",
- "orcid": "0000-0002-3918-4412"
- },
- {
- "family": "Mcclain",
- "given": "Melainia",
- "orcid": "0000-0002-8947-9841"
- },
- {
- "family": "Sánchez Alvarado",
- "given": "Alejandro",
- "orcid": "0000-0002-1966-6959"
- }
- ],
- "doi:10.1101/2021.06.23.21259416": [
- {
- "family": "Deer",
- "given": "Rachel R",
- "orcid": "0000-0001-6307-5227"
- },
- {
- "family": "Rock",
- "given": "Madeline A",
- "orcid": "0000-0003-4372-9056"
- },
- {
- "family": "Carmody",
- "given": "Leigh",
- "orcid": "0000-0001-7941-2961"
- },
- {
- "family": "Rando",
- "given": "Halie",
- "orcid": "0000-0001-7688-1770"
- },
- {
- "family": "Anzalone",
- "given": "Alfred J",
- "orcid": "0000-0002-3212-7845"
- },
- {
- "family": "Callahan",
- "given": "Tiffany J",
- "orcid": "0000-0002-8169-9049"
- },
- {
- "family": "Bramante",
- "given": "Carolyn T",
- "orcid": "0000-0001-5858-2080"
- },
- {
- "family": "Greene",
- "given": "Casey S",
- "orcid": "0000-0001-8713-9213"
- },
- {
- "family": "Chu",
- "given": "Haitao",
- "orcid": "0000-0003-0932-598X"
- },
- {
- "family": "Koraishy",
- "given": "Farrukh M",
- "orcid": "0000-0001-6974-5674"
- },
- {
- "family": "Liang",
- "given": "Chen",
- "orcid": "0000-0002-9803-9880"
- },
- {
- "family": "Liu",
- "given": "Feifan",
- "orcid": "0000-0003-0881-6365"
- },
- {
- "family": "Mcnair",
- "given": "Douglas S",
- "orcid": "0000-0003-0965-883X"
- },
- {
- "family": "Coleman",
- "given": "Ben D",
- "orcid": "0000-0002-4422-1708"
- },
- {
- "family": "Perry",
- "given": "Mallory A",
- "orcid": "0000-0001-5754-7857"
- },
- {
- "family": "Reese",
- "given": "Justin T",
- "orcid": "0000-0002-2170-2250"
- },
- {
- "family": "Saltz",
- "given": "Joel",
- "orcid": "0000-0002-3451-2165"
- },
- {
- "family": "Solomonides",
- "given": "Anthony E",
- "orcid": "0000-0003-2117-2461"
- },
- {
- "family": "Sule",
- "given": "Anupam A",
- "orcid": "0000-0002-5931-3381"
- },
- {
- "family": "Madhira",
- "given": "Vithal",
- "orcid": "0000-0001-5359-1703"
- },
- {
- "family": "Kavuluru",
- "given": "Ramakanth",
- "orcid": "0000-0003-1238-9378"
- },
- {
- "family": "Chan",
- "given": "Lauren E",
- "orcid": "0000-0002-7463-6306"
- },
- {
- "family": "Byrd",
- "given": "James Brian",
- "orcid": "0000-0002-0509-3520"
- },
- {
- "family": "Mcmurry",
- "given": "Julie A",
- "orcid": "0000-0002-9353-5498"
- },
- {
- "family": "Pfaff",
- "given": "Emily",
- "orcid": "0000-0002-6840-9756"
- },
- {
- "family": "Matentzoglu",
- "given": "Nicolas",
- "orcid": "0000-0002-7356-1779"
- },
- {
- "family": "Moffitt",
- "given": "Richard A",
- "orcid": "0000-0003-2723-5902"
- },
- {
- "family": "Schuff",
- "given": "Robert A",
- "orcid": "0000-0001-6213-730X"
- },
- {
- "family": "Bennett",
- "given": "Tellen D",
- "orcid": "0000-0003-1483-4236"
- },
- {
- "family": "Wang",
- "given": "Liwei",
- "orcid": "0000-0001-9970-8604"
- },
- {
- "family": "Robinson",
- "given": "Peter N",
- "orcid": "0000-0002-0736-9199"
- }
- ],
- "doi:10.1101/2021.09.07.459264": [
- {
- "family": "Harris",
- "given": "Midori A.",
- "orcid": "0000-0003-4148-4606"
- },
- {
- "family": "Bähler",
- "given": "Jürg",
- "orcid": "0000-0003-4036-1532"
- },
- {
- "family": "Oliver",
- "given": "Stephen G.",
- "orcid": "0000-0003-3410-6439"
- },
- {
- "family": "Mata",
- "given": "Juan",
- "orcid": "0000-0002-5514-3653"
- },
- {
- "family": "Wood",
- "given": "Valerie",
- "orcid": "0000-0001-6330-7526"
- }
- ],
- "doi:10.3390/cancers13164207": [
- {
- "family": "Chiusano",
- "given": "Maria Luisa",
- "orcid": "0000-0002-6296-7132"
- }
- ],
- "doi:10.1242/dev.200193": [
- {
- "family": "Bellen",
- "given": "Hugo J.",
- "orcid": "0000-0001-5992-5989"
- }
- ],
- "doi:10.1371/journal.pcbi.1009283": [
- {
- "family": "Konopka",
- "given": "Tomasz",
- "orcid": "0000-0003-3042-4712"
- },
- {
- "family": "Ng",
- "given": "Sandra",
- "orcid": "0000-0003-4524-6058"
- }
- ],
- "doi:10.3390/biom11081245": [
- {
- "family": "Baltoumas",
- "given": "Fotis A.",
- "orcid": "0000-0002-2870-2931"
- },
- {
- "family": "Karatzas",
- "given": "Evangelos",
- "orcid": "0000-0001-9132-8981"
- },
- {
- "family": "Voutsadaki",
- "given": "Kleanthi",
- "orcid": "0000-0002-4734-173X"
- },
- {
- "family": "Pavlopoulos",
- "given": "Georgios A.",
- "orcid": "0000-0002-4577-8276"
- }
- ],
- "doi:10.1186/s13326-021-00249-x": [
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.1093/bib/bbab363": [
- {
- "family": "Jithesh",
- "given": "Puthen Veettil",
- "orcid": "0000-0001-7747-0930"
- }
- ],
- "doi:10.3390/ijerph18178985": [
- {
- "family": "Holmgren",
- "given": "Stephanie D.",
- "orcid": "0000-0001-9416-365X"
- },
- {
- "family": "Duncan",
- "given": "Christopher G.",
- "orcid": "0000-0001-7205-2414"
- },
- {
- "family": "Kwok",
- "given": "Richard K.",
- "orcid": "0000-0002-6794-8360"
- },
- {
- "family": "Schmitt",
- "given": "Charles P.",
- "orcid": "0000-0002-3148-2263"
- }
- ],
- "doi:10.1038/s41467-021-26674-1": [
- {
- "family": "Buphamalai",
- "given": "Pisanu",
- "orcid": "0000-0002-9024-4193"
- },
- {
- "family": "Menche",
- "given": "Jörg",
- "orcid": "0000-0002-1583-6404"
- }
- ],
- "doi:10.1111/2041-210x.13753": [
- {
- "family": "Tarasov",
- "given": "Sergei",
- "orcid": "0000-0001-5237-2330"
- }
- ],
- "doi:10.1101/2021.10.27.21265326": [
- {
- "family": "Pais",
- "given": "Lynn S.",
- "orcid": "0000-0001-9673-4305"
- },
- {
- "family": "Weisburd",
- "given": "Ben",
- "orcid": "0000-0001-9898-9109"
- },
- {
- "family": "O’Donnell-Luria",
- "given": "Anne",
- "orcid": "0000-0001-6418-9592"
- }
- ],
- "doi:10.1101/2021.11.12.467727": [
- {
- "family": "Fisher",
- "given": "Malcolm E.",
- "orcid": "0000-0003-1074-8103"
- },
- {
- "family": "Segerdell",
- "given": "Erik",
- "orcid": "0000-0002-9611-1279"
- },
- {
- "family": "Matentzoglu",
- "given": "Nicolas",
- "orcid": "0000-0002-7356-1779"
- },
- {
- "family": "Nenni",
- "given": "Mardi J.",
- "orcid": "0000-0002-6238-1932"
- },
- {
- "family": "Fortriede",
- "given": "Joshua D.",
- "orcid": "0000-0002-3293-5463"
- },
- {
- "family": "Pells",
- "given": "Troy J.",
- "orcid": "0000-0002-2340-5356"
- },
- {
- "family": "Chaturvedi",
- "given": "Praneet",
- "orcid": "0000-0002-8713-6570"
- },
- {
- "family": "James-Zorn",
- "given": "Christina",
- "orcid": "0000-0001-5495-4588"
- },
- {
- "family": "Ponferrada",
- "given": "Virgilio",
- "orcid": "0000-0002-8590-7183"
- },
- {
- "family": "Karimi",
- "given": "Kamran",
- "orcid": "0000-0001-5733-9409"
- },
- {
- "family": "Vize",
- "given": "Peter D.",
- "orcid": "0000-0001-8026-0424"
- },
- {
- "family": "Zorn",
- "given": "Aaron M.",
- "orcid": "0000-0003-3217-3590"
- }
- ],
- "doi:10.1016/j.xgen.2021.100029": [
- {
- "family": "Rehm",
- "given": "Heidi L.",
- "orcid": "0000-0002-6025-0015"
- },
- {
- "family": "Page",
- "given": "Angela J.H.",
- "orcid": "0000-0002-4185-7268"
- },
- {
- "family": "Smith",
- "given": "Lindsay",
- "orcid": "0000-0002-0603-4178"
- },
- {
- "family": "Adams",
- "given": "Jeremy B.",
- "orcid": "0000-0003-1215-8123"
- },
- {
- "family": "Babb",
- "given": "Lawrence J.",
- "orcid": "0000-0002-2455-2227"
- },
- {
- "family": "Baudis",
- "given": "Michael",
- "orcid": "0000-0002-9903-4248"
- },
- {
- "family": "Beauvais",
- "given": "Michael J.S.",
- "orcid": "0000-0002-8371-3836"
- },
- {
- "family": "Beck",
- "given": "Tim",
- "orcid": "0000-0002-0292-7972"
- },
- {
- "family": "Beckmann",
- "given": "Jacques S.",
- "orcid": "0000-0002-9741-1900"
- },
- {
- "family": "Beltran",
- "given": "Sergi",
- "orcid": "0000-0002-2810-3445"
- },
- {
- "family": "Bonfield",
- "given": "James K.",
- "orcid": "0000-0002-6447-4112"
- },
- {
- "family": "Boughtwood",
- "given": "Tiffany F.",
- "orcid": "0000-0002-9634-3731"
- },
- {
- "family": "Bourque",
- "given": "Guillaume",
- "orcid": "0000-0002-3933-9656"
- },
- {
- "family": "Bowers",
- "given": "Sarion R.",
- "orcid": "0000-0002-5687-5397"
- },
- {
- "family": "Brudno",
- "given": "Michael",
- "orcid": "0000-0001-7947-2243"
- },
- {
- "family": "Brush",
- "given": "Matthew H.",
- "orcid": "0000-0002-1048-5019"
- },
- {
- "family": "Bujold",
- "given": "David",
- "orcid": "0000-0001-7860-3264"
- },
- {
- "family": "Burdett",
- "given": "Tony",
- "orcid": "0000-0002-2513-5396"
- },
- {
- "family": "Buske",
- "given": "Orion J.",
- "orcid": "0000-0002-9064-092X"
- },
- {
- "family": "Cabili",
- "given": "Moran N.",
- "orcid": "0000-0002-0488-1349"
- },
- {
- "family": "Cameron",
- "given": "Daniel L.",
- "orcid": "0000-0002-0951-7116"
- },
- {
- "family": "Carroll",
- "given": "Robert J.",
- "orcid": "0000-0003-3802-8183"
- },
- {
- "family": "Casas-Silva",
- "given": "Esmeralda",
- "orcid": "0000-0002-9704-0812"
- },
- {
- "family": "Chakravarty",
- "given": "Debyani",
- "orcid": "0000-0001-8629-5732"
- },
- {
- "family": "Chaudhari",
- "given": "Bimal P.",
- "orcid": "0000-0002-0115-949X"
- },
- {
- "family": "Cherry",
- "given": "J. Michael",
- "orcid": "0000-0001-9163-5180"
- },
- {
- "family": "Cline",
- "given": "Melissa",
- "orcid": "0000-0002-0148-1956"
- },
- {
- "family": "Clissold",
- "given": "Hayley L.",
- "orcid": "0000-0001-8072-724X"
- },
- {
- "family": "Cunningham",
- "given": "Fiona",
- "orcid": "0000-0002-7445-2419"
- },
- {
- "family": "Cupak",
- "given": "Miro",
- "orcid": "0000-0003-1631-8438"
- },
- {
- "family": "Davies",
- "given": "Robert M.",
- "orcid": "0000-0002-9983-1378"
- },
- {
- "family": "Denisko",
- "given": "Danielle",
- "orcid": "0000-0002-8544-0026"
- },
- {
- "family": "Doerr",
- "given": "Megan J.",
- "orcid": "0000-0003-2383-5978"
- },
- {
- "family": "Dolman",
- "given": "Lena I.",
- "orcid": "0000-0002-3938-588X"
- },
- {
- "family": "Dove",
- "given": "Edward S.",
- "orcid": "0000-0003-4095-3677"
- },
- {
- "family": "Eddy",
- "given": "James A.",
- "orcid": "0000-0001-9758-0176"
- },
- {
- "family": "Eilbeck",
- "given": "Karen",
- "orcid": "0000-0002-0831-6427"
- },
- {
- "family": "Ellrott",
- "given": "Kyle P.",
- "orcid": "0000-0002-6573-5900"
- },
- {
- "family": "Fairley",
- "given": "Susan",
- "orcid": "0000-0001-9425-0788"
- },
- {
- "family": "Fakhro",
- "given": "Khalid A.",
- "orcid": "0000-0002-3150-1276"
- },
- {
- "family": "Firth",
- "given": "Helen V.",
- "orcid": "0000-0002-6410-0882"
- },
- {
- "family": "Fitzsimons",
- "given": "Michael S.",
- "orcid": "0000-0003-2364-2316"
- },
- {
- "family": "Flicek",
- "given": "Paul",
- "orcid": "0000-0002-3897-7955"
- },
- {
- "family": "Fore",
- "given": "Ian M.",
- "orcid": "0000-0002-2926-9324"
- },
- {
- "family": "Freimuth",
- "given": "Robert R.",
- "orcid": "0000-0002-9673-5612"
- },
- {
- "family": "Fromont",
- "given": "Lauren A.",
- "orcid": "0000-0002-2900-3868"
- },
- {
- "family": "Gan",
- "given": "Weiniu",
- "orcid": "0000-0002-1228-8158"
- },
- {
- "family": "Ghanaim",
- "given": "Elena M.",
- "orcid": "0000-0002-6119-1723"
- },
- {
- "family": "Glazer",
- "given": "David",
- "orcid": "0000-0002-6407-8646"
- },
- {
- "family": "Green",
- "given": "Robert C.",
- "orcid": "0000-0001-8472-0424"
- },
- {
- "family": "Griffith",
- "given": "Malachi",
- "orcid": "0000-0002-6388-446X"
- },
- {
- "family": "Grossman",
- "given": "Robert L.",
- "orcid": "0000-0003-3741-5739"
- },
- {
- "family": "Groza",
- "given": "Tudor",
- "orcid": "0000-0003-2267-8333"
- },
- {
- "family": "Gupta",
- "given": "Dipayan",
- "orcid": "0000-0001-8753-7369"
- },
- {
- "family": "Haendel",
- "given": "Melissa A.",
- "orcid": "0000-0001-9114-8737"
- },
- {
- "family": "Hamosh",
- "given": "Ada",
- "orcid": "0000-0002-1780-5230"
- },
- {
- "family": "Hansen",
- "given": "David P.",
- "orcid": "0000-0002-2998-4563"
- },
- {
- "family": "Hart",
- "given": "Reece K.",
- "orcid": "0000-0003-3463-0775"
- },
- {
- "family": "Hartley",
- "given": "Dean Mitchell",
- "orcid": "0000-0003-0087-2258"
- },
- {
- "family": "Haussler",
- "given": "David",
- "orcid": "0000-0003-1533-4575"
- },
- {
- "family": "Ho",
- "given": "Calvin W.L.",
- "orcid": "0000-0002-8328-1308"
- },
- {
- "family": "Hobb",
- "given": "Ashley E.",
- "orcid": "0000-0002-6672-5536"
- },
- {
- "family": "Hoffman",
- "given": "Michael M.",
- "orcid": "0000-0002-4517-1562"
- },
- {
- "family": "Hofmann",
- "given": "Oliver M.",
- "orcid": "0000-0002-7738-1513"
- },
- {
- "family": "Holub",
- "given": "Petr",
- "orcid": "0000-0002-5358-616X"
- },
- {
- "family": "Hsu",
- "given": "Jacob Shujui",
- "orcid": "0000-0001-7358-5343"
- },
- {
- "family": "Hubaux",
- "given": "Jean-Pierre",
- "orcid": "0000-0003-1533-6132"
- },
- {
- "family": "Hunt",
- "given": "Sarah E.",
- "orcid": "0000-0002-8350-1235"
- },
- {
- "family": "Husami",
- "given": "Ammar",
- "orcid": "0000-0002-4287-2857"
- },
- {
- "family": "Jacobsen",
- "given": "Julius O.",
- "orcid": "0000-0002-3265-1591"
- },
- {
- "family": "Janes",
- "given": "Elizabeth L.",
- "orcid": "0000-0001-7150-4765"
- },
- {
- "family": "Jeanson",
- "given": "Francis",
- "orcid": "0000-0001-6085-2967"
- },
- {
- "family": "Johns",
- "given": "Amber L.",
- "orcid": "0000-0002-1948-6683"
- },
- {
- "family": "Joly",
- "given": "Yann",
- "orcid": "0000-0002-8775-2322"
- },
- {
- "family": "Jones",
- "given": "Steven J.M.",
- "orcid": "0000-0003-3394-2208"
- },
- {
- "family": "Kanitz",
- "given": "Alexander",
- "orcid": "0000-0002-3468-0652"
- },
- {
- "family": "Kato",
- "given": "Kazuto",
- "orcid": "0000-0001-9006-9551"
- },
- {
- "family": "Keane",
- "given": "Thomas M.",
- "orcid": "0000-0001-7532-6898"
- },
- {
- "family": "Kekesi-Lafrance",
- "given": "Kristina",
- "orcid": "0000-0001-7605-0942"
- },
- {
- "family": "Kelleher",
- "given": "Jerome",
- "orcid": "0000-0002-7894-5253"
- },
- {
- "family": "Kerry",
- "given": "Giselle",
- "orcid": "0000-0002-2380-6707"
- },
- {
- "family": "Khor",
- "given": "Seik-Soon",
- "orcid": "0000-0002-6809-4731"
- },
- {
- "family": "Knoppers",
- "given": "Bartha M.",
- "orcid": "0000-0001-7004-2722"
- },
- {
- "family": "Konopko",
- "given": "Melissa A.",
- "orcid": "0000-0001-9515-398X"
- },
- {
- "family": "Kuba",
- "given": "Martin",
- "orcid": "0000-0002-0305-7446"
- },
- {
- "family": "Leinonen",
- "given": "Rasko",
- "orcid": "0000-0002-2639-7187"
- },
- {
- "family": "Li",
- "given": "Stephanie",
- "orcid": "0000-0001-5535-9203"
- },
- {
- "family": "Lin",
- "given": "Michael F.",
- "orcid": "0000-0003-4447-1683"
- },
- {
- "family": "Linden",
- "given": "Mikael",
- "orcid": "0000-0002-3634-3756"
- },
- {
- "family": "Liu",
- "given": "Xianglin",
- "orcid": "0000-0002-6921-2066"
- },
- {
- "family": "Liyanage",
- "given": "Isuru Udara",
- "orcid": "0000-0002-4839-5158"
- },
- {
- "family": "Lucassen",
- "given": "Anneke M.",
- "orcid": "0000-0003-3324-4338"
- },
- {
- "family": "Lukowski",
- "given": "Michael",
- "orcid": "0000-0002-9321-1338"
- },
- {
- "family": "Mann",
- "given": "Alice L.",
- "orcid": "0000-0003-2402-8545"
- },
- {
- "family": "Marshall",
- "given": "John",
- "orcid": "0000-0002-1216-5457"
- },
- {
- "family": "Mattioni",
- "given": "Michele",
- "orcid": "0000-0003-4651-8115"
- },
- {
- "family": "Metke-Jimenez",
- "given": "Alejandro",
- "orcid": "0000-0003-1068-0938"
- },
- {
- "family": "Middleton",
- "given": "Anna",
- "orcid": "0000-0003-3103-8098"
- },
- {
- "family": "Milne",
- "given": "Richard J.",
- "orcid": "0000-0002-8770-2384"
- },
- {
- "family": "Molnár-Gábor",
- "given": "Fruzsina",
- "orcid": "0000-0002-9406-2776"
- },
- {
- "family": "Nag",
- "given": "Rishi",
- "orcid": "0000-0001-6399-3773"
- },
- {
- "family": "Navarro",
- "given": "Arcadi",
- "orcid": "0000-0003-2162-8246"
- },
- {
- "family": "Nelson",
- "given": "Tristan H.",
- "orcid": "0000-0001-5298-0168"
- },
- {
- "family": "Niewielska",
- "given": "Ania",
- "orcid": "0000-0003-0989-3389"
- },
- {
- "family": "Nisselle",
- "given": "Amy",
- "orcid": "0000-0002-8908-5906"
- },
- {
- "family": "Niu",
- "given": "Jeffrey",
- "orcid": "0000-0002-5691-8238"
- },
- {
- "family": "Oesterle",
- "given": "Sabine",
- "orcid": "0000-0003-3248-7899"
- },
- {
- "family": "Ogishima",
- "given": "Soichi",
- "orcid": "0000-0001-8613-2562"
- },
- {
- "family": "Palumbo",
- "given": "Emilio",
- "orcid": "0000-0003-4599-8161"
- },
- {
- "family": "Parkinson",
- "given": "Helen E.",
- "orcid": "0000-0003-3035-4195"
- },
- {
- "family": "Pizarro",
- "given": "Angel D.",
- "orcid": "0000-0003-2263-2255"
- },
- {
- "family": "Prlic",
- "given": "Andreas",
- "orcid": "0000-0001-6346-6391"
- },
- {
- "family": "Rambla",
- "given": "Jordi",
- "orcid": "0000-0001-9091-257X"
- },
- {
- "family": "Rendon",
- "given": "Augusto",
- "orcid": "0000-0001-8994-0039"
- },
- {
- "family": "Rider",
- "given": "Renee A.",
- "orcid": "0000-0001-7765-2988"
- },
- {
- "family": "Robinson",
- "given": "Peter N.",
- "orcid": "0000-0002-0736-9199"
- },
- {
- "family": "Rodriguez",
- "given": "Laura Lyman",
- "orcid": "0000-0001-6092-8589"
- },
- {
- "family": "Rubin",
- "given": "Alan F.",
- "orcid": "0000-0003-1474-605X"
- },
- {
- "family": "Rueda",
- "given": "Manuel",
- "orcid": "0000-0001-9280-058X"
- },
- {
- "family": "Rushton",
- "given": "Gregory A.",
- "orcid": "0000-0002-4648-4229"
- },
- {
- "family": "Ryan",
- "given": "Rosalyn S.",
- "orcid": "0000-0002-5302-3973"
- },
- {
- "family": "Saunders",
- "given": "Gary I.",
- "orcid": "0000-0002-7468-0008"
- },
- {
- "family": "Schuilenburg",
- "given": "Helen",
- "orcid": "0000-0002-0040-6591"
- },
- {
- "family": "Schwede",
- "given": "Torsten",
- "orcid": "0000-0003-2715-335X"
- },
- {
- "family": "Scollen",
- "given": "Serena",
- "orcid": "0000-0002-9311-1337"
- },
- {
- "family": "Sheffield",
- "given": "Nathan C.",
- "orcid": "0000-0001-5643-4068"
- },
- {
- "family": "Skantharajah",
- "given": "Neerjah",
- "orcid": "0000-0001-6902-9678"
- },
- {
- "family": "Smith",
- "given": "Albert V.",
- "orcid": "0000-0003-1942-5845"
- },
- {
- "family": "Spalding",
- "given": "Dylan",
- "orcid": "0000-0002-4285-2493"
- },
- {
- "family": "Spurdle",
- "given": "Amanda B.",
- "orcid": "0000-0003-1337-7897"
- },
- {
- "family": "Stark",
- "given": "Zornitza",
- "orcid": "0000-0001-8640-1371"
- },
- {
- "family": "Tan",
- "given": "Patrick",
- "orcid": "0000-0002-0179-8048"
- },
- {
- "family": "Tedds",
- "given": "Jonathan A.",
- "orcid": "0000-0003-2829-4584"
- },
- {
- "family": "Thomson",
- "given": "Alastair A.",
- "orcid": "0000-0001-9548-8907"
- },
- {
- "family": "Tickle",
- "given": "Timothy L.",
- "orcid": "0000-0002-6592-6272"
- },
- {
- "family": "Tokunaga",
- "given": "Katsushi",
- "orcid": "0000-0001-5501-0503"
- },
- {
- "family": "Torrents",
- "given": "David",
- "orcid": "0000-0002-6086-9037"
- },
- {
- "family": "Upchurch",
- "given": "Sean",
- "orcid": "0000-0002-3119-8975"
- },
- {
- "family": "Valencia",
- "given": "Alfonso",
- "orcid": "0000-0002-8937-6789"
- },
- {
- "family": "Guimera",
- "given": "Roman Valls",
- "orcid": "0000-0002-0034-9697"
- },
- {
- "family": "Vamathevan",
- "given": "Jessica",
- "orcid": "0000-0003-2016-9754"
- },
- {
- "family": "Varma",
- "given": "Susheel",
- "orcid": "0000-0003-1687-2754"
- },
- {
- "family": "Vears",
- "given": "Danya F.",
- "orcid": "0000-0002-6290-545X"
- },
- {
- "family": "Viner",
- "given": "Coby",
- "orcid": "0000-0001-8097-6991"
- },
- {
- "family": "Voisin",
- "given": "Craig",
- "orcid": "0000-0001-7752-0790"
- },
- {
- "family": "Wagner",
- "given": "Alex H.",
- "orcid": "0000-0002-2502-8961"
- },
- {
- "family": "Wallace",
- "given": "Susan E.",
- "orcid": "0000-0002-2995-1673"
- },
- {
- "family": "Walsh",
- "given": "Brian P.",
- "orcid": "0000-0003-0913-1528"
- },
- {
- "family": "Williams",
- "given": "Marc S.",
- "orcid": "0000-0001-6165-8701"
- },
- {
- "family": "Winkler",
- "given": "Eva C.",
- "orcid": "0000-0001-7460-0154"
- },
- {
- "family": "Wold",
- "given": "Barbara J.",
- "orcid": "0000-0003-3235-8130"
- },
- {
- "family": "Wood",
- "given": "Grant M.",
- "orcid": "0000-0003-3794-9095"
- },
- {
- "family": "Woolley",
- "given": "J. Patrick",
- "orcid": "0000-0002-2829-8756"
- },
- {
- "family": "Yamasaki",
- "given": "Chisato",
- "orcid": "0000-0003-1587-3667"
- },
- {
- "family": "Yates",
- "given": "Andrew D.",
- "orcid": "0000-0002-8886-4772"
- },
- {
- "family": "Yung",
- "given": "Christina K.",
- "orcid": "0000-0003-2958-150X"
- },
- {
- "family": "Zass",
- "given": "Lyndon J.",
- "orcid": "0000-0001-8862-1706"
- },
- {
- "family": "Zhang",
- "given": "Junjun",
- "orcid": "0000-0001-5654-243X"
- },
- {
- "family": "Goodhand",
- "given": "Peter",
- "orcid": "0000-0002-2624-2820"
- },
- {
- "family": "Birney",
- "given": "Ewan",
- "orcid": "0000-0001-8314-8497"
- }
- ],
- "doi:10.1016/j.ebiom.2021.103722": [
- {
- "family": "Deer",
- "given": "Rachel R",
- "orcid": "0000-0001-6307-5227"
- },
- {
- "family": "Rando",
- "given": "Halie",
- "orcid": "0000-0001-7688-1770"
- },
- {
- "family": "Anzalone",
- "given": "Alfred J",
- "orcid": "0000-0002-3212-7845"
- },
- {
- "family": "Basson",
- "given": "Marc D",
- "orcid": "0000-0001-9696-2789"
- },
- {
- "family": "Byrd",
- "given": "James Brian",
- "orcid": "0000-0002-0509-3520"
- },
- {
- "family": "Liang",
- "given": "Chen",
- "orcid": "0000-0002-9803-9880"
- },
- {
- "family": "Mazzotti",
- "given": "Diego R",
- "orcid": "0000-0003-3924-9199"
- },
- {
- "family": "Mcnair",
- "given": "Douglas S",
- "orcid": "0000-0003-0965-883X"
- },
- {
- "family": "Reese",
- "given": "Justin T",
- "orcid": "0000-0002-2170-2250"
- },
- {
- "family": "Vavougios",
- "given": "George D.",
- "orcid": "0000-0002-0413-4028"
- }
- ],
- "doi:10.1007/s00335-021-09921-0": [
- {
- "family": "Ringwald",
- "given": "Martin",
- "orcid": "0000-0002-5696-5421"
- },
- {
- "family": "Richardson",
- "given": "Joel E.",
- "orcid": "0000-0003-3342-5753"
- },
- {
- "family": "Baldarelli",
- "given": "Richard M.",
- "orcid": "0000-0002-5819-0228"
- },
- {
- "family": "Blake",
- "given": "Judith A.",
- "orcid": "0000-0001-8522-334X"
- },
- {
- "family": "Kadin",
- "given": "James A.",
- "orcid": "0000-0002-7644-3743"
- },
- {
- "family": "Smith",
- "given": "Cynthia",
- "orcid": "0000-0003-3691-0324"
- },
- {
- "family": "Bult",
- "given": "Carol J.",
- "orcid": "0000-0001-9433-210X"
- }
- ],
- "doi:10.1101/2021.10.17.464747": [
- {
- "family": "Glen",
- "given": "Amy K.",
- "orcid": "0000-0003-3691-2290"
- },
- {
- "family": "Deutsch",
- "given": "Eric W.",
- "orcid": "0000-0001-8732-0928"
- },
- {
- "family": "Koslicki",
- "given": "David",
- "orcid": "0000-0002-0640-954X"
- },
- {
- "family": "Ramsey",
- "given": "Stephen A.",
- "orcid": "0000-0002-2168-5403"
- }
- ],
- "doi:10.1101/2021.06.04.447169": [
- {
- "family": "Casaletto",
- "given": "James",
- "orcid": "0000-0002-2339-5362"
- }
- ],
- "doi:10.1016/j.xgen.2021.100028": [
- {
- "family": "Lawson",
- "given": "Jonathan",
- "orcid": "0000-0003-3593-1289"
- },
- {
- "family": "Cabili",
- "given": "Moran N.",
- "orcid": "0000-0002-0488-1349"
- },
- {
- "family": "Kerry",
- "given": "Giselle",
- "orcid": "0000-0002-2380-6707"
- },
- {
- "family": "Boughtwood",
- "given": "Tiffany",
- "orcid": "0000-0002-9634-3731"
- },
- {
- "family": "Alper",
- "given": "Pinar",
- "orcid": "0000-0002-2224-0780"
- },
- {
- "family": "Bowers",
- "given": "Sarion R.",
- "orcid": "0000-0002-5687-5397"
- },
- {
- "family": "Boyles",
- "given": "Rebecca R.",
- "orcid": "0000-0003-0073-6854"
- },
- {
- "family": "Brush",
- "given": "Matthew",
- "orcid": "0000-0002-1048-5019"
- },
- {
- "family": "Burdett",
- "given": "Tony",
- "orcid": "0000-0002-2513-5396"
- },
- {
- "family": "Haendel",
- "given": "Melissa A.",
- "orcid": "0000-0001-9114-8737"
- },
- {
- "family": "Hata",
- "given": "Chihiro",
- "orcid": "0000-0002-8727-8376"
- },
- {
- "family": "Holub",
- "given": "Petr",
- "orcid": "0000-0002-5358-616X"
- },
- {
- "family": "Jene",
- "given": "Aina",
- "orcid": "0000-0001-7721-7097"
- },
- {
- "family": "Kawashima",
- "given": "Shuichi",
- "orcid": "0000-0001-7883-3756"
- },
- {
- "family": "Konopko",
- "given": "Melissa",
- "orcid": "0000-0001-9515-398X"
- },
- {
- "family": "Kyomugisha",
- "given": "Irene",
- "orcid": "0000-0002-5241-1560"
- },
- {
- "family": "Li",
- "given": "Haoyuan",
- "orcid": "0000-0002-2554-4835"
- },
- {
- "family": "Linden",
- "given": "Mikael",
- "orcid": "0000-0002-3634-3756"
- },
- {
- "family": "Rodriguez",
- "given": "Laura Lyman",
- "orcid": "0000-0001-6092-8589"
- },
- {
- "family": "Morita",
- "given": "Mizuki",
- "orcid": "0000-0001-8592-5499"
- },
- {
- "family": "Mulder",
- "given": "Nicola",
- "orcid": "0000-0003-4905-0941"
- },
- {
- "family": "Muller",
- "given": "Jean",
- "orcid": "0000-0002-7682-559X"
- },
- {
- "family": "Nagaie",
- "given": "Satoshi",
- "orcid": "0000-0002-8152-4556"
- },
- {
- "family": "Nasir",
- "given": "Jamal",
- "orcid": "0000-0001-6378-5616"
- },
- {
- "family": "Ogishima",
- "given": "Soichi",
- "orcid": "0000-0001-8613-2562"
- },
- {
- "family": "Ota Wang",
- "given": "Vivian",
- "orcid": "0000-0003-3918-3695"
- },
- {
- "family": "Paglione",
- "given": "Laura D.",
- "orcid": "0000-0003-3188-6273"
- },
- {
- "family": "Pandya",
- "given": "Ravi N.",
- "orcid": "0000-0003-0258-4604"
- },
- {
- "family": "Prasser",
- "given": "Fabian",
- "orcid": "0000-0003-3172-3095"
- },
- {
- "family": "Reinold",
- "given": "Kathy",
- "orcid": "0000-0002-0693-984X"
- },
- {
- "family": "Saunders",
- "given": "Gary",
- "orcid": "0000-0002-7468-0008"
- },
- {
- "family": "Sofia",
- "given": "Heidi J.",
- "orcid": "0000-0002-4990-5877"
- },
- {
- "family": "Spalding",
- "given": "John D.",
- "orcid": "0000-0002-4285-2493"
- },
- {
- "family": "Swertz",
- "given": "Morris A.",
- "orcid": "0000-0002-0979-3401"
- },
- {
- "family": "Varma",
- "given": "Susheel",
- "orcid": "0000-0003-1687-2754"
- },
- {
- "family": "Voisin",
- "given": "Craig",
- "orcid": "0000-0001-7752-0790"
- },
- {
- "family": "Yamasaki",
- "given": "Chisato",
- "orcid": "0000-0003-1587-3667"
- },
- {
- "family": "Zass",
- "given": "Lyndon",
- "orcid": "0000-0001-8862-1706"
- },
- {
- "family": "Nyrönen",
- "given": "Tommi H.",
- "orcid": "0000-0002-5569-5183"
- }
- ],
- "doi:10.1016/j.xgen.2021.100031": [
- {
- "family": "Lawson",
- "given": "Jonathan",
- "orcid": "0000-0003-3593-1289"
- },
- {
- "family": "Saltzman",
- "given": "Andrea",
- "orcid": "0000-0002-0335-9196"
- },
- {
- "family": "Wilbanks",
- "given": "John",
- "orcid": "0000-0002-4510-0385"
- },
- {
- "family": "Rodriguez",
- "given": "Laura Lyman",
- "orcid": "0000-0001-6092-8589"
- },
- {
- "family": "Nyronen",
- "given": "Tommi",
- "orcid": "0000-0002-5569-5183"
- },
- {
- "family": "Donnelly",
- "given": "Stacey",
- "orcid": "0000-0001-5732-3300"
- }
- ],
- "doi:10.1101/2021.12.24.474099": [
- {
- "family": "Alghamdi",
- "given": "Sarah M.",
- "orcid": "0000-0001-5544-7166"
- },
- {
- "family": "Schofield",
- "given": "Paul N.",
- "orcid": "0000-0002-5111-7263"
- },
- {
- "family": "Hoehndorf",
- "given": "Robert",
- "orcid": "0000-0001-8149-5890"
- }
- ],
- "doi:10.5028/jatm.v12.1098": [
- {
- "family": "Xavier Jr",
- "given": "Ademir",
- "orcid": "0000-0001-9160-2506"
- },
- {
- "family": "Veloso",
- "given": "Aline",
- "orcid": "0000-0003-2329-2993"
- },
- {
- "family": "Souza",
- "given": "Juliano",
- "orcid": "0000-0002-0201-5850"
- },
- {
- "family": "Kaled Cás",
- "given": "Pedro",
- "orcid": "0000-0002-5161-5393"
- },
- {
- "family": "Cappelletti",
- "given": "Chantal",
- "orcid": "0000-0003-1995-3728"
- }
- ],
- "doi:10.1007/978-3-030-03056-8_25": [
- {
- "family": "Kärle",
- "given": "Elias",
- "orcid": "0000-0002-2686-3221"
- },
- {
- "family": "ÅžimÅŸek",
- "given": "Umutcan",
- "orcid": "0000-0001-6459-474X"
- }
- ],
- "doi:10.1007/s11280-018-0611-0": [
- {
- "family": "Jin",
- "given": "Jiahui",
- "orcid": "0000-0001-9570-1456"
- }
- ],
- "doi:10.3897/bdj.6.e27539": [
- {
- "family": "Page",
- "given": "Roderic",
- "orcid": "0000-0002-7101-9767"
- }
- ],
- "doi:10.3897/biss.3.34742": [
- {
- "family": "Page",
- "given": "Roderic",
- "orcid": "0000-0002-7101-9767"
- }
- ],
- "doi:10.2196/13871": [
- {
- "family": "Speaks",
- "given": "Hannah",
- "orcid": "0000-0002-5646-3157"
- },
- {
- "family": "Falise",
- "given": "Alyssa",
- "orcid": "0000-0001-9488-3710"
- },
- {
- "family": "Grosgebauer",
- "given": "Kaitlin",
- "orcid": "0000-0002-4683-1737"
- },
- {
- "family": "Duncan",
- "given": "Dustin",
- "orcid": "0000-0001-8586-8711"
- },
- {
- "family": "Carrico",
- "given": "Adam",
- "orcid": "0000-0002-8146-5701"
- }
- ],
- "doi:10.2196/preprints.13871": [
- {
- "family": "Speaks",
- "given": "Hannah",
- "orcid": "0000-0002-5646-3157"
- },
- {
- "family": "Falise",
- "given": "Alyssa",
- "orcid": "0000-0001-9488-3710"
- },
- {
- "family": "Grosgebauer",
- "given": "Kaitlin",
- "orcid": "0000-0002-4683-1737"
- },
- {
- "family": "Duncan",
- "given": "Dustin",
- "orcid": "0000-0001-8586-8711"
- },
- {
- "family": "Carrico",
- "given": "Adam",
- "orcid": "0000-0002-8146-5701"
- }
- ],
- "doi:10.3390/ijgi7070264": [
- {
- "family": "Zhang",
- "given": "Ningyu",
- "orcid": "0000-0002-1970-0678"
- }
- ],
- "doi:10.1111/tgis.12547": [
- {
- "family": "Yan",
- "given": "Bo",
- "orcid": "0000-0002-4248-7203"
- },
- {
- "family": "Mai",
- "given": "Gengchen",
- "orcid": "0000-0002-7818-7309"
- }
- ],
- "doi:10.1007/s00354-019-00074-y": [
- {
- "family": "Kushida",
- "given": "Tatsuya",
- "orcid": "0000-0002-0784-4113"
- },
- {
- "family": "Kozaki",
- "given": "Kouji",
- "orcid": "0000-0003-4578-4980"
- },
- {
- "family": "Kawamura",
- "given": "Takahiro",
- "orcid": "0000-0002-2765-6232"
- },
- {
- "family": "Tateisi",
- "given": "Yuka",
- "orcid": "0000-0002-3813-5782"
- },
- {
- "family": "Yamamoto",
- "given": "Yasunori",
- "orcid": "0000-0002-6943-6887"
- }
- ],
- "doi:10.1007/s41019-018-0082-4": [
- {
- "family": "Lin",
- "given": "Peng",
- "orcid": "0000-0002-6347-1673"
- }
- ],
- "doi:10.1007/s41109-019-0133-4": [
- {
- "family": "Onuki",
- "given": "Yohei",
- "orcid": "0000-0002-7664-9952"
- }
- ],
- "doi:10.1108/dta-12-2018-0110": [
- {
- "family": "Mora-Cantallops",
- "given": "Marçal",
- "orcid": "0000-0002-2480-1078"
- }
- ],
- "doi:10.1007/978-3-319-68288-4_25": [
- {
- "family": "Krötzsch",
- "given": "Markus",
- "orcid": "0000-0002-9172-2601"
- },
- {
- "family": "Marx",
- "given": "Maximilian",
- "orcid": "0000-0003-1479-0341"
- },
- {
- "family": "Ozaki",
- "given": "Ana",
- "orcid": "0000-0002-3889-6207"
- },
- {
- "family": "Thost",
- "given": "Veronika",
- "orcid": "0000-0003-4984-1532"
- }
- ],
- "doi:10.1007/978-3-319-69471-9_41": [
- {
- "family": "Wang",
- "given": "Wei",
- "orcid": "0000-0002-8476-3181"
- }
- ],
- "doi:10.1007/978-3-030-21462-3_2": [
- {
- "family": "Krötzsch",
- "given": "Markus",
- "orcid": "0000-0002-9172-2601"
- }
- ],
- "doi:10.1007/978-3-030-21462-3_21": [
- {
- "family": "Hanika",
- "given": "Tom",
- "orcid": "0000-0002-4918-6374"
- },
- {
- "family": "Marx",
- "given": "Maximilian",
- "orcid": "0000-0003-1479-0341"
- },
- {
- "family": "Stumme",
- "given": "Gerd",
- "orcid": "0000-0002-0570-7908"
- }
- ],
- "doi:10.1007/978-3-030-22102-7_21": [
- {
- "family": "Ozaki",
- "given": "Ana",
- "orcid": "0000-0002-3889-6207"
- },
- {
- "family": "Krötzsch",
- "given": "Markus",
- "orcid": "0000-0002-9172-2601"
- },
- {
- "family": "Rudolph",
- "given": "Sebastian",
- "orcid": "0000-0002-1609-2080"
- }
- ],
- "doi:10.1371/journal.pone.0191917": [
- {
- "family": "Tomaszuk",
- "given": "Dominik",
- "orcid": "0000-0003-1806-067X"
- }
- ],
- "doi:10.1007/978-3-030-30793-6_13": [
- {
- "family": "Heist",
- "given": "Nicolas",
- "orcid": "0000-0002-4354-9138"
- },
- {
- "family": "Paulheim",
- "given": "Heiko",
- "orcid": "0000-0003-4386-8195"
- }
- ],
- "doi:10.1007/978-3-030-36599-8_37": [
- {
- "family": "Faraj",
- "given": "Ghazal",
- "orcid": "0000-0002-6705-7568"
- },
- {
- "family": "Micsik",
- "given": "András",
- "orcid": "0000-0001-9859-9186"
- }
- ],
- "doi:10.1007/978-3-030-33220-4_23": [
- {
- "family": "Feddoul",
- "given": "Leila",
- "orcid": "0000-0001-8896-8208"
- },
- {
- "family": "Schindler",
- "given": "Sirko",
- "orcid": "0000-0002-0964-4457"
- },
- {
- "family": "Löffler",
- "given": "Frank",
- "orcid": "0000-0001-6643-6323"
- }
- ],
- "doi:10.1101/870170": [
- {
- "family": "Page",
- "given": "Roderic D. M.",
- "orcid": "0000-0002-7101-9767"
- }
- ],
- "doi:10.1007/s11192-020-03397-6": [
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Ciancarini",
- "given": "Paolo",
- "orcid": "0000-0002-7958-9924"
- },
- {
- "family": "Gangemi",
- "given": "Aldo",
- "orcid": "0000-0001-5568-2684"
- },
- {
- "family": "Nuzzolese",
- "given": "Andrea Giovanni",
- "orcid": "0000-0003-2928-9496"
- },
- {
- "family": "Poggi",
- "given": "Francesco",
- "orcid": "0000-0001-6577-5606"
- },
- {
- "family": "Presutti",
- "given": "Valentina",
- "orcid": "0000-0002-9380-5160"
- }
- ],
- "doi:10.1007/s10115-019-01415-5": [
- {
- "family": "Hertling",
- "given": "Sven",
- "orcid": "0000-0003-0333-5888"
- }
- ],
- "doi:10.1162/dint_a_00019": [
- {
- "family": "Zhang",
- "given": "Qi",
- "orcid": "0000-0003-0947-4942"
- }
- ],
- "doi:10.1162/dint_a_00030": [
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- }
- ],
- "doi:10.17645/pag.v8i2.2591": [
- {
- "family": "Haunss",
- "given": "Sebastian",
- "orcid": "0000-0002-4342-4837"
- },
- {
- "family": "Padó",
- "given": "Sebastian",
- "orcid": "0000-0002-7529-6825"
- }
- ],
- "doi:10.1007/978-3-030-49461-2_31": [
- {
- "family": "Kacupaj",
- "given": "Endri",
- "orcid": "0000-0001-5012-0420"
- },
- {
- "family": "Zafar",
- "given": "Hamid",
- "orcid": "0000-0002-0407-1944"
- },
- {
- "family": "Lehmann",
- "given": "Jens",
- "orcid": "0000-0001-9108-4278"
- },
- {
- "family": "Maleshkova",
- "given": "Maria",
- "orcid": "0000-0003-3458-4748"
- }
- ],
- "doi:10.1007/978-3-030-49461-2_4": [
- {
- "family": "Pietrasik",
- "given": "Marcin",
- "orcid": "0000-0001-7559-8658"
- },
- {
- "family": "Reformat",
- "given": "Marek",
- "orcid": "0000-0003-4783-0717"
- }
- ],
- "doi:10.3390/data5020046": [
- {
- "family": "Scharmüller",
- "given": "Andreas",
- "orcid": "0000-0002-9290-3965"
- },
- {
- "family": "Schreiner",
- "given": "Verena C.",
- "orcid": "0000-0001-8732-3766"
- },
- {
- "family": "Schäfer",
- "given": "Ralf B.",
- "orcid": "0000-0003-3510-1701"
- }
- ],
- "doi:10.1145/3369875": [
- {
- "family": "Haller",
- "given": "Armin",
- "orcid": "0000-0003-3425-0780"
- },
- {
- "family": "Polleres",
- "given": "Axel",
- "orcid": "0000-0001-5670-1146"
- }
- ],
- "doi:10.1145/3371315": [
- {
- "family": "Papotti",
- "given": "Paolo",
- "orcid": "0000-0003-0651-4128"
- }
- ],
- "doi:10.3390/info11050263": [
- {
- "family": "Lewoniewski",
- "given": "WÅ‚odzimierz",
- "orcid": "0000-0002-0163-5492"
- },
- {
- "family": "Węcel",
- "given": "Krzysztof",
- "orcid": "0000-0001-5641-3160"
- },
- {
- "family": "Abramowicz",
- "given": "Witold",
- "orcid": "0000-0001-5464-9698"
- }
- ],
- "doi:10.1145/3286488": [
- {
- "family": "Song",
- "given": "Qi",
- "orcid": "0000-0002-1726-7858"
- }
- ],
- "doi:10.1101/2020.04.05.026336": [
- {
- "family": "Waagmeester",
- "given": "Andra",
- "orcid": "0000-0001-9773-4008"
- },
- {
- "family": "Willighagen",
- "given": "Egon L.",
- "orcid": "0000-0001-7542-0286"
- },
- {
- "family": "Su",
- "given": "Andrew I",
- "orcid": "0000-0002-9859-4104"
- },
- {
- "family": "Kutmon",
- "given": "Martina",
- "orcid": "0000-0002-7699-8191"
- },
- {
- "family": "Labra Gayo",
- "given": "Jose Emilio",
- "orcid": "0000-0001-8907-5348"
- },
- {
- "family": "Fernández-Ãlvarez",
- "given": "Daniel",
- "orcid": "0000-0002-8666-7660"
- },
- {
- "family": "Groom",
- "given": "Quentin",
- "orcid": "0000-0002-0596-5376"
- },
- {
- "family": "Schaap",
- "given": "Peter J.",
- "orcid": "0000-0002-4346-6084"
- },
- {
- "family": "Verhagen",
- "given": "Lisa M.",
- "orcid": "0000-0002-4130-580X"
- },
- {
- "family": "Koehorst",
- "given": "Jasper J.",
- "orcid": "0000-0001-8172-8981"
- }
- ],
- "doi:10.1007/978-3-030-44584-3_39": [
- {
- "family": "Stubbemann",
- "given": "Maximilian",
- "orcid": "0000-0003-1579-1151"
- },
- {
- "family": "Hanika",
- "given": "Tom",
- "orcid": "0000-0002-4918-6374"
- },
- {
- "family": "Stumme",
- "given": "Gerd",
- "orcid": "0000-0002-0570-7908"
- }
- ],
- "doi:10.1007/978-3-030-45442-5_78": [
- {
- "family": "Devezas",
- "given": "José",
- "orcid": "0000-0003-2780-2719"
- }
- ],
- "doi:10.1177/0165551520911590": [
- {
- "family": "Memon",
- "given": "Muhammad Qasim",
- "orcid": "0000-0001-6380-9315"
- }
- ],
- "doi:10.3390/electronics9050750": [
- {
- "family": "Dai",
- "given": "Yuanfei",
- "orcid": "0000-0002-1703-1538"
- },
- {
- "family": "Wang",
- "given": "Shiping",
- "orcid": "0000-0001-5195-9682"
- },
- {
- "family": "Xiong",
- "given": "Neal N.",
- "orcid": "0000-0002-0394-4635"
- }
- ],
- "doi:10.1177/0165551520921342": [
- {
- "family": "Hossain",
- "given": "Bayzid Ashik",
- "orcid": "0000-0003-4128-1155"
- }
- ],
- "doi:10.1007/978-3-030-50146-4_31": [
- {
- "family": "Reformat",
- "given": "Marek Z.",
- "orcid": "0000-0003-4783-0717"
- },
- {
- "family": "Yager",
- "given": "Ronald R.",
- "orcid": "0000-0003-2938-1858"
- }
- ],
- "doi:10.1007/978-3-319-93417-4_10": [
- {
- "family": "Diefenbach",
- "given": "Dennis",
- "orcid": "0000-0002-0046-2219"
- },
- {
- "family": "Thalhammer",
- "given": "Andreas",
- "orcid": "0000-0002-0991-5771"
- }
- ],
- "doi:10.1007/978-3-319-93417-4_17": [
- {
- "family": "Gliozzo",
- "given": "Alfio",
- "orcid": "0000-0002-8044-2911"
- }
- ],
- "doi:10.1007/978-3-319-93417-4_19": [
- {
- "family": "Hassanzadeh",
- "given": "Oktie",
- "orcid": "0000-0001-5307-9857"
- },
- {
- "family": "Trewin",
- "given": "Shari",
- "orcid": "0000-0002-8621-3343"
- },
- {
- "family": "Gliozzo",
- "given": "Alfio",
- "orcid": "0000-0002-8044-2911"
- }
- ],
- "doi:10.1007/978-3-319-93417-4_32": [
- {
- "family": "Piao",
- "given": "Guangyuan",
- "orcid": "0000-0003-0516-2802"
- }
- ],
- "doi:10.3390/e20060439": [
- {
- "family": "Zhang",
- "given": "Hongzhi",
- "orcid": "0000-0002-9688-7691"
- }
- ],
- "doi:10.1007/s00778-016-0444-3": [
- {
- "family": "Chen",
- "given": "Yang",
- "orcid": "0000-0002-3421-642X"
- }
- ],
- "doi:10.1007/s00778-019-00558-9": [
- {
- "family": "Bonifati",
- "given": "Angela",
- "orcid": "0000-0002-9582-869X"
- }
- ],
- "doi:10.1007/s00779-018-01189-7": [
- {
- "family": "Sansonetti",
- "given": "Giuseppe",
- "orcid": "0000-0003-4953-1390"
- }
- ],
- "doi:10.1007/s00799-019-00266-3": [
- {
- "family": "Metilli",
- "given": "Daniele",
- "orcid": "0000-0002-5512-2158"
- }
- ],
- "doi:10.3233/ds-190016": [
- {
- "family": "Heibi",
- "given": "Ivan",
- "orcid": "0000-0001-5366-5194"
- },
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Shotton",
- "given": "David",
- "orcid": "0000-0001-5506-523X"
- }
- ],
- "doi:10.3233/sw-180310": [
- {
- "family": "Keil",
- "given": "Jan Martin",
- "orcid": "0000-0002-7733-0193"
- },
- {
- "family": "Schindler",
- "given": "Sirko",
- "orcid": "0000-0002-0964-4457"
- }
- ],
- "doi:10.1101/235622": [
- {
- "family": "Wu",
- "given": "Honghan",
- "orcid": "0000-0002-0213-5668"
- }
- ],
- "doi:10.1101/343996": [
- {
- "family": "Page",
- "given": "Roderic D. M.",
- "orcid": "0000-0002-7101-9767"
- }
- ],
- "doi:10.1007/978-3-030-04284-4_26": [
- {
- "family": "Kushida",
- "given": "Tatsuya",
- "orcid": "0000-0002-0784-4113"
- },
- {
- "family": "Yamamoto",
- "given": "Yasunori",
- "orcid": "0000-0002-6943-6887"
- }
- ],
- "doi:10.1177/0165551518793321": [
- {
- "family": "Lizarralde",
- "given": "Ignacio",
- "orcid": "0000-0002-4320-6995"
- },
- {
- "family": "Zunino",
- "given": "Alejandro",
- "orcid": "0000-0002-9537-3541"
- }
- ],
- "doi:10.12688/f1000research.12168.1": [
- {
- "family": "Van Enckevort",
- "given": "David",
- "orcid": "0000-0002-2440-3993"
- },
- {
- "family": "Hiltemann",
- "given": "Saskia",
- "orcid": "0000-0003-3803-468X"
- },
- {
- "family": "Bonino Da Silva Santos",
- "given": "Luiz Olavo",
- "orcid": "0000-0002-1164-1351"
- },
- {
- "family": "Abeln",
- "given": "Sanne",
- "orcid": "0000-0002-2779-7174"
- }
- ],
- "doi:10.12688/f1000research.14613.1": [
- {
- "family": "Kutmon",
- "given": "Martina",
- "orcid": "0000-0002-7699-8191"
- },
- {
- "family": "Ehrhart",
- "given": "Friederike",
- "orcid": "0000-0002-7770-620X"
- },
- {
- "family": "Willighagen",
- "given": "Egon L.",
- "orcid": "0000-0001-7542-0286"
- },
- {
- "family": "Evelo",
- "given": "Chris T.",
- "orcid": "0000-0002-5301-3142"
- },
- {
- "family": "Coort",
- "given": "Susan L.",
- "orcid": "0000-0003-1224-9690"
- }
- ],
- "doi:10.12688/f1000research.14613.2": [
- {
- "family": "Kutmon",
- "given": "Martina",
- "orcid": "0000-0002-7699-8191"
- },
- {
- "family": "Ehrhart",
- "given": "Friederike",
- "orcid": "0000-0002-7770-620X"
- },
- {
- "family": "Willighagen",
- "given": "Egon L.",
- "orcid": "0000-0001-7542-0286"
- },
- {
- "family": "Evelo",
- "given": "Chris T.",
- "orcid": "0000-0002-5301-3142"
- },
- {
- "family": "Coort",
- "given": "Susan L.",
- "orcid": "0000-0003-1224-9690"
- }
- ],
- "doi:10.1007/s10462-017-9556-4": [
- {
- "family": "Melo",
- "given": "André",
- "orcid": "0000-0001-6158-7763"
- }
- ],
- "doi:10.1177/2053951717743530": [
- {
- "family": "Veale",
- "given": "Michael",
- "orcid": "0000-0002-2342-8785"
- }
- ],
- "doi:10.1007/s00607-019-00701-y": [
- {
- "family": "Prudhomme",
- "given": "Claire",
- "orcid": "0000-0001-8883-8454"
- }
- ],
- "doi:10.1007/s11625-016-0412-2": [
- {
- "family": "Stuermer",
- "given": "Matthias",
- "orcid": "0000-0001-9038-4041"
- }
- ],
- "doi:10.1007/s11257-018-9207-8": [
- {
- "family": "Piao",
- "given": "Guangyuan",
- "orcid": "0000-0003-0516-2802"
- }
- ],
- "doi:10.1093/database/baz080": [
- {
- "family": "Mignone",
- "given": "Andrea",
- "orcid": "0000-0003-2951-5916"
- },
- {
- "family": "Fiori",
- "given": "Alessandro",
- "orcid": "0000-0003-3819-2696"
- }
- ],
- "doi:10.1111/coin.12216": [
- {
- "family": "Ponza",
- "given": "Marco",
- "orcid": "0000-0002-5626-4166"
- }
- ],
- "doi:10.1007/978-3-030-59621-7_2": [
- {
- "family": "Rastogi",
- "given": "Nidhi",
- "orcid": "0000-0002-2002-3213"
- },
- {
- "family": "Dutta",
- "given": "Sharmishtha",
- "orcid": "0000-0002-4464-1462"
- },
- {
- "family": "Zaki",
- "given": "Mohammed J.",
- "orcid": "0000-0003-4711-0234"
- },
- {
- "family": "Gittens",
- "given": "Alex",
- "orcid": "0000-0003-3482-0157"
- },
- {
- "family": "Aggarwal",
- "given": "Charu",
- "orcid": "0000-0003-2579-7581"
- }
- ],
- "doi:10.1007/978-3-030-59833-4_1": [
- {
- "family": "Hofer",
- "given": "Marvin",
- "orcid": "0000-0003-4667-5743"
- },
- {
- "family": "Dojchinovski",
- "given": "Milan",
- "orcid": "0000-0003-4844-4260"
- }
- ],
- "doi:10.1515/jib-2018-0023": [
- {
- "family": "Brandizi",
- "given": "Marco",
- "orcid": "0000-0002-5427-2496"
- },
- {
- "family": "Singh",
- "given": "Ajit",
- "orcid": "0000-0001-6239-9967"
- },
- {
- "family": "Rawlings",
- "given": "Christopher",
- "orcid": "0000-0003-3702-1633"
- },
- {
- "family": "Hassani-Pak",
- "given": "Keywan",
- "orcid": "0000-0001-9625-0511"
- }
- ],
- "doi:10.1007/s13218-020-00686-3": [
- {
- "family": "Schneider",
- "given": "Thomas",
- "orcid": "0000-0001-5592-6183"
- }
- ],
- "doi:10.1007/978-3-030-54956-5_1": [
- {
- "family": "Brack",
- "given": "Arthur",
- "orcid": "0000-0002-1428-5348"
- },
- {
- "family": "Hoppe",
- "given": "Anett",
- "orcid": "0000-0002-1452-9509"
- },
- {
- "family": "Stocker",
- "given": "Markus",
- "orcid": "0000-0001-5492-3212"
- },
- {
- "family": "Auer",
- "given": "Sören",
- "orcid": "0000-0002-0698-2864"
- },
- {
- "family": "Ewerth",
- "given": "Ralph",
- "orcid": "0000-0003-0918-6297"
- }
- ],
- "doi:10.1101/2020.09.18.301721": [
- {
- "family": "Freshour",
- "given": "Sharon",
- "orcid": "0000-0001-6978-3515"
- },
- {
- "family": "Kiwala",
- "given": "Susanna",
- "orcid": "0000-0003-4378-7328"
- },
- {
- "family": "Cotto",
- "given": "Kelsy C.",
- "orcid": "0000-0003-0890-6889"
- },
- {
- "family": "Coffman",
- "given": "Adam C.",
- "orcid": "0000-0003-0944-3126"
- },
- {
- "family": "Mcmichael",
- "given": "Joshua F.",
- "orcid": "0000-0002-0197-2245"
- },
- {
- "family": "Song",
- "given": "Jonathan",
- "orcid": "0000-0002-4349-2442"
- },
- {
- "family": "Griffith",
- "given": "Malachi",
- "orcid": "0000-0002-6388-446X"
- },
- {
- "family": "Griffith",
- "given": "Obi L.",
- "orcid": "0000-0002-0843-4271"
- },
- {
- "family": "Wagner",
- "given": "Alex H.",
- "orcid": "0000-0002-2502-8961"
- }
- ],
- "doi:10.1371/journal.pone.0236863": [
- {
- "family": "Yıldırım",
- "given": "Ahmet",
- "orcid": "0000-0002-2394-8262"
- },
- {
- "family": "Uskudarli",
- "given": "Suzan",
- "orcid": "0000-0002-0106-0182"
- }
- ],
- "doi:10.1145/3407194": [
- {
- "family": "Zubiaga",
- "given": "Arkaitz",
- "orcid": "0000-0003-4583-3623"
- },
- {
- "family": "Jiang",
- "given": "Aiqi",
- "orcid": "0000-0002-9269-733X"
- }
- ],
- "doi:10.3390/app10144893": [
- {
- "family": "Hou",
- "given": "Wenfeng",
- "orcid": "0000-0003-4586-2168"
- }
- ],
- "doi:10.1145/3309547": [
- {
- "family": "Wang",
- "given": "Xiang",
- "orcid": "0000-0002-6148-6329"
- }
- ],
- "doi:10.1007/978-3-030-58285-2_27": [
- {
- "family": "Martin",
- "given": "Leon",
- "orcid": "0000-0002-6747-5524"
- },
- {
- "family": "Boockmann",
- "given": "Jan H.",
- "orcid": "0000-0001-6816-8393"
- },
- {
- "family": "Henrich",
- "given": "Andreas",
- "orcid": "0000-0002-5074-3254"
- }
- ],
- "doi:10.1007/s11280-020-00842-7": [
- {
- "family": "Li",
- "given": "Lin",
- "orcid": "0000-0001-7553-6916"
- }
- ]
- },
- "venues_id": {
- "doi:10.1016/j.websem.2021.100655": [
- "issn:1570-8268"
- ],
- "doi:10.1007/s10115-017-1100-y": [
- "issn:0219-1377",
- "issn:0219-3116"
- ],
- "doi:10.1016/j.websem.2014.03.003": [
- "issn:1570-8268"
- ],
- "doi:10.1093/nar/gkz997": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.3390/publications7030050": [
- "issn:2304-6775"
- ],
- "doi:10.1017/s0269888920000065": [
- "issn:0269-8889",
- "issn:1469-8005"
- ],
- "doi:10.3390/info11030129": [
- "issn:2078-2489"
- ],
- "doi:10.1007/s00778-018-0528-3": [
- "issn:1066-8888",
- "issn:0949-877X"
- ],
- "doi:10.21105/joss.02731": [
- "issn:2475-9066"
- ],
- "doi:10.1016/j.websem.2014.06.002": [
- "issn:1570-8268"
- ],
- "doi:10.1007/s10115-019-01401-x": [
- "issn:0219-1377",
- "issn:0219-3116"
- ],
- "doi:10.1007/978-3-030-30793-6_22": [
- "isbn:9783030307929",
- "isbn:9783030307936"
- ],
- "doi:10.1007/978-3-030-33220-4_25": [
- "isbn:9783030332198",
- "isbn:9783030332204"
- ],
- "doi:10.1080/17538947.2020.1738568": [
- "issn:1753-8947",
- "issn:1753-8955"
- ],
- "doi:10.1007/s10462-020-09826-5": [
- "issn:0269-2821",
- "issn:1573-7462"
- ],
- "doi:10.1007/978-3-030-49461-2_25": [
- "isbn:9783030494605",
- "isbn:9783030494612"
- ],
- "doi:10.1007/s10462-020-09866-x": [
- "issn:0269-2821",
- "issn:1573-7462"
- ],
- "doi:10.1007/s10796-020-10035-2": [
- "issn:1387-3326",
- "issn:1572-9419"
- ],
- "doi:10.1007/978-3-030-60276-5_25": [
- "isbn:9783030602758",
- "isbn:9783030602765"
- ],
- "doi:10.1007/978-3-030-54956-5_2": [
- "isbn:9783030549558",
- "isbn:9783030549565"
- ],
- "doi:10.1007/s11280-020-00836-5": [
- "issn:1386-145X",
- "issn:1573-1413"
- ],
- "doi:10.3390/a13090217": [
- "issn:1999-4893"
- ],
- "doi:10.1007/978-3-030-62466-8_1": [
- "isbn:9783030624651",
- "isbn:9783030624668"
- ],
- "doi:10.1016/j.eswa.2020.113205": [
- "issn:0957-4174"
- ],
- "doi:10.1007/s00521-020-05491-5": [
- "issn:0941-0643",
- "issn:1433-3058"
- ],
- "doi:10.1002/bse.2855": [
- "issn:0964-4733",
- "issn:1099-0836"
- ],
- "doi:10.3390/info12040160": [
- "issn:2078-2489"
- ],
- "doi:10.1002/widm.1412": [
- "issn:1942-4787",
- "issn:1942-4795"
- ],
- "doi:10.3390/info12070271": [
- "issn:2078-2489"
- ],
- "doi:10.1108/dta-12-2020-0312": [
- "issn:2514-9288"
- ],
- "doi:10.1007/978-3-030-80418-3_17": [
- "isbn:9783030804176",
- "isbn:9783030804183"
- ],
- "doi:10.1007/978-3-030-82147-0_16": [
- "isbn:9783030821463",
- "isbn:9783030821470"
- ],
- "doi:10.1016/j.knosys.2021.107626": [
- "issn:0950-7051"
- ],
- "doi:10.1007/s10791-021-09398-0": [
- "issn:1386-4564",
- "issn:1573-7659"
- ],
- "doi:10.1016/j.websem.2021.100681": [
- "issn:1570-8268"
- ],
- "doi:10.1155/2014/506740": [
- "issn:2356-6140",
- "issn:1537-744X"
- ],
- "doi:10.1007/s10845-018-1427-6": [
- "issn:0956-5515",
- "issn:1572-8145"
- ],
- "doi:10.1080/20964471.2019.1661662": [
- "issn:2096-4471",
- "issn:2574-5417"
- ],
- "doi:10.3390/electronics7120371": [
- "issn:2079-9292"
- ],
- "doi:10.1080/19401493.2018.1492020": [
- "issn:1940-1493",
- "issn:1940-1507"
- ],
- "doi:10.3233/ds-170010": [
- "issn:2451-8492",
- "issn:2451-8484"
- ],
- "doi:10.4018/ijossp.2019040101": [
- "issn:1942-3926",
- "issn:1942-3934"
- ],
- "doi:10.4018/ijpada.2014010107": [
- "issn:2334-4520",
- "issn:2334-4539"
- ],
- "doi:10.4018/ijsita.2017100105": [
- "issn:1947-3095",
- "issn:1947-3109"
- ],
- "doi:10.4018/jdsst.2011010102": [
- "issn:1941-6296",
- "issn:1941-630X"
- ],
- "doi:10.4028/www.scientific.net/amm.809-810.1281": [
- "issn:1662-7482"
- ],
- "doi:10.1007/s41870-019-00283-0": [
- "issn:2511-2104",
- "issn:2511-2112"
- ],
- "doi:10.1177/2055207618804927": [
- "issn:2055-2076",
- "issn:2055-2076"
- ],
- "doi:10.1007/s12136-018-0370-7": [
- "issn:0353-5150",
- "issn:1874-6349"
- ],
- "doi:10.1007/s12145-019-00398-9": [
- "issn:1865-0473",
- "issn:1865-0481"
- ],
- "doi:10.1007/978-3-319-91189-2_11": [
- "isbn:9783319911885",
- "isbn:9783319911892"
- ],
- "doi:10.4258/hir.2018.24.4.376": [
- "issn:2093-3681",
- "issn:2093-369X"
- ],
- "doi:10.1155/2015/734984": [
- "issn:2356-6140",
- "issn:1537-744X"
- ],
- "doi:10.1186/s41039-019-0105-4": [
- "issn:1793-7078"
- ],
- "doi:10.1186/s41239-019-0146-1": [
- "issn:2365-9440"
- ],
- "doi:10.1007/978-3-030-00940-3_15": [
- "isbn:9783030009397",
- "isbn:9783030009403"
- ],
- "doi:10.1007/978-3-030-00940-3_6": [
- "isbn:9783030009397",
- "isbn:9783030009403"
- ],
- "doi:10.3390/app9122553": [
- "issn:2076-3417"
- ],
- "doi:10.1590/1981-5344/3306": [
- "issn:1981-5344",
- "issn:1413-9936"
- ],
- "doi:10.1007/s00530-019-00610-2": [
- "issn:0942-4962",
- "issn:1432-1882"
- ],
- "doi:10.1002/cpe.4489": [
- "issn:1532-0626"
- ],
- "doi:10.1111/exsy.12291": [
- "issn:0266-4720"
- ],
- "doi:10.1111/exsy.12355": [
- "issn:0266-4720",
- "issn:1468-0394"
- ],
- "doi:10.1111/exsy.12378": [
- "issn:0266-4720",
- "issn:1468-0394"
- ],
- "doi:10.1111/exsy.12380": [
- "issn:0266-4720",
- "issn:1468-0394"
- ],
- "doi:10.3390/ijgi6120386": [
- "issn:2220-9964"
- ],
- "doi:10.1111/cgf.13324": [
- "issn:0167-7055"
- ],
- "doi:10.1007/978-3-030-69992-5_1": [
- "isbn:9783030699918",
- "isbn:9783030699925"
- ],
- "doi:10.1007/978-3-658-33466-6_32": [
- "isbn:9783658334659",
- "isbn:9783658334666"
- ],
- "doi:10.1016/j.inffus.2021.01.007": [
- "issn:1566-2535"
- ],
- "doi:10.3390/ijgi10060358": [
- "issn:2220-9964"
- ],
- "doi:10.1007/978-3-030-71292-1_39": [
- "isbn:9783030712914",
- "isbn:9783030712921"
- ],
- "doi:10.3390/en14072024": [
- "issn:1996-1073"
- ],
- "doi:10.1016/j.compind.2021.103496": [
- "issn:0166-3615"
- ],
- "doi:10.1186/s13174-021-00135-w": [
- "issn:1867-4828",
- "issn:1869-0238"
- ],
- "doi:10.1080/15230406.2021.1952109": [
- "issn:1523-0406",
- "issn:1545-0465"
- ],
- "doi:10.1007/978-3-030-86970-0_23": [
- "isbn:9783030869694",
- "isbn:9783030869700"
- ],
- "doi:10.1017/s0269888921000114": [
- "issn:0269-8889",
- "issn:1469-8005"
- ],
- "doi:10.1016/j.jcp.2021.110624": [
- "issn:0021-9991"
- ],
- "doi:10.1007/978-3-030-82430-3_7": [
- "isbn:9783030824297",
- "isbn:9783030824303"
- ],
- "doi:10.1016/j.cageo.2021.105005": [
- "issn:0098-3004"
- ],
- "doi:10.3390/su132413844": [
- "issn:2071-1050"
- ],
- "doi:10.1108/oir-11-2020-0497": [
- "issn:1468-4527"
- ],
- "doi:10.3390/electronics10212616": [
- "issn:2079-9292"
- ],
- "doi:10.3390/app11219825": [
- "issn:2076-3417"
- ],
- "doi:10.3390/en14206692": [
- "issn:1996-1073"
- ],
- "doi:10.1080/00207543.2021.2002967": [
- "issn:0020-7543",
- "issn:1366-588X"
- ],
- "doi:10.3390/app12010143": [
- "issn:2076-3417"
- ],
- "doi:10.1007/978-3-030-89811-3_20": [
- "isbn:9783030898106",
- "isbn:9783030898113"
- ],
- "doi:10.1016/j.is.2021.101967": [
- "issn:0306-4379"
- ],
- "doi:10.3390/app12010287": [
- "issn:2076-3417"
- ],
- "doi:10.1016/j.eswa.2019.04.009": [
- "issn:0957-4174"
- ],
- "doi:10.1016/j.eswa.2019.112965": [
- "issn:0957-4174"
- ],
- "doi:10.1016/j.jss.2018.09.069": [
- "issn:0164-1212"
- ],
- "doi:10.1007/s10010-021-00466-x": [
- "issn:0015-7899",
- "issn:1434-0860"
- ],
- "doi:10.3390/info12060236": [
- "issn:2078-2489"
- ],
- "doi:10.3390/app11062813": [
- "issn:2076-3417"
- ],
- "doi:10.1007/s40194-021-01151-x": [
- "issn:0043-2288",
- "issn:1878-6669"
- ],
- "doi:10.1007/978-3-030-67708-4_5": [
- "isbn:9783030677077",
- "isbn:9783030677084"
- ],
- "doi:10.1016/j.comcom.2021.04.024": [
- "issn:0140-3664"
- ],
- "doi:10.1007/978-3-030-80847-1_9": [
- "isbn:9783030808464",
- "isbn:9783030808471"
- ],
- "doi:10.1080/0194262x.2021.1920555": [
- "issn:0194-262X",
- "issn:1541-1109"
- ],
- "doi:10.7466/jfbl.2020.38.4.1": [
- "issn:2765-1932"
- ],
- "doi:10.3390/jrfm14060238": [
- "issn:1911-8074"
- ],
- "doi:10.1111/exsy.12748": [
- "issn:0266-4720",
- "issn:1468-0394"
- ],
- "doi:10.3390/ani11010145": [
- "issn:2076-2615"
- ],
- "doi:10.3390/axioms10020093": [
- "issn:2075-1680"
- ],
- "doi:10.3390/encyclopedia1010015": [
- "issn:2673-8392"
- ],
- "doi:10.1016/j.compind.2020.103374": [
- "issn:0166-3615"
- ],
- "doi:10.1017/s0890060421000147": [
- "issn:0890-0604",
- "issn:1469-1760"
- ],
- "doi:10.3390/app11125633": [
- "issn:2076-3417"
- ],
- "doi:10.3390/met11071025": [
- "issn:2075-4701"
- ],
- "doi:10.1007/978-3-030-79150-6_10": [
- "isbn:9783030791490",
- "isbn:9783030791506"
- ],
- "doi:10.1111/nbu.12482": [
- "issn:1471-9827",
- "issn:1467-3010"
- ],
- "doi:10.1177/01655515211022185": [
- "issn:0165-5515",
- "issn:1741-6485"
- ],
- "doi:10.1007/s11069-021-04742-5": [
- "issn:0921-030X",
- "issn:1573-0840"
- ],
- "doi:10.3390/asi4010021": [
- "issn:2571-5577"
- ],
- "doi:10.3390/electronics10080905": [
- "issn:2079-9292"
- ],
- "doi:10.3390/app11157056": [
- "issn:2076-3417"
- ],
- "doi:10.1007/978-3-030-79022-6_10": [
- "isbn:9783030790219",
- "isbn:9783030790226"
- ],
- "doi:10.1002/widm.1413": [
- "issn:1942-4787",
- "issn:1942-4795"
- ],
- "doi:10.1007/978-3-030-72657-7_24": [
- "isbn:9783030726560",
- "isbn:9783030726577"
- ],
- "doi:10.1080/0951192x.2019.1571236": [
- "issn:0951-192X",
- "issn:1362-3052"
- ],
- "doi:10.1080/0951192x.2019.1599443": [
- "issn:0951-192X",
- "issn:1362-3052"
- ],
- "doi:10.1080/09544828.2019.1643830": [
- "issn:0954-4828",
- "issn:1466-1837"
- ],
- "doi:10.1007/978-3-319-61911-8_13": [
- "isbn:9783319619101",
- "isbn:9783319619118"
- ],
- "doi:10.1007/978-3-319-67283-0_4": [
- "isbn:9783319672823",
- "isbn:9783319672830"
- ],
- "doi:10.1108/jd-10-2017-0139": [
- "issn:0022-0418"
- ],
- "doi:10.1007/978-3-030-24289-3_20": [
- "isbn:9783030242886",
- "isbn:9783030242893"
- ],
- "doi:10.1017/s0269888916000011": [
- "issn:0269-8889",
- "issn:1469-8005"
- ],
- "doi:10.1017/s0269888918000139": [
- "issn:0269-8889",
- "issn:1469-8005"
- ],
- "doi:10.1007/978-3-030-30760-8_23": [
- "isbn:9783030307592",
- "isbn:9783030307608"
- ],
- "doi:10.1007/s11095-017-2308-y": [
- "issn:0724-8741",
- "issn:1573-904X"
- ],
- "doi:10.1007/978-3-319-74433-9_2": [
- "isbn:9783319744322",
- "isbn:9783319744339"
- ],
- "doi:10.1017/s1351324918000347": [
- "issn:1351-3249",
- "issn:1469-8110"
- ],
- "doi:10.1007/978-3-030-10728-4_4": [
- "isbn:9783030107277",
- "isbn:9783030107284"
- ],
- "doi:10.1002/ett.3625": [
- "issn:2161-3915",
- "issn:2161-3915"
- ],
- "doi:10.1186/s40561-017-0046-6": [
- "issn:2196-7091"
- ],
- "doi:10.1017/aer.2019.74": [
- "issn:0001-9240",
- "issn:2059-6464"
- ],
- "doi:10.1080/00207543.2017.1415468": [
- "issn:0020-7543",
- "issn:1366-588X"
- ],
- "doi:10.1680/jmapl.17.00052": [
- "issn:1751-4304",
- "issn:1751-4312"
- ],
- "doi:10.1186/s13326-017-0154-9": [
- "issn:2041-1480"
- ],
- "doi:10.1186/s13326-017-0158-5": [
- "issn:2041-1480"
- ],
- "doi:10.1109/access.2016.2621756": [
- "issn:2169-3536"
- ],
- "doi:10.1109/access.2017.2734681": [
- "issn:2169-3536"
- ],
- "doi:10.1109/tip.2016.2552401": [
- "issn:1057-7149",
- "issn:1941-0042"
- ],
- "doi:10.3390/app10020591": [
- "issn:2076-3417"
- ],
- "doi:10.3390/app10031040": [
- "issn:2076-3417"
- ],
- "doi:10.1007/s12652-019-01561-2": [
- "issn:1868-5137",
- "issn:1868-5145"
- ],
- "doi:10.36702/zin.495": [
- "issn:2392-2648",
- "issn:0324-8194"
- ],
- "doi:10.1007/978-3-030-37933-9_8": [
- "isbn:9783030379322",
- "isbn:9783030379339"
- ],
- "doi:10.1007/978-3-030-35249-3_66": [
- "isbn:9783030352486",
- "isbn:9783030352493"
- ],
- "doi:10.1007/978-3-030-34146-6_23": [
- "isbn:9783030341459",
- "isbn:9783030341466"
- ],
- "doi:10.1007/978-3-030-42517-3_1": [
- "isbn:9783030425166",
- "isbn:9783030425173"
- ],
- "doi:10.1017/s0269888919000237": [
- "issn:0269-8889",
- "issn:1469-8005"
- ],
- "doi:10.3390/app10072277": [
- "issn:2076-3417"
- ],
- "doi:10.1590/1678-9865202032e180077": [
- "issn:2318-0889",
- "issn:0103-3786"
- ],
- "doi:10.3390/su11236549": [
- "issn:2071-1050"
- ],
- "doi:10.1007/978-3-030-39459-2_2": [
- "isbn:9783030394585",
- "isbn:9783030394592"
- ],
- "doi:10.1007/s11629-019-5576-7": [
- "issn:1672-6316",
- "issn:1993-0321"
- ],
- "doi:10.1007/978-3-030-45442-5_15": [
- "isbn:9783030454418",
- "isbn:9783030454425"
- ],
- "doi:10.1007/s10115-020-01498-5": [
- "issn:0219-1377",
- "issn:0219-3116"
- ],
- "doi:10.1007/s12652-020-02150-4": [
- "issn:1868-5137",
- "issn:1868-5145"
- ],
- "doi:10.1017/s0266462320000471": [
- "issn:0266-4623",
- "issn:1471-6348"
- ],
- "doi:10.1177/1420326x20952817": [
- "issn:1420-326X",
- "issn:1423-0070"
- ],
- "doi:10.1108/ajim-11-2019-0320": [
- "issn:2050-3806"
- ],
- "doi:10.3390/ijgi9100588": [
- "issn:2220-9964"
- ],
- "doi:10.1002/eng2.12217": [
- "issn:2577-8196",
- "issn:2577-8196"
- ],
- "doi:10.1111/exsy.12629": [
- "issn:0266-4720",
- "issn:1468-0394"
- ],
- "doi:10.1007/978-3-030-62015-8_2": [
- "isbn:9783030620141",
- "isbn:9783030620158"
- ],
- "doi:10.3390/designs4040047": [
- "issn:2411-9660"
- ],
- "doi:10.3390/en13153990": [
- "issn:1996-1073"
- ],
- "doi:10.1007/978-3-030-63799-6_17": [
- "isbn:9783030637989",
- "isbn:9783030637996"
- ],
- "doi:10.1007/978-3-030-64058-3_67": [
- "isbn:9783030640576",
- "isbn:9783030640583"
- ],
- "doi:10.1007/978-3-030-65847-2_11": [
- "isbn:9783030658465",
- "isbn:9783030658472"
- ],
- "doi:10.15407/csc.2020.04.044": [
- "issn:2706-8145",
- "issn:2706-8153"
- ],
- "doi:10.1108/jmtm-04-2020-0137": [
- "issn:1741-038X"
- ],
- "doi:10.1186/s12911-020-01291-y": [
- "issn:1472-6947"
- ],
- "doi:10.2196/20443": [
- "issn:1438-8871"
- ],
- "doi:10.1016/j.jvolgeores.2014.07.012": [
- "issn:0377-0273"
- ],
- "doi:10.1016/j.cirpj.2018.06.002": [
- "issn:1755-5817"
- ],
- "doi:10.1016/j.ijinfomgt.2016.05.022": [
- "issn:0268-4012"
- ],
- "doi:10.1016/j.cmpb.2014.01.020": [
- "issn:0169-2607"
- ],
- "doi:10.1016/j.comcom.2019.02.002": [
- "issn:0140-3664"
- ],
- "doi:10.1016/j.eswa.2014.03.022": [
- "issn:0957-4174"
- ],
- "doi:10.1016/j.eswa.2020.113843": [
- "issn:0957-4174"
- ],
- "doi:10.1016/j.ecoinf.2017.06.003": [
- "issn:1574-9541"
- ],
- "doi:10.1016/j.datak.2014.07.006": [
- "issn:0169-023X"
- ],
- "doi:10.1016/j.cmpb.2013.12.023": [
- "issn:0169-2607"
- ],
- "doi:10.1016/j.cosrev.2020.100339": [
- "issn:1574-0137"
- ],
- "doi:10.1016/j.rser.2015.04.021": [
- "issn:1364-0321"
- ],
- "doi:10.1016/j.scico.2018.01.003": [
- "issn:0167-6423"
- ],
- "doi:10.1016/j.rcim.2019.05.010": [
- "issn:0736-5845"
- ],
- "doi:10.1016/j.aei.2018.10.009": [
- "issn:1474-0346"
- ],
- "doi:10.1016/j.future.2018.01.062": [
- "issn:0167-739X"
- ],
- "doi:10.1016/j.pmcj.2016.03.001": [
- "issn:1574-1192"
- ],
- "doi:10.1016/j.jmsy.2014.05.003": [
- "issn:0278-6125"
- ],
- "doi:10.1016/j.compind.2019.05.003": [
- "issn:0166-3615"
- ],
- "doi:10.1016/j.knosys.2013.10.006": [
- "issn:0950-7051"
- ],
- "doi:10.1016/j.compchemeng.2016.05.018": [
- "issn:0098-1354"
- ],
- "doi:10.1016/j.compmedimag.2014.09.004": [
- "issn:0895-6111"
- ],
- "doi:10.1016/j.jbusres.2019.05.016": [
- "issn:0148-2963"
- ],
- "doi:10.1016/j.autcon.2019.102956": [
- "issn:0926-5805"
- ],
- "doi:10.1016/j.compind.2014.02.017": [
- "issn:0166-3615"
- ],
- "doi:10.1016/j.measurement.2018.01.009": [
- "issn:0263-2241"
- ],
- "doi:10.1016/j.cose.2018.07.013": [
- "issn:0167-4048"
- ],
- "doi:10.1016/j.jbi.2019.103293": [
- "issn:1532-0464"
- ],
- "doi:10.1080/15230406.2019.1647797": [
- "issn:1523-0406",
- "issn:1545-0465"
- ],
- "doi:10.3390/bdcc2030025": [
- "issn:2504-2289"
- ],
- "doi:10.1080/17538947.2016.1266041": [
- "issn:1753-8947",
- "issn:1753-8955"
- ],
- "doi:10.1016/j.earscirev.2018.07.006": [
- "issn:0012-8252"
- ],
- "doi:10.1007/s00778-019-00564-x": [
- "issn:1066-8888",
- "issn:0949-877X"
- ],
- "doi:10.1111/jace.16677": [
- "issn:0002-7820",
- "issn:1551-2916"
- ],
- "doi:10.1108/ijpsm-02-2018-0062": [
- "issn:0951-3558"
- ],
- "doi:10.1007/978-3-030-30796-7_27": [
- "isbn:9783030307950",
- "isbn:9783030307967"
- ],
- "doi:10.1007/s00778-019-00591-8": [
- "issn:1066-8888",
- "issn:0949-877X"
- ],
- "doi:10.1093/ije/dyz051": [
- "issn:0300-5771",
- "issn:1464-3685"
- ],
- "doi:10.1007/978-3-030-62466-8_41": [
- "isbn:9783030624651",
- "isbn:9783030624668"
- ],
- "doi:10.1016/j.envsoft.2015.12.005": [
- "issn:1364-8152"
- ],
- "doi:10.1155/2021/3591034": [
- "issn:2042-3195",
- "issn:0197-6729"
- ],
- "doi:10.1016/j.datak.2018.10.002": [
- "issn:0169-023X"
- ],
- "doi:10.1007/978-981-33-4565-2_3": [
- "isbn:9789813345645",
- "isbn:9789813345652"
- ],
- "doi:10.1038/s41597-021-00797-y": [
- "issn:2052-4463"
- ],
- "doi:10.3390/su13116407": [
- "issn:2071-1050"
- ],
- "doi:10.3390/electronics10091060": [
- "issn:2079-9292"
- ],
- "doi:10.3390/info12100432": [
- "issn:2078-2489"
- ],
- "doi:10.1111/exsy.12851": [
- "issn:0266-4720",
- "issn:1468-0394"
- ],
- "doi:10.3390/data3040044": [
- "issn:2306-5729"
- ],
- "doi:10.3390/sym11030309": [
- "issn:2073-8994"
- ],
- "doi:10.1007/s10462-019-09693-9": [
- "issn:0269-2821",
- "issn:1573-7462"
- ],
- "doi:10.1080/23311916.2016.1193959": [
- "issn:2331-1916"
- ],
- "doi:10.1080/1206212x.2019.1574950": [
- "issn:1206-212X",
- "issn:1925-7074"
- ],
- "doi:10.4018/ijdibe.2019010104": [
- "issn:2642-2263",
- "issn:2642-2271"
- ],
- "doi:10.1017/s0021859619000820": [
- "issn:0021-8596",
- "issn:1469-5146"
- ],
- "doi:10.1007/s10639-020-10226-z": [
- "issn:1360-2357",
- "issn:1573-7608"
- ],
- "doi:10.1093/jamia/ocaa061": [
- "issn:1527-974X"
- ],
- "doi:10.1016/j.ssci.2019.05.029": [
- "issn:0925-7535"
- ],
- "doi:10.1016/j.jclepro.2015.08.088": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.is.2015.02.003": [
- "issn:0306-4379"
- ],
- "doi:10.1007/s10796-016-9631-4": [
- "issn:1387-3326",
- "issn:1572-9419"
- ],
- "doi:10.1007/978-3-030-30859-9_5": [
- "isbn:9783030308582",
- "isbn:9783030308599"
- ],
- "doi:10.29375/25392115.3227": [
- "issn:2539-2115",
- "issn:1657-2831"
- ],
- "doi:10.1007/978-3-030-01762-0_12": [
- "isbn:9783030017613",
- "isbn:9783030017620"
- ],
- "doi:10.1007/978-3-030-20485-3_11": [
- "isbn:9783030204846",
- "isbn:9783030204853"
- ],
- "doi:10.1080/00207543.2017.1421785": [
- "issn:0020-7543",
- "issn:1366-588X"
- ],
- "doi:10.1111/tgis.12602": [
- "issn:1361-1682",
- "issn:1467-9671"
- ],
- "doi:10.1007/978-3-030-50316-1_26": [
- "isbn:9783030503154",
- "isbn:9783030503161"
- ],
- "doi:10.1007/s12008-020-00712-6": [
- "issn:1955-2513",
- "issn:1955-2505"
- ],
- "doi:10.1016/j.jss.2018.06.039": [
- "issn:0164-1212"
- ],
- "doi:10.1016/j.jcss.2015.06.001": [
- "issn:0022-0000"
- ],
- "doi:10.1007/s10209-021-00791-6": [
- "issn:1615-5289",
- "issn:1615-5297"
- ],
- "doi:10.3390/electronics10141650": [
- "issn:2079-9292"
- ],
- "doi:10.1016/j.compind.2021.103449": [
- "issn:0166-3615"
- ],
- "doi:10.1007/978-3-030-71187-0_107": [
- "isbn:9783030711863",
- "isbn:9783030711870"
- ],
- "doi:10.1016/j.websem.2021.100658": [
- "issn:1570-8268"
- ],
- "doi:10.1108/bpmj-05-2019-0183": [
- "issn:1463-7154"
- ],
- "doi:10.4018/ijegr.2019070102": [
- "issn:1548-3886",
- "issn:1548-3894"
- ],
- "doi:10.1007/978-3-030-33246-4_14": [
- "isbn:9783030332457",
- "isbn:9783030332464"
- ],
- "doi:10.3989/redc.2019.4.1605": [
- "issn:1988-4621",
- "issn:0210-0614"
- ],
- "doi:10.1145/3190576": [
- "issn:1936-1955",
- "issn:1936-1963"
- ],
- "doi:10.1007/s42421-020-00023-y": [
- "issn:2523-3556",
- "issn:2523-3564"
- ],
- "doi:10.1016/j.ijinfomgt.2019.05.008": [
- "issn:0268-4012"
- ],
- "doi:10.1016/j.cities.2019.03.009": [
- "issn:0264-2751"
- ],
- "doi:10.1016/j.bdr.2016.10.001": [
- "issn:2214-5796"
- ],
- "doi:10.1016/j.scitotenv.2019.03.440": [
- "issn:0048-9697"
- ],
- "doi:10.1016/j.giq.2018.10.006": [
- "issn:0740-624X"
- ],
- "doi:10.1016/j.jbi.2020.103504": [
- "issn:1532-0464"
- ],
- "doi:10.1016/j.giq.2018.11.004": [
- "issn:0740-624X"
- ],
- "doi:10.1016/j.eswa.2019.113135": [
- "issn:0957-4174"
- ],
- "doi:10.1016/j.jlamp.2014.12.005": [
- "issn:2352-2208"
- ],
- "doi:10.1177/00208523211009955": [
- "issn:0020-8523",
- "issn:1461-7226"
- ],
- "doi:10.1016/j.patter.2020.100136": [
- "issn:2666-3899"
- ],
- "doi:10.1007/s10994-021-06118-z": [
- "issn:0885-6125",
- "issn:1573-0565"
- ],
- "doi:10.1002/poi3.176": [
- "issn:1944-2866"
- ],
- "doi:10.1080/15228835.2017.1416515": [
- "issn:1522-8835",
- "issn:1522-8991"
- ],
- "doi:10.1007/s11423-019-09706-y": [
- "issn:1042-1629",
- "issn:1556-6501"
- ],
- "doi:10.1186/s40965-018-0051-x": [
- "issn:2363-7501"
- ],
- "doi:10.1002/cpe.4186": [
- "issn:1532-0626",
- "issn:1532-0634"
- ],
- "doi:10.1007/s41060-016-0025-y": [
- "issn:2364-415X",
- "issn:2364-4168"
- ],
- "doi:10.1080/02681102.2017.1412289": [
- "issn:0268-1102",
- "issn:1554-0170"
- ],
- "doi:10.1108/dta-10-2017-0078": [
- "issn:2514-9288"
- ],
- "doi:10.31921/doxacom.n27a14": [
- "issn:2386-3978",
- "issn:1696-019X"
- ],
- "doi:10.1049/iet-sen.2016.0325": [
- "issn:1751-8806",
- "issn:1751-8814"
- ],
- "doi:10.1155/2017/8327980": [
- "issn:2314-6133",
- "issn:2314-6141"
- ],
- "doi:10.1007/s10916-017-0705-8": [
- "issn:0148-5598",
- "issn:1573-689X"
- ],
- "doi:10.1093/database/bax088": [
- "issn:1758-0463"
- ],
- "doi:10.1016/j.yjbinx.2020.100074": [
- "issn:1532-0464"
- ],
- "doi:10.1016/j.future.2015.09.008": [
- "issn:0167-739X"
- ],
- "doi:10.3390/app11167233": [
- "issn:2076-3417"
- ],
- "doi:10.1007/978-3-030-88361-4_12": [
- "isbn:9783030883607",
- "isbn:9783030883614"
- ],
- "doi:10.21105/joss.03374": [
- "issn:2475-9066"
- ],
- "doi:10.1021/acssynbio.8b00532": [
- "issn:2161-5063",
- "issn:2161-5063"
- ],
- "doi:10.1186/s13326-021-00246-0": [
- "issn:2041-1480"
- ],
- "doi:10.1007/s10845-021-01855-3": [
- "issn:0956-5515",
- "issn:1572-8145"
- ],
- "doi:10.1016/j.softx.2021.100952": [
- "issn:2352-7110"
- ],
- "doi:10.3390/app112110450": [
- "issn:2076-3417"
- ],
- "doi:10.1017/s1471068421000466": [
- "issn:1471-0684",
- "issn:1475-3081"
- ],
- "doi:10.7717/peerj-cs.777": [
- "issn:2376-5992"
- ],
- "doi:10.1016/j.websem.2021.100694": [
- "issn:1570-8268"
- ],
- "doi:10.3390/jsan10040066": [
- "issn:2224-2708"
- ],
- "doi:10.3390/app10186328": [
- "issn:2076-3417"
- ],
- "doi:10.1007/978-3-030-61380-8_3": [
- "isbn:9783030613792",
- "isbn:9783030613808"
- ],
- "doi:10.1186/s13326-016-0091-z": [
- "issn:2041-1480"
- ],
- "doi:10.1186/s13326-017-0133-1": [
- "issn:2041-1480"
- ],
- "doi:10.1186/s12859-017-1999-8": [
- "issn:1471-2105"
- ],
- "doi:10.1093/bib/bby015": [
- "issn:1467-5463",
- "issn:1477-4054"
- ],
- "doi:10.1186/s12911-017-0568-4": [
- "issn:1472-6947"
- ],
- "doi:10.3390/ijgi8030107": [
- "issn:2220-9964"
- ],
- "doi:10.1002/cpe.5743": [
- "issn:1532-0626"
- ],
- "doi:10.1093/bioinformatics/bty933": [
- "issn:1367-4803",
- "issn:1460-2059"
- ],
- "doi:10.1108/jeim-06-2016-0116": [
- "issn:1741-0398"
- ],
- "doi:10.1007/978-3-030-00461-3_6": [
- "isbn:9783030004606",
- "isbn:9783030004613"
- ],
- "doi:10.1186/s12911-020-01267-y": [
- "issn:1472-6947"
- ],
- "doi:10.1186/s12911-020-01336-2": [
- "issn:1472-6947"
- ],
- "doi:10.1186/s13326-018-0191-z": [
- "issn:2041-1480"
- ],
- "doi:10.1186/s13326-020-00233-x": [
- "issn:2041-1480"
- ],
- "doi:10.1016/j.rcim.2018.04.002": [
- "issn:0736-5845"
- ],
- "doi:10.1016/j.ins.2016.05.022": [
- "issn:0020-0255"
- ],
- "doi:10.1016/j.jbi.2018.06.008": [
- "issn:1532-0464"
- ],
- "doi:10.1049/sfw2.12034": [
- "issn:1751-8806",
- "issn:1751-8814"
- ],
- "doi:10.1007/s10579-021-09546-4": [
- "issn:1574-020X",
- "issn:1574-0218"
- ],
- "doi:10.1007/978-3-030-75775-5_15": [
- "isbn:9783030757748",
- "isbn:9783030757755"
- ],
- "doi:10.1007/s00165-021-00549-0": [
- "issn:0934-5043",
- "issn:1433-299X"
- ],
- "doi:10.1007/978-3-030-77817-0_19": [
- "isbn:9783030778163",
- "isbn:9783030778170"
- ],
- "doi:10.1007/s13740-021-00133-y": [
- "issn:1861-2032",
- "issn:1861-2040"
- ],
- "doi:10.1155/2018/5083247": [
- "issn:1076-2787",
- "issn:1099-0526"
- ],
- "doi:10.1007/s10817-017-9406-8": [
- "issn:0168-7433",
- "issn:1573-0670"
- ],
- "doi:10.1186/s40965-018-0053-8": [
- "issn:2363-7501"
- ],
- "doi:10.1007/978-3-319-99906-7_15": [
- "isbn:9783319999050",
- "isbn:9783319999067"
- ],
- "doi:10.1007/s00354-019-00072-0": [
- "issn:0288-3635",
- "issn:1882-7055"
- ],
- "doi:10.1111/exsy.12519": [
- "issn:0266-4720",
- "issn:1468-0394"
- ],
- "doi:10.1038/s41598-019-40368-1": [
- "issn:2045-2322"
- ],
- "doi:10.1002/er.5262": [
- "issn:0363-907X",
- "issn:1099-114X"
- ],
- "doi:10.4018/ijsita.2019040104": [
- "issn:1947-3095",
- "issn:1947-3109"
- ],
- "doi:10.1007/978-3-030-34968-4_11": [
- "isbn:9783030349677",
- "isbn:9783030349684"
- ],
- "doi:10.1017/s026988892000017x": [
- "issn:0269-8889",
- "issn:1469-8005"
- ],
- "doi:10.3390/app9214547": [
- "issn:2076-3417"
- ],
- "doi:10.1080/00207543.2019.1680895": [
- "issn:0020-7543",
- "issn:1366-588X"
- ],
- "doi:10.4018/ijkss.2020040101": [
- "issn:1947-8208",
- "issn:1947-8216"
- ],
- "doi:10.1002/cpe.5744": [
- "issn:1532-0626",
- "issn:1532-0634"
- ],
- "doi:10.1093/bib/bbz009": [
- "issn:1467-5463",
- "issn:1477-4054"
- ],
- "doi:10.4018/ijhcitp.2020070105": [
- "issn:1947-3478",
- "issn:1947-3486"
- ],
- "doi:10.1007/s13218-020-00655-w": [
- "issn:0933-1875",
- "issn:1610-1987"
- ],
- "doi:10.1186/s13326-016-0055-3": [
- "issn:2041-1480"
- ],
- "doi:10.1186/s13326-017-0170-9": [
- "issn:2041-1480"
- ],
- "doi:10.1017/s1471068420000101": [
- "issn:1471-0684",
- "issn:1475-3081"
- ],
- "doi:10.1186/s13673-019-0184-7": [
- "issn:2192-1962"
- ],
- "doi:10.3390/s16101596": [
- "issn:1424-8220"
- ],
- "doi:10.1007/s00799-018-0256-8": [
- "issn:1432-5012",
- "issn:1432-1300"
- ],
- "doi:10.1007/s11276-019-02029-z": [
- "issn:1022-0038",
- "issn:1572-8196"
- ],
- "doi:10.1038/sdata.2016.18": [
- "issn:2052-4463"
- ],
- "doi:10.1007/978-3-030-30796-7_28": [
- "isbn:9783030307950",
- "isbn:9783030307967"
- ],
- "doi:10.1108/dta-09-2019-0164": [
- "issn:2514-9288"
- ],
- "doi:10.1007/978-3-030-46970-2_22": [
- "isbn:9783030469696",
- "isbn:9783030469702"
- ],
- "doi:10.1093/bioinformatics/btx566": [
- "issn:1367-4803",
- "issn:1460-2059"
- ],
- "doi:10.1145/3345551": [
- "issn:0360-0300",
- "issn:1557-7341"
- ],
- "doi:10.1016/j.websem.2014.11.003": [
- "issn:1570-8268"
- ],
- "doi:10.1016/j.compag.2017.10.012": [
- "issn:0168-1699"
- ],
- "doi:10.1016/j.jbi.2019.103154": [
- "issn:1532-0464"
- ],
- "doi:10.1007/s41061-021-00349-3": [
- "issn:2365-0869",
- "issn:2364-8961"
- ],
- "doi:10.1002/humu.23641": [
- "issn:1059-7794",
- "issn:1098-1004"
- ],
- "doi:10.1002/humu.23655": [
- "issn:1059-7794"
- ],
- "doi:10.1007/s10592-018-1072-9": [
- "issn:1566-0621",
- "issn:1572-9737"
- ],
- "doi:10.1038/nprot.2015.124": [
- "issn:1754-2189",
- "issn:1750-2799"
- ],
- "doi:10.1038/s41588-018-0096-x": [
- "issn:1061-4036",
- "issn:1546-1718"
- ],
- "doi:10.1038/s41746-019-0110-4": [
- "issn:2398-6352"
- ],
- "doi:10.1093/nar/gkx1132": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gkx998": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gky1003": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gky1056": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gky1079": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gky1105": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gky1120": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gky1131": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1186/s13326-017-0126-0": [
- "issn:2041-1480"
- ],
- "doi:10.1371/journal.pone.0213090": [
- "issn:1932-6203"
- ],
- "doi:10.1093/jamiaopen/ooaa030": [
- "issn:2574-2531"
- ],
- "doi:10.1038/s41581-020-00335-w": [
- "issn:1759-5061",
- "issn:1759-507X"
- ],
- "doi:10.1093/nar/gkaa753": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.12688/f1000research.25144.1": [
- "issn:2046-1402"
- ],
- "doi:10.1371/journal.pcbi.1008376": [
- "issn:1553-7358"
- ],
- "doi:10.1371/journal.pcbi.1008453": [
- "issn:1553-7358"
- ],
- "doi:10.1093/bioinformatics/btaa879": [
- "issn:1367-4803",
- "issn:1460-2059"
- ],
- "doi:10.1093/nar/gkaa1043": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/nar/gkaa980": [
- "issn:0305-1048",
- "issn:1362-4962"
- ],
- "doi:10.1093/g3journal/jkaa035": [
- "issn:2160-1836"
- ],
- "doi:10.1093/bioinformatics/btab019": [
- "issn:1367-4803",
- "issn:1460-2059"
- ],
- "doi:10.1186/s13023-021-01797-2": [
- "issn:1750-1172"
- ],
- "doi:10.1242/dmm.046573": [
- "issn:1754-8403",
- "issn:1754-8411"
- ],
- "doi:10.1371/journal.pone.0231916": [
- "issn:1932-6203"
- ],
- "doi:10.1016/j.crtox.2021.03.001": [
- "issn:2666-027X"
- ],
- "doi:10.1038/s41398-021-01528-y": [
- "issn:2158-3188"
- ],
- "doi:10.1016/j.ydbio.2021.05.015": [
- "issn:0012-1606"
- ],
- "doi:10.1002/1873-3468.14067": [
- "issn:0014-5793",
- "issn:1873-3468"
- ],
- "doi:10.1093/database/baab003": [
- "issn:1758-0463"
- ],
- "doi:10.1002/ajmg.a.62239": [
- "issn:1552-4825",
- "issn:1552-4833"
- ],
- "doi:10.1186/s13326-021-00241-5": [
- "issn:2041-1480"
- ],
- "doi:10.1093/bioinformatics/btaa1091": [
- "issn:1367-4803",
- "issn:1460-2059"
- ],
- "doi:10.1242/dev.196097": [
- "issn:0950-1991",
- "issn:1477-9129"
- ],
- "doi:10.3390/cancers13164207": [
- "issn:2072-6694"
- ],
- "doi:10.1242/dev.200193": [
- "issn:0950-1991",
- "issn:1477-9129"
- ],
- "doi:10.1371/journal.pcbi.1009283": [
- "issn:1553-7358"
- ],
- "doi:10.3390/biom11081245": [
- "issn:2218-273X"
- ],
- "doi:10.1186/s13326-021-00249-x": [
- "issn:2041-1480"
- ],
- "doi:10.1093/bib/bbab363": [
- "issn:1467-5463",
- "issn:1477-4054"
- ],
- "doi:10.3390/ijerph18178985": [
- "issn:1660-4601"
- ],
- "doi:10.1038/s41467-021-26674-1": [
- "issn:2041-1723"
- ],
- "doi:10.1111/2041-210x.13753": [
- "issn:2041-210X",
- "issn:2041-210X"
- ],
- "doi:10.1016/j.xgen.2021.100029": [
- "issn:2666-979X"
- ],
- "doi:10.1016/j.ebiom.2021.103722": [
- "issn:2352-3964"
- ],
- "doi:10.1007/s00335-021-09921-0": [
- "issn:0938-8990",
- "issn:1432-1777"
- ],
- "doi:10.1016/j.xgen.2021.100028": [
- "issn:2666-979X"
- ],
- "doi:10.1016/j.xgen.2021.100031": [
- "issn:2666-979X"
- ],
- "doi:10.5028/jatm.v12.1098": [
- "issn:2175-9146"
- ],
- "doi:10.1007/978-3-030-03056-8_25": [
- "isbn:9783030030551",
- "isbn:9783030030568"
- ],
- "doi:10.1007/s11280-018-0611-0": [
- "issn:1386-145X",
- "issn:1573-1413"
- ],
- "doi:10.3897/bdj.6.e27539": [
- "issn:1314-2828",
- "issn:1314-2836"
- ],
- "doi:10.3897/biss.3.34742": [
- "issn:2535-0897"
- ],
- "doi:10.2196/13871": [
- "issn:1929-073X"
- ],
- "doi:10.3390/ijgi7070264": [
- "issn:2220-9964"
- ],
- "doi:10.1111/tgis.12547": [
- "issn:1361-1682",
- "issn:1467-9671"
- ],
- "doi:10.1007/s00354-019-00074-y": [
- "issn:0288-3635",
- "issn:1882-7055"
- ],
- "doi:10.1007/s41019-018-0082-4": [
- "issn:2364-1185",
- "issn:2364-1541"
- ],
- "doi:10.1007/s41109-019-0133-4": [
- "issn:2364-8228"
- ],
- "doi:10.1108/dta-12-2018-0110": [
- "issn:2514-9288"
- ],
- "doi:10.1007/978-3-319-68288-4_25": [
- "isbn:9783319682877",
- "isbn:9783319682884"
- ],
- "doi:10.1007/978-3-319-69471-9_41": [
- "isbn:9783319694702",
- "isbn:9783319694719"
- ],
- "doi:10.1007/978-3-030-21462-3_2": [
- "isbn:9783030214616",
- "isbn:9783030214623"
- ],
- "doi:10.1007/978-3-030-21462-3_21": [
- "isbn:9783030214616",
- "isbn:9783030214623"
- ],
- "doi:10.1007/978-3-030-22102-7_21": [
- "isbn:9783030221010",
- "isbn:9783030221027"
- ],
- "doi:10.1371/journal.pone.0191917": [
- "issn:1932-6203"
- ],
- "doi:10.1007/978-3-030-30793-6_13": [
- "isbn:9783030307929",
- "isbn:9783030307936"
- ],
- "doi:10.1007/978-3-030-36599-8_37": [
- "isbn:9783030365981",
- "isbn:9783030365998"
- ],
- "doi:10.1007/978-3-030-33220-4_23": [
- "isbn:9783030332198",
- "isbn:9783030332204"
- ],
- "doi:10.1007/s11192-020-03397-6": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s10115-019-01415-5": [
- "issn:0219-1377",
- "issn:0219-3116"
- ],
- "doi:10.1162/dint_a_00019": [
- "issn:2641-435X"
- ],
- "doi:10.1162/dint_a_00030": [
- "issn:2641-435X"
- ],
- "doi:10.17645/pag.v8i2.2591": [
- "issn:2183-2463"
- ],
- "doi:10.1007/978-3-030-49461-2_31": [
- "isbn:9783030494605",
- "isbn:9783030494612"
- ],
- "doi:10.1007/978-3-030-49461-2_4": [
- "isbn:9783030494605",
- "isbn:9783030494612"
- ],
- "doi:10.3390/data5020046": [
- "issn:2306-5729"
- ],
- "doi:10.1145/3369875": [
- "issn:1936-1955",
- "issn:1936-1963"
- ],
- "doi:10.1145/3371315": [
- "issn:1936-1955",
- "issn:1936-1963"
- ],
- "doi:10.3390/info11050263": [
- "issn:2078-2489"
- ],
- "doi:10.1145/3286488": [
- "issn:1936-1955",
- "issn:1936-1963"
- ],
- "doi:10.1007/978-3-030-44584-3_39": [
- "isbn:9783030445836",
- "isbn:9783030445843"
- ],
- "doi:10.1007/978-3-030-45442-5_78": [
- "isbn:9783030454418",
- "isbn:9783030454425"
- ],
- "doi:10.1177/0165551520911590": [
- "issn:0165-5515",
- "issn:1741-6485"
- ],
- "doi:10.3390/electronics9050750": [
- "issn:2079-9292"
- ],
- "doi:10.1177/0165551520921342": [
- "issn:0165-5515",
- "issn:1741-6485"
- ],
- "doi:10.1007/978-3-030-50146-4_31": [
- "isbn:9783030501457",
- "isbn:9783030501464"
- ],
- "doi:10.1007/978-3-319-93417-4_10": [
- "isbn:9783319934167",
- "isbn:9783319934174"
- ],
- "doi:10.1007/978-3-319-93417-4_17": [
- "isbn:9783319934167",
- "isbn:9783319934174"
- ],
- "doi:10.1007/978-3-319-93417-4_19": [
- "isbn:9783319934167",
- "isbn:9783319934174"
- ],
- "doi:10.1007/978-3-319-93417-4_32": [
- "isbn:9783319934167",
- "isbn:9783319934174"
- ],
- "doi:10.3390/e20060439": [
- "issn:1099-4300"
- ],
- "doi:10.1007/s00778-016-0444-3": [
- "issn:1066-8888",
- "issn:0949-877X"
- ],
- "doi:10.1007/s00778-019-00558-9": [
- "issn:1066-8888",
- "issn:0949-877X"
- ],
- "doi:10.1007/s00779-018-01189-7": [
- "issn:1617-4909",
- "issn:1617-4917"
- ],
- "doi:10.1007/s00799-019-00266-3": [
- "issn:1432-5012",
- "issn:1432-1300"
- ],
- "doi:10.3233/ds-190016": [
- "issn:2451-8492",
- "issn:2451-8484"
- ],
- "doi:10.3233/sw-180310": [
- "issn:2210-4968",
- "issn:1570-0844"
- ],
- "doi:10.1007/978-3-030-04284-4_26": [
- "isbn:9783030042837",
- "isbn:9783030042844"
- ],
- "doi:10.1177/0165551518793321": [
- "issn:0165-5515",
- "issn:1741-6485"
- ],
- "doi:10.12688/f1000research.12168.1": [
- "issn:2046-1402"
- ],
- "doi:10.12688/f1000research.14613.1": [
- "issn:2046-1402"
- ],
- "doi:10.12688/f1000research.14613.2": [
- "issn:2046-1402"
- ],
- "doi:10.1007/s10462-017-9556-4": [
- "issn:0269-2821",
- "issn:1573-7462"
- ],
- "doi:10.1177/2053951717743530": [
- "issn:2053-9517",
- "issn:2053-9517"
- ],
- "doi:10.1007/s00607-019-00701-y": [
- "issn:0010-485X",
- "issn:1436-5057"
- ],
- "doi:10.1007/s11625-016-0412-2": [
- "issn:1862-4065",
- "issn:1862-4057"
- ],
- "doi:10.1007/s11257-018-9207-8": [
- "issn:0924-1868",
- "issn:1573-1391"
- ],
- "doi:10.1093/database/baz080": [
- "issn:1758-0463"
- ],
- "doi:10.1111/coin.12216": [
- "issn:0824-7935",
- "issn:1467-8640"
- ],
- "doi:10.1007/978-3-030-59621-7_2": [
- "isbn:9783030596200",
- "isbn:9783030596217"
- ],
- "doi:10.1007/978-3-030-59833-4_1": [
- "isbn:9783030598327",
- "isbn:9783030598334"
- ],
- "doi:10.1515/jib-2018-0023": [
- "issn:1613-4516"
- ],
- "doi:10.1007/s13218-020-00686-3": [
- "issn:0933-1875",
- "issn:1610-1987"
- ],
- "doi:10.1007/978-3-030-54956-5_1": [
- "isbn:9783030549558",
- "isbn:9783030549565"
- ],
- "doi:10.1371/journal.pone.0236863": [
- "issn:1932-6203"
- ],
- "doi:10.1145/3407194": [
- "issn:1559-1131",
- "issn:1559-114X"
- ],
- "doi:10.3390/app10144893": [
- "issn:2076-3417"
- ],
- "doi:10.1145/3309547": [
- "issn:1046-8188",
- "issn:1558-2868"
- ],
- "doi:10.1007/978-3-030-58285-2_27": [
- "isbn:9783030582845",
- "isbn:9783030582852"
- ],
- "doi:10.1007/s11280-020-00842-7": [
- "issn:1386-145X",
- "issn:1573-1413"
- ]
- },
- "references": {
- "doi:10.1016/j.websem.2021.100655": [
- "doi:10.1007/s10115-017-1100-y",
- "doi:10.1016/j.websem.2014.03.003",
- "doi:10.1093/nar/gkz997",
- "doi:10.3390/publications7030050",
- "doi:10.1017/s0269888920000065",
- "doi:10.3390/info11030129",
- "doi:10.1007/s00778-018-0528-3"
- ],
- "doi:10.1007/s10115-017-1100-y": [
- "doi:10.1016/j.websem.2014.06.002"
- ],
- "doi:10.1016/j.websem.2014.03.003": [],
- "doi:10.1093/nar/gkz997": [
- "doi:10.1002/humu.23641",
- "doi:10.1002/humu.23655",
- "doi:10.1007/s10592-018-1072-9",
- "doi:10.1038/nprot.2015.124",
- "doi:10.1038/s41588-018-0096-x",
- "doi:10.1038/s41746-019-0110-4",
- "doi:10.1093/nar/gkx1132",
- "doi:10.1093/nar/gkx998",
- "doi:10.1093/nar/gky1003",
- "doi:10.1093/nar/gky1056",
- "doi:10.1093/nar/gky1079",
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gky1120",
- "doi:10.1093/nar/gky1131",
- "doi:10.1186/s13326-017-0126-0",
- "doi:10.1371/journal.pone.0213090"
- ],
- "doi:10.3390/publications7030050": [],
- "doi:10.1017/s0269888920000065": [],
- "doi:10.3390/info11030129": [],
- "doi:10.1007/s00778-018-0528-3": [],
- "doi:10.21105/joss.02731": [
- "doi:10.1007/978-3-030-30796-7_28",
- "doi:10.1016/j.websem.2021.100655"
- ],
- "doi:10.1016/j.websem.2014.06.002": [],
- "doi:10.1007/s10115-019-01401-x": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-30793-6_22": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-33220-4_25": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1080/17538947.2020.1738568": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/s10462-020-09826-5": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-49461-2_25": [
- "doi:10.1007/978-3-319-93417-4_10",
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/s10462-020-09866-x": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/s10796-020-10035-2": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-60276-5_25": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-54956-5_2": [
- "doi:10.1007/s10115-017-1100-y",
- "doi:10.1016/j.websem.2014.06.002",
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1007/s11280-020-00836-5": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.3390/a13090217": [
- "doi:10.1007/s00778-018-0528-3",
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-62466-8_1": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1016/j.eswa.2020.113205": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/s00521-020-05491-5": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1002/bse.2855": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.3390/info12040160": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1002/widm.1412": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.3390/info12070271": [
- "doi:10.1007/s11280-020-00842-7",
- "doi:10.1007/s10115-017-1100-y",
- "doi:10.1016/j.eswa.2020.113205"
- ],
- "doi:10.1108/dta-12-2020-0312": [
- "doi:10.1007/s10796-020-10035-2",
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-80418-3_17": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/978-3-030-82147-0_16": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1016/j.knosys.2021.107626": [
- "doi:10.1016/j.eswa.2020.113205",
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1007/s10791-021-09398-0": [
- "doi:10.1007/s10115-017-1100-y",
- "doi:10.1002/widm.1412"
- ],
- "doi:10.1016/j.websem.2021.100681": [
- "doi:10.1007/s10115-017-1100-y"
- ],
- "doi:10.1155/2014/506740": [],
- "doi:10.1007/s10845-018-1427-6": [],
- "doi:10.1080/20964471.2019.1661662": [
- "doi:10.1080/17538947.2016.1266041"
- ],
- "doi:10.3390/electronics7120371": [
- "doi:10.1007/s10817-017-9406-8"
- ],
- "doi:10.1080/19401493.2018.1492020": [],
- "doi:10.3233/ds-170010": [],
- "doi:10.4018/ijossp.2019040101": [],
- "doi:10.4018/ijpada.2014010107": [],
- "doi:10.4018/ijsita.2017100105": [],
- "doi:10.4018/jdsst.2011010102": [],
- "doi:10.4028/www.scientific.net/amm.809-810.1281": [],
- "doi:10.1007/s41870-019-00283-0": [],
- "doi:10.1177/2055207618804927": [
- "doi:10.1016/j.jcss.2015.06.001"
- ],
- "doi:10.1007/s12136-018-0370-7": [],
- "doi:10.1007/s12145-019-00398-9": [],
- "doi:10.1007/978-3-319-91189-2_11": [],
- "doi:10.4258/hir.2018.24.4.376": [],
- "doi:10.1155/2015/734984": [],
- "doi:10.1186/s41039-019-0105-4": [],
- "doi:10.1186/s41239-019-0146-1": [],
- "doi:10.1007/978-3-030-00940-3_15": [
- "doi:10.1007/978-3-319-91189-2_11",
- "doi:10.1186/s12859-017-1999-8"
- ],
- "doi:10.1007/978-3-030-00940-3_6": [
- "doi:10.1016/j.scico.2018.01.003"
- ],
- "doi:10.3390/app9122553": [],
- "doi:10.1590/1981-5344/3306": [],
- "doi:10.1007/s00530-019-00610-2": [],
- "doi:10.1002/cpe.4489": [],
- "doi:10.1111/exsy.12291": [],
- "doi:10.1111/exsy.12355": [
- "doi:10.1016/j.jcss.2015.06.001"
- ],
- "doi:10.1111/exsy.12378": [],
- "doi:10.1111/exsy.12380": [],
- "doi:10.3390/ijgi6120386": [],
- "doi:10.1111/cgf.13324": [],
- "doi:10.1007/978-3-030-69992-5_1": [],
- "doi:10.1007/978-3-658-33466-6_32": [],
- "doi:10.1016/j.inffus.2021.01.007": [],
- "doi:10.3390/ijgi10060358": [],
- "doi:10.1007/978-3-030-71292-1_39": [],
- "doi:10.3390/en14072024": [],
- "doi:10.1016/j.compind.2021.103496": [],
- "doi:10.1186/s13174-021-00135-w": [
- "doi:10.1108/ajim-11-2019-0320",
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1080/15230406.2021.1952109": [],
- "doi:10.1007/978-3-030-86970-0_23": [],
- "doi:10.1017/s0269888921000114": [
- "doi:10.1017/s0269888919000237"
- ],
- "doi:10.1016/j.jcp.2021.110624": [],
- "doi:10.1007/978-3-030-82430-3_7": [
- "doi:10.1016/j.autcon.2019.102956"
- ],
- "doi:10.1016/j.cageo.2021.105005": [],
- "doi:10.3390/su132413844": [],
- "doi:10.1108/oir-11-2020-0497": [],
- "doi:10.3390/electronics10212616": [],
- "doi:10.3390/app11219825": [],
- "doi:10.3390/en14206692": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1080/00207543.2021.2002967": [
- "doi:10.1002/bse.2855",
- "doi:10.1016/j.cirpj.2018.06.002",
- "doi:10.1007/s10845-018-1427-6",
- "doi:10.1016/j.rcim.2018.04.002"
- ],
- "doi:10.3390/app12010143": [
- "doi:10.1016/j.scico.2018.01.003",
- "doi:10.3390/electronics10080905"
- ],
- "doi:10.1007/978-3-030-89811-3_20": [],
- "doi:10.1016/j.is.2021.101967": [
- "doi:10.1016/j.eswa.2019.04.009"
- ],
- "doi:10.3390/app12010287": [
- "doi:10.1177/01655515211022185"
- ],
- "doi:10.4018/978-1-6684-3702-5.ch037": [],
- "doi:10.1016/j.eswa.2019.04.009": [],
- "doi:10.1016/j.eswa.2019.112965": [],
- "doi:10.1016/j.jss.2018.09.069": [
- "doi:10.1016/j.knosys.2013.10.006"
- ],
- "doi:10.1007/s10010-021-00466-x": [],
- "doi:10.3390/info12060236": [],
- "doi:10.3390/app11062813": [],
- "doi:10.1007/s40194-021-01151-x": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1007/978-3-030-67708-4_5": [],
- "doi:10.1016/j.comcom.2021.04.024": [],
- "doi:10.1007/978-3-030-80847-1_9": [],
- "doi:10.1080/0194262x.2021.1920555": [],
- "doi:10.7466/jfbl.2020.38.4.1": [],
- "doi:10.3390/jrfm14060238": [],
- "doi:10.4018/978-1-7998-6792-0.ch005": [],
- "doi:10.1111/exsy.12748": [
- "doi:10.1007/s00530-019-00610-2"
- ],
- "doi:10.3390/ani11010145": [],
- "doi:10.3390/axioms10020093": [],
- "doi:10.4018/978-1-7998-6874-3.ch006": [],
- "doi:10.3390/encyclopedia1010015": [],
- "doi:10.1016/j.compind.2020.103374": [],
- "doi:10.1017/s0890060421000147": [
- "doi:10.1016/j.eswa.2014.03.022"
- ],
- "doi:10.3390/app11125633": [],
- "doi:10.3390/met11071025": [],
- "doi:10.1007/978-3-030-79150-6_10": [],
- "doi:10.1111/nbu.12482": [],
- "doi:10.1177/01655515211022185": [],
- "doi:10.1007/s11069-021-04742-5": [
- "doi:10.1007/s12136-018-0370-7"
- ],
- "doi:10.3390/asi4010021": [
- "doi:10.3390/electronics7120371"
- ],
- "doi:10.3390/electronics10080905": [
- "doi:10.1016/j.compag.2017.10.012",
- "doi:10.1007/978-3-030-62015-8_2",
- "doi:10.1016/j.cosrev.2020.100339",
- "doi:10.3390/app10031040",
- "doi:10.1016/j.knosys.2013.10.006"
- ],
- "doi:10.3390/app11157056": [
- "doi:10.1007/s13740-021-00133-y"
- ],
- "doi:10.1007/978-3-030-79022-6_10": [],
- "doi:10.1002/widm.1413": [],
- "doi:10.1007/978-3-030-72657-7_24": [],
- "doi:10.4018/978-1-5225-7501-6.ch036": [],
- "doi:10.4018/978-1-5225-8223-6.ch008": [],
- "doi:10.1080/0951192x.2019.1571236": [
- "doi:10.1016/j.cirpj.2018.06.002"
- ],
- "doi:10.1080/0951192x.2019.1599443": [],
- "doi:10.1080/09544828.2019.1643830": [],
- "doi:10.1007/978-3-319-61911-8_13": [
- "doi:10.1016/j.eswa.2014.03.022"
- ],
- "doi:10.1007/978-3-319-67283-0_4": [
- "doi:10.1016/j.knosys.2013.10.006"
- ],
- "doi:10.1108/jd-10-2017-0139": [],
- "doi:10.1007/978-3-030-24289-3_20": [],
- "doi:10.1017/s0269888916000011": [],
- "doi:10.1017/s0269888918000139": [],
- "doi:10.4018/978-1-5225-0956-1.ch009": [],
- "doi:10.1007/978-3-030-30760-8_23": [],
- "doi:10.1007/s11095-017-2308-y": [],
- "doi:10.1007/978-3-319-74433-9_2": [],
- "doi:10.1017/s1351324918000347": [],
- "doi:10.1007/978-3-030-10728-4_4": [],
- "doi:10.1002/ett.3625": [],
- "doi:10.1186/s40561-017-0046-6": [],
- "doi:10.1017/aer.2019.74": [],
- "doi:10.1080/00207543.2017.1415468": [],
- "doi:10.1680/jmapl.17.00052": [],
- "doi:10.1186/s13326-017-0154-9": [],
- "doi:10.1186/s13326-017-0158-5": [],
- "doi:10.1109/access.2016.2621756": [],
- "doi:10.1109/access.2017.2734681": [],
- "doi:10.1109/tip.2016.2552401": [],
- "doi:10.3390/app10020591": [],
- "doi:10.3390/app10031040": [
- "doi:10.1016/j.jclepro.2015.08.088",
- "doi:10.1016/j.knosys.2013.10.006",
- "doi:10.1016/j.scico.2018.01.003"
- ],
- "doi:10.1007/s12652-019-01561-2": [],
- "doi:10.36702/zin.495": [
- "doi:10.3233/ds-170010"
- ],
- "doi:10.1007/978-3-030-37933-9_8": [],
- "doi:10.1007/978-3-030-35249-3_66": [],
- "doi:10.1007/978-3-030-34146-6_23": [
- "doi:10.1016/j.is.2015.02.003"
- ],
- "doi:10.1007/978-3-030-42517-3_1": [],
- "doi:10.4018/978-1-7998-1863-2.ch002": [],
- "doi:10.4018/978-1-7998-1934-9.ch013": [],
- "doi:10.4018/978-1-7998-2104-5.ch009": [],
- "doi:10.1017/s0269888919000237": [],
- "doi:10.3390/app10072277": [
- "doi:10.3390/app9122553"
- ],
- "doi:10.1590/1678-9865202032e180077": [],
- "doi:10.3390/su11236549": [],
- "doi:10.1007/978-3-030-39459-2_2": [],
- "doi:10.1007/s11629-019-5576-7": [],
- "doi:10.1007/978-3-030-45442-5_15": [],
- "doi:10.1007/s10115-020-01498-5": [],
- "doi:10.1007/s12652-020-02150-4": [
- "doi:10.1017/s0269888919000237"
- ],
- "doi:10.1017/s0266462320000471": [],
- "doi:10.1177/1420326x20952817": [],
- "doi:10.4018/978-1-7998-4240-8.ch004": [],
- "doi:10.1108/ajim-11-2019-0320": [],
- "doi:10.3390/ijgi9100588": [],
- "doi:10.1002/eng2.12217": [],
- "doi:10.1111/exsy.12629": [],
- "doi:10.1007/978-3-030-62015-8_2": [
- "doi:10.1007/978-3-319-91189-2_11",
- "doi:10.1007/s00607-019-00701-y",
- "doi:10.1016/j.compag.2017.10.012",
- "doi:10.3390/app10031040"
- ],
- "doi:10.3390/designs4040047": [],
- "doi:10.3390/en13153990": [],
- "doi:10.1007/978-3-030-63799-6_17": [],
- "doi:10.1007/978-3-030-64058-3_67": [],
- "doi:10.1007/978-3-030-65847-2_11": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.15407/csc.2020.04.044": [],
- "doi:10.1108/jmtm-04-2020-0137": [],
- "doi:10.1186/s12911-020-01291-y": [
- "doi:10.1016/j.jbi.2018.06.008",
- "doi:10.1038/s41598-019-40368-1"
- ],
- "doi:10.2196/20443": [],
- "doi:10.1016/j.jvolgeores.2014.07.012": [],
- "doi:10.1016/j.cirpj.2018.06.002": [],
- "doi:10.1016/j.ijinfomgt.2016.05.022": [],
- "doi:10.1016/j.cmpb.2014.01.020": [],
- "doi:10.1016/j.comcom.2019.02.002": [],
- "doi:10.1016/j.eswa.2014.03.022": [
- "doi:10.1016/j.knosys.2013.10.006"
- ],
- "doi:10.1016/j.eswa.2020.113843": [
- "doi:10.1016/j.eswa.2019.04.009"
- ],
- "doi:10.1016/j.ecoinf.2017.06.003": [],
- "doi:10.1016/j.datak.2014.07.006": [],
- "doi:10.1016/j.cmpb.2013.12.023": [],
- "doi:10.1016/j.cosrev.2020.100339": [],
- "doi:10.1016/j.rser.2015.04.021": [],
- "doi:10.1016/j.scico.2018.01.003": [
- "doi:10.1016/j.knosys.2013.10.006"
- ],
- "doi:10.1016/j.rcim.2019.05.010": [],
- "doi:10.1016/j.aei.2018.10.009": [
- "doi:10.1016/j.jclepro.2015.08.088"
- ],
- "doi:10.1016/j.future.2018.01.062": [],
- "doi:10.1016/j.pmcj.2016.03.001": [
- "doi:10.1016/j.eswa.2014.03.022"
- ],
- "doi:10.1016/j.jmsy.2014.05.003": [],
- "doi:10.1016/j.compind.2019.05.003": [],
- "doi:10.1016/j.knosys.2013.10.006": [],
- "doi:10.1016/j.compchemeng.2016.05.018": [],
- "doi:10.1016/j.compmedimag.2014.09.004": [],
- "doi:10.1016/j.jbusres.2019.05.016": [],
- "doi:10.1016/j.autcon.2019.102956": [],
- "doi:10.1016/j.compind.2014.02.017": [],
- "doi:10.1016/j.measurement.2018.01.009": [],
- "doi:10.1016/j.cose.2018.07.013": [],
- "doi:10.1016/j.jbi.2019.103293": [],
- "doi:10.1080/15230406.2019.1647797": [
- "doi:10.1080/17538947.2016.1266041"
- ],
- "doi:10.3390/bdcc2030025": [],
- "doi:10.1080/17538947.2016.1266041": [],
- "doi:10.1016/j.earscirev.2018.07.006": [],
- "doi:10.1007/s00778-019-00564-x": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1111/jace.16677": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1108/ijpsm-02-2018-0062": [],
- "doi:10.1007/978-3-030-30796-7_27": [],
- "doi:10.1007/s00778-019-00591-8": [],
- "doi:10.1093/ije/dyz051": [],
- "doi:10.1007/978-3-030-62466-8_41": [
- "doi:10.1007/s00778-019-00564-x",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1371/journal.pone.0213090"
- ],
- "doi:10.1016/j.envsoft.2015.12.005": [],
- "doi:10.1155/2021/3591034": [],
- "doi:10.1016/j.datak.2018.10.002": [],
- "doi:10.1007/978-981-33-4565-2_3": [],
- "doi:10.1038/s41597-021-00797-y": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1145/3369875"
- ],
- "doi:10.3390/su13116407": [],
- "doi:10.3390/electronics10091060": [
- "doi:10.1017/s0269888920000065"
- ],
- "doi:10.3390/info12100432": [],
- "doi:10.1111/exsy.12851": [
- "doi:10.1017/s0269888920000065"
- ],
- "doi:10.3390/data3040044": [],
- "doi:10.3390/sym11030309": [],
- "doi:10.1007/s10462-019-09693-9": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1080/23311916.2016.1193959": [],
- "doi:10.4018/978-1-4666-2494-8.ch016": [],
- "doi:10.1080/1206212x.2019.1574950": [],
- "doi:10.4018/ijdibe.2019010104": [],
- "doi:10.1017/s0021859619000820": [],
- "doi:10.1007/s10639-020-10226-z": [],
- "doi:10.1093/jamia/ocaa061": [],
- "doi:10.1016/j.ssci.2019.05.029": [],
- "doi:10.1016/j.jclepro.2015.08.088": [],
- "doi:10.1016/j.is.2015.02.003": [],
- "doi:10.4018/978-1-5225-9687-5.ch002": [],
- "doi:10.1007/s10796-016-9631-4": [],
- "doi:10.1007/978-3-030-30859-9_5": [],
- "doi:10.29375/25392115.3227": [],
- "doi:10.1007/978-3-030-01762-0_12": [],
- "doi:10.4018/978-1-5225-7186-5.ch011": [
- "doi:10.1016/j.jcss.2015.06.001"
- ],
- "doi:10.1007/978-3-030-20485-3_11": [],
- "doi:10.1080/00207543.2017.1421785": [],
- "doi:10.1111/tgis.12602": [],
- "doi:10.1007/978-3-030-50316-1_26": [],
- "doi:10.1007/s12008-020-00712-6": [],
- "doi:10.1016/j.jss.2018.06.039": [],
- "doi:10.1016/j.jcss.2015.06.001": [],
- "doi:10.1007/s10209-021-00791-6": [],
- "doi:10.3390/electronics10141650": [],
- "doi:10.1016/j.compind.2021.103449": [
- "doi:10.1016/j.eswa.2020.113205",
- "doi:10.3390/electronics9050750",
- "doi:10.1007/s00354-019-00074-y",
- "doi:10.1016/j.autcon.2019.102956",
- "doi:10.1080/00207543.2017.1421785"
- ],
- "doi:10.1007/978-3-030-71187-0_107": [
- "doi:10.1016/j.jcss.2015.06.001",
- "doi:10.1111/exsy.12355"
- ],
- "doi:10.1016/j.websem.2021.100658": [],
- "doi:10.1108/bpmj-05-2019-0183": [],
- "doi:10.4018/ijegr.2019070102": [],
- "doi:10.1007/978-3-030-33246-4_14": [],
- "doi:10.3989/redc.2019.4.1605": [],
- "doi:10.1145/3190576": [],
- "doi:10.1007/s42421-020-00023-y": [],
- "doi:10.1016/j.ijinfomgt.2019.05.008": [],
- "doi:10.1016/j.cities.2019.03.009": [],
- "doi:10.1016/j.bdr.2016.10.001": [],
- "doi:10.1016/j.scitotenv.2019.03.440": [],
- "doi:10.1016/j.giq.2018.10.006": [],
- "doi:10.1016/j.jbi.2020.103504": [],
- "doi:10.1016/j.giq.2018.11.004": [],
- "doi:10.1016/j.eswa.2019.113135": [
- "doi:10.1145/3190576"
- ],
- "doi:10.1016/j.jlamp.2014.12.005": [],
- "doi:10.1177/00208523211009955": [],
- "doi:10.1016/j.patter.2020.100136": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1007/s10994-021-06118-z": [],
- "doi:10.1002/poi3.176": [],
- "doi:10.1080/15228835.2017.1416515": [],
- "doi:10.1007/s11423-019-09706-y": [],
- "doi:10.1186/s40965-018-0051-x": [],
- "doi:10.1002/cpe.4186": [],
- "doi:10.1007/s41060-016-0025-y": [],
- "doi:10.1080/02681102.2017.1412289": [],
- "doi:10.1108/dta-10-2017-0078": [],
- "doi:10.31921/doxacom.n27a14": [],
- "doi:10.1049/iet-sen.2016.0325": [],
- "doi:10.1155/2017/8327980": [],
- "doi:10.1007/s10916-017-0705-8": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1093/database/bax088": [
- "doi:10.1007/s10916-017-0705-8"
- ],
- "doi:10.1016/j.yjbinx.2020.100074": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1155/2017/8327980"
- ],
- "doi:10.1016/j.future.2015.09.008": [],
- "doi:10.3390/app11167233": [
- "doi:10.1186/s13326-017-0154-9",
- "doi:10.1186/s13326-020-00233-x"
- ],
- "doi:10.1007/978-3-030-88361-4_12": [],
- "doi:10.21105/joss.03374": [],
- "doi:10.1021/acssynbio.8b00532": [],
- "doi:10.1186/s13326-021-00246-0": [],
- "doi:10.1007/s10845-021-01855-3": [],
- "doi:10.1016/j.softx.2021.100952": [],
- "doi:10.3390/app112110450": [
- "doi:10.1007/s00354-019-00072-0"
- ],
- "doi:10.1017/s1471068421000466": [
- "doi:10.1007/s10817-017-9406-8"
- ],
- "doi:10.7717/peerj-cs.777": [],
- "doi:10.1016/j.websem.2021.100694": [
- "doi:10.1007/s10817-017-9406-8"
- ],
- "doi:10.3390/jsan10040066": [],
- "doi:10.3390/app10186328": [],
- "doi:10.1007/978-3-030-61380-8_3": [],
- "doi:10.1186/s13326-016-0091-z": [],
- "doi:10.1186/s13326-017-0133-1": [],
- "doi:10.1186/s12859-017-1999-8": [],
- "doi:10.1093/bib/bby015": [],
- "doi:10.1186/s12911-017-0568-4": [],
- "doi:10.3390/ijgi8030107": [],
- "doi:10.1002/cpe.5743": [],
- "doi:10.1093/bioinformatics/bty933": [
- "doi:10.1186/s12859-017-1999-8"
- ],
- "doi:10.1108/jeim-06-2016-0116": [],
- "doi:10.1007/978-3-030-00461-3_6": [],
- "doi:10.1186/s12911-020-01267-y": [
- "doi:10.1017/s0269888919000237"
- ],
- "doi:10.1186/s12911-020-01336-2": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1186/s13326-018-0191-z": [],
- "doi:10.1186/s13326-020-00233-x": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1186/s13326-017-0154-9"
- ],
- "doi:10.1016/j.rcim.2018.04.002": [],
- "doi:10.1016/j.ins.2016.05.022": [],
- "doi:10.1016/j.jbi.2018.06.008": [],
- "doi:10.1049/sfw2.12034": [],
- "doi:10.1007/s10579-021-09546-4": [],
- "doi:10.1007/978-3-030-75775-5_15": [
- "doi:10.1007/s10817-017-9406-8"
- ],
- "doi:10.4018/978-1-7998-6992-4.ch019": [],
- "doi:10.1007/s00165-021-00549-0": [
- "doi:10.1007/978-3-030-34968-4_11",
- "doi:10.1007/s10817-017-9406-8"
- ],
- "doi:10.1007/978-3-030-77817-0_19": [
- "doi:10.1186/s12911-020-01267-y"
- ],
- "doi:10.1007/s13740-021-00133-y": [
- "doi:10.1016/j.websem.2014.06.002"
- ],
- "doi:10.1155/2018/5083247": [],
- "doi:10.1007/s10817-017-9406-8": [],
- "doi:10.1186/s40965-018-0053-8": [],
- "doi:10.1007/978-3-319-99906-7_15": [],
- "doi:10.1007/s00354-019-00072-0": [],
- "doi:10.1111/exsy.12519": [],
- "doi:10.1038/s41598-019-40368-1": [
- "doi:10.1186/s13326-017-0126-0"
- ],
- "doi:10.1002/er.5262": [],
- "doi:10.4018/ijsita.2019040104": [],
- "doi:10.1007/978-3-030-34968-4_11": [
- "doi:10.1007/s10817-017-9406-8"
- ],
- "doi:10.1017/s026988892000017x": [],
- "doi:10.3390/app9214547": [],
- "doi:10.1080/00207543.2019.1680895": [
- "doi:10.1080/00207543.2017.1415468"
- ],
- "doi:10.4018/ijkss.2020040101": [],
- "doi:10.1002/cpe.5744": [],
- "doi:10.1093/bib/bbz009": [
- "doi:10.1016/j.compag.2017.10.012",
- "doi:10.1186/s13326-016-0091-z"
- ],
- "doi:10.4018/ijhcitp.2020070105": [],
- "doi:10.1007/s13218-020-00655-w": [
- "doi:10.1007/s10817-017-9406-8"
- ],
- "doi:10.1186/s13326-016-0055-3": [],
- "doi:10.1186/s13326-017-0170-9": [],
- "doi:10.1017/s1471068420000101": [],
- "doi:10.1186/s13673-019-0184-7": [],
- "doi:10.3390/s16101596": [],
- "doi:10.1007/s00799-018-0256-8": [
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1007/s11276-019-02029-z": [
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1038/sdata.2016.18": [
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1007/978-3-030-30796-7_28": [
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1108/dta-09-2019-0164": [
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1007/978-3-030-46970-2_22": [
- "doi:10.1016/j.jbi.2019.103154",
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1093/bioinformatics/btx566": [
- "doi:10.1016/j.websem.2014.03.003",
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1145/3345551": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1016/j.websem.2014.11.003": [
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1016/j.compag.2017.10.012": [
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1016/j.jbi.2019.103154": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1016/j.websem.2014.03.003"
- ],
- "doi:10.1007/s41061-021-00349-3": [
- "doi:10.1016/j.websem.2014.03.003",
- "doi:10.1093/bioinformatics/btx566"
- ],
- "doi:10.1002/humu.23641": [],
- "doi:10.1002/humu.23655": [
- "doi:10.1038/nprot.2015.124"
- ],
- "doi:10.1007/s10592-018-1072-9": [],
- "doi:10.1038/nprot.2015.124": [],
- "doi:10.1038/s41588-018-0096-x": [],
- "doi:10.1038/s41746-019-0110-4": [
- "doi:10.1038/nprot.2015.124",
- "doi:10.1093/nar/gky1105",
- "doi:10.1186/s13326-018-0191-z"
- ],
- "doi:10.1093/nar/gkx1132": [],
- "doi:10.1093/nar/gkx998": [],
- "doi:10.1093/nar/gky1003": [],
- "doi:10.1093/nar/gky1056": [],
- "doi:10.1093/nar/gky1079": [
- "doi:10.1093/nar/gkx998"
- ],
- "doi:10.1093/nar/gky1105": [
- "doi:10.1038/s41588-018-0096-x",
- "doi:10.1186/s13326-017-0126-0"
- ],
- "doi:10.1093/nar/gky1120": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1093/nar/gky1131": [],
- "doi:10.1186/s13326-017-0126-0": [
- "doi:10.1186/s13326-017-0126-0"
- ],
- "doi:10.1371/journal.pone.0213090": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1093/jamiaopen/ooaa030": [
- "doi:10.1038/s41588-018-0096-x",
- "doi:10.1038/s41746-019-0110-4",
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gky1120",
- "doi:10.1093/nar/gkz997",
- "doi:10.1371/journal.pone.0213090"
- ],
- "doi:10.1038/s41581-020-00335-w": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1093/nar/gkaa753": [
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.12688/f1000research.25144.1": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1371/journal.pcbi.1008376": [
- "doi:10.1016/j.compag.2017.10.012",
- "doi:10.1093/nar/gkx998",
- "doi:10.1093/nar/gky1056",
- "doi:10.1093/nar/gkz997",
- "doi:10.1186/s13326-017-0126-0",
- "doi:10.1371/journal.pone.0213090"
- ],
- "doi:10.1371/journal.pcbi.1008453": [
- "doi:10.1038/nprot.2015.124",
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gky1120",
- "doi:10.1093/nar/gky1131",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1093/bioinformatics/btaa879": [
- "doi:10.1093/bioinformatics/bty933",
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gky1131",
- "doi:10.1093/nar/gkz997",
- "doi:10.1186/s12859-017-1999-8"
- ],
- "doi:10.1093/nar/gkaa1043": [
- "doi:10.1038/nprot.2015.124",
- "doi:10.1038/s41581-020-00335-w",
- "doi:10.1038/s41746-019-0110-4",
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gkz997",
- "doi:10.1186/s13326-017-0126-0"
- ],
- "doi:10.1093/nar/gkaa980": [
- "doi:10.1093/nar/gky1056",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1093/g3journal/jkaa035": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1093/bioinformatics/btab019": [
- "doi:10.1093/nar/gkz997",
- "doi:10.1093/nar/gky1105"
- ],
- "doi:10.1186/s13023-021-01797-2": [
- "doi:10.1093/nar/gkz997",
- "doi:10.1093/nar/gky1105"
- ],
- "doi:10.1242/dmm.046573": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1371/journal.pone.0231916": [
- "doi:10.1093/nar/gkz997",
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1016/j.crtox.2021.03.001": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1038/s41398-021-01528-y": [
- "doi:10.1093/nar/gkz997",
- "doi:10.1007/s10592-018-1072-9"
- ],
- "doi:10.1016/j.ydbio.2021.05.015": [
- "doi:10.1093/nar/gky1056",
- "doi:10.1242/dmm.046573",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1002/1873-3468.14067": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1371/journal.pone.0213090",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1093/database/baab003": [
- "doi:10.1093/nar/gkz997",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1093/nar/gky1105"
- ],
- "doi:10.1002/ajmg.a.62239": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1186/s13326-021-00241-5": [
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1093/bioinformatics/btaa1091": [
- "doi:10.1093/nar/gkx998",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1242/dev.196097": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1093/nar/gkz997",
- "doi:10.1186/s13326-017-0126-0"
- ],
- "doi:10.3390/cancers13164207": [
- "doi:10.1093/database/baab003",
- "doi:10.1093/nar/gky1131",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1242/dev.200193": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1371/journal.pcbi.1009283": [
- "doi:10.1093/nar/gky1056",
- "doi:10.1093/nar/gky1131",
- "doi:10.1093/nar/gkz997",
- "doi:10.1093/nar/gky1105"
- ],
- "doi:10.3390/biom11081245": [
- "doi:10.1093/nar/gkaa1043",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1186/s13326-021-00249-x": [
- "doi:10.1093/nar/gkaa1043",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1093/bib/bbab363": [
- "doi:10.1093/nar/gky1131",
- "doi:10.1002/humu.23655",
- "doi:10.1093/nar/gkz997",
- "doi:10.1093/nar/gky1056",
- "doi:10.1038/nprot.2015.124"
- ],
- "doi:10.3390/ijerph18178985": [
- "doi:10.1038/s41598-019-40368-1",
- "doi:10.1038/nprot.2015.124",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1038/s41467-021-26674-1": [
- "doi:10.1038/nprot.2015.124",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1111/2041-210x.13753": [
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1016/j.xgen.2021.100029": [
- "doi:10.1016/j.xgen.2021.100031",
- "doi:10.1093/jamiaopen/ooaa030",
- "doi:10.1093/nar/gkz997",
- "doi:10.1016/j.xgen.2021.100028",
- "doi:10.1093/nar/gkaa1043"
- ],
- "doi:10.1016/j.ebiom.2021.103722": [
- "doi:10.1038/s41588-018-0096-x",
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gkaa1043",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1007/s00335-021-09921-0": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1007/s10592-018-1072-9",
- "doi:10.1093/nar/gky1105",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1016/j.xgen.2021.100028": [
- "doi:10.1016/j.xgen.2021.100029",
- "doi:10.1038/s41588-018-0096-x",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1016/j.xgen.2021.100031",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.1016/j.xgen.2021.100031": [
- "doi:10.1016/j.xgen.2021.100029",
- "doi:10.1016/j.xgen.2021.100028",
- "doi:10.1093/nar/gkz997"
- ],
- "doi:10.5028/jatm.v12.1098": [],
- "doi:10.1007/978-3-030-03056-8_25": [],
- "doi:10.1007/s11280-018-0611-0": [
- "doi:10.1007/s11280-018-0611-0"
- ],
- "doi:10.3897/bdj.6.e27539": [],
- "doi:10.3897/biss.3.34742": [],
- "doi:10.2196/13871": [],
- "doi:10.3390/ijgi7070264": [],
- "doi:10.1111/tgis.12547": [],
- "doi:10.1007/s00354-019-00074-y": [
- "doi:10.1007/978-3-030-04284-4_26",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1186/s13326-017-0170-9"
- ],
- "doi:10.1007/s41019-018-0082-4": [],
- "doi:10.1007/s41109-019-0133-4": [],
- "doi:10.1108/dta-12-2018-0110": [],
- "doi:10.1007/978-3-319-68288-4_25": [],
- "doi:10.1007/978-3-319-69471-9_41": [],
- "doi:10.1007/978-3-030-21462-3_2": [
- "doi:10.1007/978-3-030-21462-3_21"
- ],
- "doi:10.1007/978-3-030-21462-3_21": [
- "doi:10.1007/978-3-030-21462-3_21"
- ],
- "doi:10.1007/978-3-030-22102-7_21": [],
- "doi:10.1371/journal.pone.0191917": [],
- "doi:10.1007/978-3-030-30793-6_13": [],
- "doi:10.1007/978-3-030-36599-8_37": [],
- "doi:10.1007/978-3-030-33220-4_23": [],
- "doi:10.1007/s11192-020-03397-6": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1007/s10115-019-01415-5": [
- "doi:10.1007/978-3-030-30793-6_13"
- ],
- "doi:10.1162/dint_a_00019": [],
- "doi:10.1162/dint_a_00030": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.17645/pag.v8i2.2591": [],
- "doi:10.1007/978-3-030-49461-2_31": [],
- "doi:10.1007/978-3-030-49461-2_4": [],
- "doi:10.3390/data5020046": [],
- "doi:10.1145/3369875": [],
- "doi:10.1145/3371315": [],
- "doi:10.3390/info11050263": [],
- "doi:10.1145/3286488": [],
- "doi:10.1007/978-3-030-44584-3_39": [
- "doi:10.1007/978-3-030-21462-3_21"
- ],
- "doi:10.1007/978-3-030-45442-5_78": [],
- "doi:10.1177/0165551520911590": [],
- "doi:10.3390/electronics9050750": [],
- "doi:10.1177/0165551520921342": [],
- "doi:10.1007/978-3-030-50146-4_31": [],
- "doi:10.1007/978-3-319-93417-4_10": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1007/978-3-319-93417-4_17": [],
- "doi:10.1007/978-3-319-93417-4_19": [],
- "doi:10.1007/978-3-319-93417-4_32": [],
- "doi:10.3390/e20060439": [],
- "doi:10.1007/s00778-016-0444-3": [],
- "doi:10.1007/s00778-019-00558-9": [],
- "doi:10.1007/s00779-018-01189-7": [],
- "doi:10.1007/s00799-019-00266-3": [],
- "doi:10.3233/ds-190016": [],
- "doi:10.3233/sw-180310": [],
- "doi:10.1007/978-3-030-04284-4_26": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1177/0165551518793321": [],
- "doi:10.12688/f1000research.12168.1": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.12688/f1000research.14613.1": [],
- "doi:10.12688/f1000research.14613.2": [],
- "doi:10.1007/s10462-017-9556-4": [],
- "doi:10.1177/2053951717743530": [],
- "doi:10.1007/s00607-019-00701-y": [],
- "doi:10.1007/s11625-016-0412-2": [],
- "doi:10.1007/s11257-018-9207-8": [],
- "doi:10.1093/database/baz080": [],
- "doi:10.1111/coin.12216": [],
- "doi:10.1007/978-3-030-59621-7_2": [],
- "doi:10.1007/978-3-030-59833-4_1": [],
- "doi:10.1515/jib-2018-0023": [
- "doi:10.1093/nar/gkx1132"
- ],
- "doi:10.1007/s13218-020-00686-3": [
- "doi:10.1007/978-3-030-22102-7_21"
- ],
- "doi:10.1007/978-3-030-54956-5_1": [],
- "doi:10.1371/journal.pone.0236863": [],
- "doi:10.1145/3407194": [],
- "doi:10.3390/app10144893": [],
- "doi:10.1145/3309547": [],
- "doi:10.1007/978-3-030-58285-2_27": [],
- "doi:10.1007/s11280-020-00842-7": []
- },
- "publishers": {
- "crossref:735": {
- "id": "crossref:735",
- "name": "Thomas Telford Ltd."
- },
- "crossref:2780": {
- "id": "crossref:2780",
- "name": "The Korean Society of Medical Informatics"
- },
- "crossref:2373": {
- "id": "crossref:2373",
- "name": "Editorial CSIC"
- },
- "crossref:2560": {
- "id": "crossref:2560",
- "name": "F1000 Research Ltd"
- },
- "crossref:311": {
- "id": "crossref:311",
- "name": "Wiley"
- },
- "crossref:320": {
- "id": "crossref:320",
- "name": "Association for Computing Machinery (ACM)"
- },
- "crossref:98": {
- "id": "crossref:98",
- "name": "Hindawi Limited"
- },
- "crossref:1968": {
- "id": "crossref:1968",
- "name": "MDPI AG"
- },
- "crossref:22695": {
- "id": "crossref:22695",
- "name": "Polish Librarians' Association"
- },
- "crossref:2258": {
- "id": "crossref:2258",
- "name": "Pensoft Publishers"
- },
- "crossref:6951": {
- "id": "crossref:6951",
- "name": "Cogitatio"
- },
- "crossref:374": {
- "id": "crossref:374",
- "name": "Walter de Gruyter GmbH"
- },
- "crossref:11929": {
- "id": "crossref:11929",
- "name": "Universidad Autonoma de Bucaramanga"
- },
- "crossref:1010": {
- "id": "crossref:1010",
- "name": "JMIR Publications Inc."
- },
- "crossref:237": {
- "id": "crossref:237",
- "name": "The Company of Biologists"
- },
- "crossref:78": {
- "id": "crossref:78",
- "name": "Elsevier BV"
- },
- "crossref:2432": {
- "id": "crossref:2432",
- "name": "IGI Global"
- },
- "crossref:4340": {
- "id": "crossref:4340",
- "name": "Korean Home Management Association"
- },
- "crossref:301": {
- "id": "crossref:301",
- "name": "Informa UK Limited"
- },
- "crossref:340": {
- "id": "crossref:340",
- "name": "Public Library of Science (PLoS)"
- },
- "crossref:17207": {
- "id": "crossref:17207",
- "name": "Fundacion Universitaria San Pablo CEU"
- },
- "crossref:281": {
- "id": "crossref:281",
- "name": "MIT Press - Journals"
- },
- "crossref:2457": {
- "id": "crossref:2457",
- "name": "Trans Tech Publications, Ltd."
- },
- "crossref:7437": {
- "id": "crossref:7437",
- "name": "IOS Press"
- },
- "crossref:263": {
- "id": "crossref:263",
- "name": "Institute of Electrical and Electronics Engineers (IEEE)"
- },
- "crossref:56": {
- "id": "crossref:56",
- "name": "Cambridge University Press (CUP)"
- },
- "crossref:297": {
- "id": "crossref:297",
- "name": "Springer Science and Business Media LLC"
- },
- "crossref:6225": {
- "id": "crossref:6225",
- "name": "National Academy of Sciences of Ukraine (Co. LTD Ukrinformnauka)"
- },
- "crossref:179": {
- "id": "crossref:179",
- "name": "SAGE Publications"
- },
- "crossref:265": {
- "id": "crossref:265",
- "name": "Institution of Engineering and Technology (IET)"
- },
- "crossref:316": {
- "id": "crossref:316",
- "name": "American Chemical Society (ACS)"
- },
- "crossref:286": {
- "id": "crossref:286",
- "name": "Oxford University Press (OUP)"
- },
- "crossref:140": {
- "id": "crossref:140",
- "name": "Emerald"
- },
- "crossref:8722": {
- "id": "crossref:8722",
- "name": "The Open Journal"
- },
- "crossref:530": {
- "id": "crossref:530",
- "name": "FapUNIFESP (SciELO)"
- },
- "crossref:3742": {
- "id": "crossref:3742",
- "name": "Sociedade Brasileira de Computacao - SB"
- },
- "crossref:4443": {
- "id": "crossref:4443",
- "name": "PeerJ"
- }
- }
-}
\ No newline at end of file
diff --git a/ogData/graph_publications.csv b/ogData/graph_publications.csv
deleted file mode 100644
index 1bbe053..0000000
--- a/ogData/graph_publications.csv
+++ /dev/null
@@ -1,501 +0,0 @@
-id,title,type,publication_year,issue,volume,chapter,publication_venue,venue_type,publisher,event
-doi:10.1016/j.websem.2021.100655,Crossing The Chasm Between Ontology Engineering And Application Development: A Survey,journal-article,2021,,70,,Journal Of Web Semantics,journal,crossref:78,
-doi:10.1007/s10115-017-1100-y,Core Techniques Of Question Answering Systems Over Knowledge Bases: A Survey,journal-article,2017,3,55,,Knowledge And Information Systems,journal,crossref:297,
-doi:10.1016/j.websem.2014.03.003,Api-Centric Linked Data Integration: The Open Phacts Discovery Platform Case Study,journal-article,2014,,29,,Journal Of Web Semantics,journal,crossref:78,
-doi:10.1093/nar/gkz997,The Monarch Initiative In 2019: An Integrative Data And Analytic Platform Connecting Phenotypes To Genotypes Across Species,journal-article,2019,D1,48,,Nucleic Acids Research,journal,crossref:286,
-doi:10.3390/publications7030050,Dras-Tic Linked Data: Evenly Distributing The Past,journal-article,2019,3,7,,Publications,journal,crossref:1968,
-doi:10.1017/s0269888920000065,"Ontology Engineering Methodologies For The Evolution Of Living And Reused Ontologies: Status, Trends, Findings And Recommendations",journal-article,2020,,35,,The Knowledge Engineering Review,journal,crossref:56,
-doi:10.3390/info11030129,The Zaragoza’S Knowledge Graph: Open Data To Harness The City Knowledge,journal-article,2020,3,11,,Information,journal,crossref:1968,
-doi:10.1007/s00778-018-0528-3,Summarizing Semantic Graphs: A Survey,journal-article,2018,3,28,,The Vldb Journal,journal,crossref:297,
-doi:10.21105/joss.02731,Grlc: The Git Repository Linked Data Api Constructor.,journal-article,2021,67,6,,Journal Of Open Source Software,journal,crossref:8722,
-doi:10.1016/j.websem.2014.06.002,Sina: Semantic Interpretation Of User Queries For Question Answering On Interlinked Data,journal-article,2015,,30,,Journal Of Web Semantics,journal,crossref:78,
-doi:10.1007/s10115-019-01401-x,Structured Query Construction Via Knowledge Graph Embedding,journal-article,2019,5,62,,Knowledge And Information Systems,journal,crossref:297,
-doi:10.1007/978-3-030-30793-6_22,Difficulty-Controllable Multi-Hop Question Generation From Knowledge Graphs,book-chapter,2019,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2019,book,crossref:297,
-doi:10.1007/978-3-030-33220-4_25,Quant - Question Answering Benchmark Curator,book-chapter,2019,,,1,Lecture Notes In Computer Science - Semantic Systems. The Power Of Ai And Knowledge Graphs,book,crossref:297,
-doi:10.1080/17538947.2020.1738568,Geo-Analytical Question-Answering With Gis,journal-article,2020,1,14,,International Journal Of Digital Earth,journal,crossref:301,
-doi:10.1007/s10462-020-09826-5,A Short Survey On End-To-End Simple Question Answering Systems,journal-article,2020,7,53,,Artificial Intelligence Review,journal,crossref:297,
-doi:10.1007/978-3-030-49461-2_25,Qanswer Kg: Designing A Portable Question Answering System Over Rdf Data,book-chapter,2020,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/s10462-020-09866-x,Survey On Evaluation Methods For Dialogue Systems,journal-article,2020,1,54,,Artificial Intelligence Review,journal,crossref:297,
-doi:10.1007/s10796-020-10035-2,An Overview Of Utilizing Knowledge Bases In Neural Networks For Question Answering,journal-article,2020,5,22,,Information Systems Frontiers,journal,crossref:297,
-doi:10.1007/978-3-030-60276-5_25,Legal Tech: Documents’ Validation Method Based On The Associative-Ontological Approach,book-chapter,2020,,,1,Speech And Computer - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-54956-5_2,Question Answering On Scholarly Knowledge Graphs,book-chapter,2020,,,1,Digital Libraries For Open Knowledge - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/s11280-020-00836-5,Temporal Knowledge Extraction From Large-Scale Text Corpus,journal-article,2020,1,24,,World Wide Web,journal,crossref:297,
-doi:10.3390/a13090217,R2D2: A Dbpedia Chatbot Using Triple-Pattern Like Queries,journal-article,2020,9,13,,Algorithms,journal,crossref:1968,
-doi:10.1007/978-3-030-62466-8_1,Casqad – A New Dataset For Context-Aware Spatial Question Answering,book-chapter,2020,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2020,book,crossref:297,
-doi:10.1016/j.eswa.2020.113205,Data-Driven Construction Of Sparql Queries By Approximate Question Graph Alignment In Question Answering Over Knowledge Graphs,journal-article,2020,,146,,Expert Systems With Applications,journal,crossref:78,
-doi:10.1007/s00521-020-05491-5,Automated Organization Of Interaction Between Modules Of Information Systems Based On Neural Network Data Channels,journal-article,2020,12,33,,Neural Computing And Applications,journal,crossref:297,
-doi:10.1002/bse.2855,Design For The Environment: An Ontologyâ€Based Knowledge Management Model For Green Product Development,journal-article,2021,8,30,,Business Strategy And The Environment,journal,crossref:311,
-doi:10.3390/info12040160,Conversation Concepts: Understanding Topics And Building Taxonomies For Financial Services,journal-article,2021,4,12,,Information,journal,crossref:1968,
-doi:10.1002/widm.1412,Textâ€Based Question Answering From Information Retrieval And Deep Neural Network Perspectives: A Survey,journal-article,2021,6,11,,Wires Data Mining And Knowledge Discovery,journal,crossref:311,
-doi:10.3390/info12070271,"Challenges, Techniques, And Trends Of Simple Knowledge Graph Question Answering: A Survey",journal-article,2021,7,12,,Information,journal,crossref:1968,
-doi:10.1108/dta-12-2020-0312,Robust Cross-Lingual Knowledge Base Question Answering Via Knowledge Distillation,journal-article,2021,5,55,,Data Technologies And Applications,journal,crossref:140,
-doi:10.1007/978-3-030-80418-3_17,Santé: A Light-Weight End-To-End Semantic Search Framework For Rdf Data,book-chapter,2021,,,1,The Semantic Web: Eswc 2021 Satellite Events - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-82147-0_16,Improving Answer Type Classification Quality Through Combined Question Answering Datasets,book-chapter,2021,,,1,"Knowledge Science, Engineering And Management - Lecture Notes In Computer Science",book,crossref:297,
-doi:10.1016/j.knosys.2021.107626,Sparseqa: Sequential Word Reordering And Parsing For Answering Complex Natural Language Questions Over Knowledge Graphs,journal-article,2022,,235,,Knowledge-Based Systems,journal,crossref:78,
-doi:10.1007/s10791-021-09398-0,Neural Ranking Models For Document Retrieval,journal-article,2021,6,24,,Information Retrieval Journal,journal,crossref:297,
-doi:10.1016/j.websem.2021.100681,"An Empirical Study Of Representing Adjectives Over Knowledge Bases: Approach, Lexicon And Application",journal-article,2022,,72,,Journal Of Web Semantics,journal,crossref:78,
-doi:10.1155/2014/506740,Using Data Crawlers And Semantic Web To Build Financial Xbrl Data Generators: The Sonar Extension Approach,journal-article,2014,,2014,,The Scientific World Journal,journal,crossref:98,
-doi:10.1007/s10845-018-1427-6,The Development Of An Ontology For Describing The Capabilities Of Manufacturing Resources,journal-article,2018,2,30,,Journal Of Intelligent Manufacturing,journal,crossref:297,
-doi:10.1080/20964471.2019.1661662,Geospatial Data Ontology: The Semantic Foundation Of Geospatial Data Integration And Sharing,journal-article,2019,3,3,,Big Earth Data,journal,crossref:301,
-doi:10.3390/electronics7120371,Ontology-Based Model To Support Ubiquitous Healthcare Systems For Copd Patients,journal-article,2018,12,7,,Electronics,journal,crossref:1968,
-doi:10.1080/19401493.2018.1492020,Semantics For Assembling Modular Components In A Scalable Building Performance Simulation,journal-article,2018,2,12,,Journal Of Building Performance Simulation,journal,crossref:301,
-doi:10.3233/ds-170010,Genuine Semantic Publishing,journal-article,2017,1-2,1,,Data Science,journal,crossref:7437,
-doi:10.4018/ijossp.2019040101,Norjade,journal-article,2019,2,10,,International Journal Of Open Source Software And Processes,journal,crossref:2432,
-doi:10.4018/ijpada.2014010107,From Software-Based To Knowledge-Based Policy Implementation And Compliance,journal-article,2014,1,1,,International Journal Of Public Administration In The Digital Age,journal,crossref:2432,
-doi:10.4018/ijsita.2017100105,Ontology Authoring And Linked Data Generation From Web Applications,journal-article,2017,4,8,,International Journal Of Strategic Information Technology And Applications,journal,crossref:2432,
-doi:10.4018/jdsst.2011010102,Automated Diagnosis Through Ontologies And Logical Descriptions,journal-article,2011,1,3,,International Journal Of Decision Support System Technology,journal,crossref:2432,
-doi:10.4028/www.scientific.net/amm.809-810.1281,A Generic Ontology For Product Structuring,journal-article,2015,,809-810,,Applied Mechanics And Materials,journal,crossref:2457,
-doi:10.1007/s41870-019-00283-0,A Metric Suite To Analyse Strength Of Modularised Ontologies,journal-article,2019,3,11,,International Journal Of Information Technology,journal,crossref:297,
-doi:10.1177/2055207618804927,The Use Of Computer-Interpretable Clinical Guidelines To Manage Care Complexities Of Patients With Multimorbid Conditions: A Review,journal-article,2018,,4,,Digital Health,journal,crossref:179,
-doi:10.1007/s12136-018-0370-7,What Kind Of Ontological Categories For Geo-Ontologies?,journal-article,2018,2,34,,Acta Analytica,journal,crossref:297,
-doi:10.1007/s12145-019-00398-9,Towards An Information Centric Flood Ontology For Information Management And Communication,journal-article,2019,4,12,,Earth Science Informatics,journal,crossref:297,
-doi:10.1007/978-3-319-91189-2_11,"Financial Knowledge Instantiation From Semi-Structured, Heterogeneous Data Sources",book-chapter,2018,,,1,Advances In Intelligent Systems And Computing - Artificial Intelligence And Algorithms In Intelligent Systems,book,crossref:297,
-doi:10.4258/hir.2018.24.4.376,Design And Construction Of A Nlp Based Knowledge Extraction Methodology In The Medical Domain Applied To Clinical Information,journal-article,2018,4,24,,Healthcare Informatics Research,journal,crossref:2780,
-doi:10.1155/2015/734984,A Novel Ontology Approach To Support Design For Reliability Considering Environmental Effects,journal-article,2015,,2015,,The Scientific World Journal,journal,crossref:98,
-doi:10.1186/s41039-019-0105-4,Integrating Multiple Data Sources For Learning Analytics—Review Of Literature,journal-article,2019,1,14,,Research And Practice In Technology Enhanced Learning,journal,crossref:297,
-doi:10.1186/s41239-019-0146-1,Supporting Self-Regulated Learning And Personalization Using Eportfolios: A Semantic Approach Based On Learning Paths,journal-article,2019,1,16,,International Journal Of Educational Technology In Higher Education,journal,crossref:297,
-doi:10.1007/978-3-030-00940-3_15,Sepoma: Semantic-Based Data Analysis For Political Marketing,book-chapter,2018,,,1,Communications In Computer And Information Science - Technologies And Innovation,book,crossref:297,
-doi:10.1007/978-3-030-00940-3_6,Se-Diagenf: An Ontology-Based Expert System For Cattle Disease Diagnosis,book-chapter,2018,,,1,Communications In Computer And Information Science - Technologies And Innovation,book,crossref:297,
-doi:10.3390/app9122553,Ontoimm: An Ontology For Product Intelligent Master Model,journal-article,2019,12,9,,Applied Sciences,journal,crossref:1968,
-doi:10.1590/1981-5344/3306,Análise E Interpretação De Ideias: Proposta De Um Modelo,journal-article,2019,2,24,,Perspectivas Em Ciência Da Informação,journal,crossref:530,
-doi:10.1007/s00530-019-00610-2,A Semantic Parliamentary Multimedia Approach For Retrieval Of Video Clips With Content Understanding,journal-article,2019,4,25,,Multimedia Systems,journal,crossref:297,
-doi:10.1002/cpe.4489,Improving Semantic Similarity Retrieval With Word Embeddings,journal-article,2018,23,30,,Concurrency And Computation: Practice And Experience,journal,crossref:311,
-doi:10.1111/exsy.12291,Designing Rule-Based Expert Systems With The Aid Of The Model-Driven Development Approach,journal-article,2018,5,35,,Expert Systems,journal,crossref:311,
-doi:10.1111/exsy.12355,Efficient Management And Storage Of A Multiversion Owl 2 Dl Domain Ontology,journal-article,2018,2,36,,Expert Systems,journal,crossref:311,
-doi:10.1111/exsy.12378,Converness: Ontologyâ€Driven Conversational Awareness And Context Understanding In Multimodal Dialogue Systems,journal-article,2019,1,37,,Expert Systems,journal,crossref:311,
-doi:10.1111/exsy.12380,Onyx: A New Canvasâ€Based Tool For Visualizing Biomedical And Health Ontologies,journal-article,2019,1,37,,Expert Systems,journal,crossref:311,
-doi:10.3390/ijgi6120386,Benchmarking The Applicability Of Ontology In Geographic Object-Based Image Analysis,journal-article,2017,12,6,,Isprs International Journal Of Geo-Information,journal,crossref:1968,
-doi:10.1111/cgf.13324,Viewing Visual Analytics As Model Building,journal-article,2018,6,37,,Computer Graphics Forum,journal,crossref:311,
-doi:10.1007/978-3-030-69992-5_1,Knowledge Graphs Meet Crowdsourcing: A Brief Survey,book-chapter,2021,,,1,"Lecture Notes Of The Institute For Computer Sciences, Social Informatics And Telecommunications Engineering - Cloud Computing",book,crossref:297,
-doi:10.1007/978-3-658-33466-6_32,Ontology-Driven And Integrated Automotive Systems Engineering,book-chapter,2021,,,1,Proceedings - 21. Internationales Stuttgarter Symposium,book,crossref:297,
-doi:10.1016/j.inffus.2021.01.007,Ontology Integration: Approaches And Challenging Issues,journal-article,2021,,71,,Information Fusion,journal,crossref:78,
-doi:10.3390/ijgi10060358,"Land Use Change Ontology And Traffic Prediction Through Recurrent Neural Networks: A Case Study In Calgary, Canada",journal-article,2021,6,10,,Isprs International Journal Of Geo-Information,journal,crossref:1968,
-doi:10.1007/978-3-030-71292-1_39,A Semantic Framework For Chinese Historical Events Based On Linked Data And Knowledge Graph,book-chapter,2021,,,1,"Diversity, Divergence, Dialogue - Lecture Notes In Computer Science",book,crossref:297,
-doi:10.3390/en14072024,Metadata Schemas And Ontologies For Building Energy Applications: A Critical Review And Use Case Analysis,journal-article,2021,7,14,,Energies,journal,crossref:1968,
-doi:10.1016/j.compind.2021.103496,An Ontology For Reasoning Over Engineering Textual Data Stored In Fmea Spreadsheet Tables,journal-article,2021,,131,,Computers In Industry,journal,crossref:78,
-doi:10.1186/s13174-021-00135-w,Evaluating Qualico: An Ontology To Facilitate Qualitative Methods Sharing To Support Open Science,journal-article,2021,1,12,,Journal Of Internet Services And Applications,journal,crossref:3742,
-doi:10.1080/15230406.2021.1952109,Semantic Conflation In Giscience: A Systematic Review,journal-article,2021,6,48,,Cartography And Geographic Information Science,journal,crossref:301,
-doi:10.1007/978-3-030-86970-0_23,"Analysis Of Ontology Quality Dimensions, Criteria And Metrics",book-chapter,2021,,,1,Computational Science And Its Applications – Iccsa 2021 - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1017/s0269888921000114,Agent Mining Approaches: An Ontological View,journal-article,2021,,36,,The Knowledge Engineering Review,journal,crossref:56,
-doi:10.1016/j.jcp.2021.110624,Theory-Guided Hard Constraint Projection (Hcp): A Knowledge-Based Data-Driven Scientific Machine Learning Method,journal-article,2021,,445,,Journal Of Computational Physics,journal,crossref:78,
-doi:10.1007/978-3-030-82430-3_7,Knowledge Graphs And Linked Data For The Built Environment,book-chapter,2021,,,1,Structural Integrity - Industry 4.0 For The Built Environment,book,crossref:297,
-doi:10.1016/j.cageo.2021.105005,Georeservoir: An Ontology For Deep-Marine Depositional System Geometry Description,journal-article,2022,,159,,Computers & Geosciences,journal,crossref:78,
-doi:10.3390/su132413844,Approaching Healthy City Ontology: First-Level Classes Definition Using Bfo,journal-article,2021,24,13,,Sustainability,journal,crossref:1968,
-doi:10.1108/oir-11-2020-0497,Ontologies Application In The Sharing Economy Domain: A Systematic Review,journal-article,2021,,,,Online Information Review,journal,crossref:140,
-doi:10.3390/electronics10212616,Integration Strategy And Tool Between Formal Ontology And Graph Database Technology,journal-article,2021,21,10,,Electronics,journal,crossref:1968,
-doi:10.3390/app11219825,Model And Knowledge Representation For The Reuse Of Design Process Knowledge Supporting Design Automation In Mass Customization,journal-article,2021,21,11,,Applied Sciences,journal,crossref:1968,
-doi:10.3390/en14206692,Fair Metadata Standards For Low Carbon Energy Research—A Review Of Practices And How To Advance,journal-article,2021,20,14,,Energies,journal,crossref:1968,
-doi:10.1080/00207543.2021.2002967,Actionable Cognitive Twins For Decision Making In Manufacturing,journal-article,2021,2,60,,International Journal Of Production Research,journal,crossref:301,
-doi:10.3390/app12010143,Ontology-Based Nutritional Recommender System,journal-article,2021,1,12,,Applied Sciences,journal,crossref:1968,
-doi:10.1007/978-3-030-89811-3_20,Challenges In The Implementation Of Privacy Enhancing Semantic Technologies (Pests) Supporting Gdpr,book-chapter,2021,,,1,Ai Approaches To The Complexity Of Legal Systems Xi-Xii - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1016/j.is.2021.101967,Legal Information Retrieval Systems: State-Of-The-Art And Open Issues,journal-article,2022,,106,,Information Systems,journal,crossref:78,
-doi:10.3390/app12010287,Ontology-Driven Cultural Heritage Conservation: A Case Of The Analects Of Confucius,journal-article,2021,1,12,,Applied Sciences,journal,crossref:1968,
-doi:10.4018/978-1-6684-3702-5.ch037,Fuzzy Ontology For Requirements Determination And Documentation During Software Development,book-chapter,2022,,,0,,,,
-doi:10.1016/j.eswa.2019.04.009,Legal Ontologies Over Time: A Systematic Mapping Study,journal-article,2019,,130,,Expert Systems With Applications,journal,crossref:78,
-doi:10.1016/j.eswa.2019.112965,Automating The Expansion Of A Knowledge Graph,journal-article,2020,,141,,Expert Systems With Applications,journal,crossref:78,
-doi:10.1016/j.jss.2018.09.069,Efficient Cloud Service Discovery Approach Based On Lda Topic Modeling,journal-article,2018,,146,,Journal Of Systems And Software,journal,crossref:78,
-doi:10.1007/s10010-021-00466-x,Ontology For Maintenance Of Onshore Wind Turbines,journal-article,2021,2,85,,Forschung Im Ingenieurwesen,journal,crossref:297,
-doi:10.3390/info12060236,Integrating Land-Cover Products Based On Ontologies And Local Accuracy,journal-article,2021,6,12,,Information,journal,crossref:1968,
-doi:10.3390/app11062813,Ontology-Based Semantic Conceptualisation Of Historical Built Heritage To Generate Parametric Structured Models From Point Clouds,journal-article,2021,6,11,,Applied Sciences,journal,crossref:1968,
-doi:10.1007/s40194-021-01151-x,Recommendations For An Open Science Approach To Welding Process Research Data,journal-article,2021,9,65,,Welding In The World,journal,crossref:297,
-doi:10.1007/978-3-030-67708-4_5,A Conceptual Approximation Toward Occupational Safety And Health Within The Servitized Industry 4.0,book-chapter,2021,,,1,Lecture Notes In Management And Industrial Engineering - Organizational Engineering In Industry 4.0,book,crossref:297,
-doi:10.1016/j.comcom.2021.04.024,Ontology Knowledge Base Combined With Bayesian Networks For Integrated Corridor Risk Warning,journal-article,2021,,174,,Computer Communications,journal,crossref:78,
-doi:10.1007/978-3-030-80847-1_9,Developing A Knowledge Base On Climate Change For Metropolitan Cities,book-chapter,2021,,,1,Ifip Advances In Information And Communication Technology - Artificial Intelligence For Knowledge Management,book,crossref:297,
-doi:10.1080/0194262x.2021.1920555,Bibliometric Analysis On Bibliometric-Based Ontology Research,journal-article,2021,4,40,,Science & Technology Libraries,journal,crossref:301,
-doi:10.7466/jfbl.2020.38.4.1,An Ontology Of Intimate Partnerships For Social Big Data Research,journal-article,2020,4,38,,Journal Of Families And Better Life,journal,crossref:4340,
-doi:10.3390/jrfm14060238,Intellectual Capital And Knowledge Management Research Towards Value Creation. From The Past To The Future,journal-article,2021,6,14,,Journal Of Risk And Financial Management,journal,crossref:1968,
-doi:10.4018/978-1-7998-6792-0.ch005,Software Development Knowledge Management System Using Web Portal,book-chapter,2021,,,0,,,,
-doi:10.1111/exsy.12748,Using Semantic Annotations On Political Debate Videos For Building Open Government Based Lawmaking,journal-article,2021,8,38,,Expert Systems,journal,crossref:311,
-doi:10.3390/ani11010145,Myfishcheck: A Model To Assess Fish Welfare In Aquaculture,journal-article,2021,1,11,,Animals,journal,crossref:1968,
-doi:10.3390/axioms10020093,Transdisciplinary Scientific Strategies For Soft Computing Development: Towards An Era Of Data And Business Analytics,journal-article,2021,2,10,,Axioms,journal,crossref:1968,
-doi:10.4018/978-1-7998-6874-3.ch006,Semantically Enhanced Web Service For Global Supply Chain Disruption Management,book-chapter,2021,,,0,,,,
-doi:10.3390/encyclopedia1010015,Ontologies In Knowledge Organization,journal-article,2021,1,1,,Encyclopedia,journal,crossref:1968,
-doi:10.1016/j.compind.2020.103374,An Ontology-Based Framework To Formalize And Represent 4D Printing Knowledge In Design,journal-article,2021,,126,,Computers In Industry,journal,crossref:78,
-doi:10.1017/s0890060421000147,Intelligent Product Redesign Strategy With Ontology-Based Fine-Grained Sentiment Analysis,journal-article,2021,3,35,,"Artificial Intelligence For Engineering Design, Analysis And Manufacturing",journal,crossref:56,
-doi:10.3390/app11125633,Semantic Microservice Framework For Digital Twins,journal-article,2021,12,11,,Applied Sciences,journal,crossref:1968,
-doi:10.3390/met11071025,A Decision Support System For Changes In Operation Modes Of The Copper Heap Leaching Process,journal-article,2021,7,11,,Metals,journal,crossref:1968,
-doi:10.1007/978-3-030-79150-6_10,An Ontology-Based Concept For Meta Automl,book-chapter,2021,,,1,Ifip Advances In Information And Communication Technology - Artificial Intelligence Applications And Innovations,book,crossref:297,
-doi:10.1111/nbu.12482,Personalised Nutrition For Healthy Living: The Protein Project,journal-article,2021,1,46,,Nutrition Bulletin,journal,crossref:311,
-doi:10.1177/01655515211022185,Using Iso And Semantic Web Standard For Building A Multilingual Terminology E-Dictionary: A Use Case Of Chinese Ceramic Vases,journal-article,2021,,,,Journal Of Information Science,journal,crossref:179,
-doi:10.1007/s11069-021-04742-5,Integration Of A Geo-Ontology-Based Knowledge Model And Spatial Analysis Into Emergency Response For Geologic Hazards,journal-article,2021,2,108,,Natural Hazards,journal,crossref:297,
-doi:10.3390/asi4010021,An Ontological Approach For Early Detection Of Suspected Covid-19 Among Copd Patients,journal-article,2021,1,4,,Applied System Innovation,journal,crossref:1968,
-doi:10.3390/electronics10080905,Knowledge-Based System For Crop Pests And Diseases Recognition,journal-article,2021,8,10,,Electronics,journal,crossref:1968,
-doi:10.3390/app11157056,Towards Collaborative And Dynamic Spectrum Sharing Via Interpretation Of Spectrum Access Policies,journal-article,2021,15,11,,Applied Sciences,journal,crossref:1968,
-doi:10.1007/978-3-030-79022-6_10,Ontology-Driven Audit Using The Rea-Ontology,book-chapter,2021,,,1,Lecture Notes In Business Information Processing - Advanced Information Systems Engineering Workshops,book,crossref:297,
-doi:10.1002/widm.1413,Incorporating Domain Ontology Information Into Clustering In Heterogeneous Networks,journal-article,2021,4,11,,Wires Data Mining And Knowledge Discovery,journal,crossref:311,
-doi:10.1007/978-3-030-72657-7_24,Automatic Classifier Of Scientific Contents,book-chapter,2021,,,1,Advances In Intelligent Systems And Computing - Trends And Applications In Information Systems And Technologies,book,crossref:297,
-doi:10.4018/978-1-5225-7501-6.ch036,Supply Chain Coordination Based On Web Service,book-chapter,2019,,,0,,,,
-doi:10.4018/978-1-5225-8223-6.ch008,Semantic Web Service For Global Apparel Business,book-chapter,2019,,,0,,,,
-doi:10.1080/0951192x.2019.1571236,Prima: A Prescriptive Maintenance Model For Cyber-Physical Production Systems,journal-article,2019,4-5,32,,International Journal Of Computer Integrated Manufacturing,journal,crossref:301,
-doi:10.1080/0951192x.2019.1599443,Enhancing Supply Chain Resilience Using Ontology-Based Decision Support System,journal-article,2019,7,32,,International Journal Of Computer Integrated Manufacturing,journal,crossref:301,
-doi:10.1080/09544828.2019.1643830,Analogical Stimuli Retrieval Approach Based On R-Sbf Ontology Model,journal-article,2019,10-12,30,,Journal Of Engineering Design,journal,crossref:301,
-doi:10.1007/978-3-319-61911-8_13,Sentiment Polarity Detection In Social Networks: An Approach For Asthma Disease Management,book-chapter,2017,,,1,Advanced Computational Methods For Knowledge Engineering - Advances In Intelligent Systems And Computing,book,crossref:297,
-doi:10.1007/978-3-319-67283-0_4,An Ontology-Based Decision Support System For The Management Of Home Gardens,book-chapter,2017,,,1,Communications In Computer And Information Science - Technologies And Innovation,book,crossref:297,
-doi:10.1108/jd-10-2017-0139,User Conceptualizations Of Derivative Relationships In The Bibliographic Universe,journal-article,2018,4,74,,Journal Of Documentation,journal,crossref:140,
-doi:10.1007/978-3-030-24289-3_20,A Knowledge-Based Computational Environment For Real-World Data Processing,book-chapter,2019,,,1,Computational Science And Its Applications – Iccsa 2019 - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1017/s0269888916000011,Scientific Knowledge Engineering: A Conceptual Delineation And Overview Of The State Of The Art,journal-article,2016,2,31,,The Knowledge Engineering Review,journal,crossref:56,
-doi:10.1017/s0269888918000139,Knowledge Machines,journal-article,2018,,33,,The Knowledge Engineering Review,journal,crossref:56,
-doi:10.4018/978-1-5225-0956-1.ch009,Supply Chain Coordination Based On Web Service,book-chapter,2017,,,0,,,,
-doi:10.1007/978-3-030-30760-8_23,Information Governance Maturity Assessment Using Enterprise Architecture Model Analysis And Description Logics,book-chapter,2019,,,1,Digital Libraries For Open Knowledge - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/s11095-017-2308-y,Model-Based Methods In The Biopharmaceutical Process Lifecycle,journal-article,2017,12,34,,Pharmaceutical Research,journal,crossref:297,
-doi:10.1007/978-3-319-74433-9_2,Semantic Discovery In The Web Of Things,book-chapter,2018,,,1,Current Trends In Web Engineering - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1017/s1351324918000347,Models To Represent Linguistic Linked Data,journal-article,2018,6,24,,Natural Language Engineering,journal,crossref:56,
-doi:10.1007/978-3-030-10728-4_4,A Rule-Based Expert System For Cow Disease Diagnosis,book-chapter,2018,,,1,Ict For Agriculture And Environment - Advances In Intelligent Systems And Computing,book,crossref:297,
-doi:10.1002/ett.3625,Cognitive Internet Of Vehicles And Disaster Management: A Proposed Architecture And Future Direction,journal-article,2019,,,,Transactions On Emerging Telecommunications Technologies,journal,crossref:311,
-doi:10.1186/s40561-017-0046-6,Evaluating The Quality Of The Ontology-Based Auto-Generated Questions,journal-article,2017,1,4,,Smart Learning Environments,journal,crossref:297,
-doi:10.1017/aer.2019.74,Semantics-Based Summarisation Of Atm Information,journal-article,2019,1268,123,,The Aeronautical Journal,journal,crossref:56,
-doi:10.1080/00207543.2017.1415468,Human Resource Optimisation Through Semantically Enriched Data,journal-article,2017,8,56,,International Journal Of Production Research,journal,crossref:301,
-doi:10.1680/jmapl.17.00052,An Ontology-Based Data Integration Framework For Construction Information Management,journal-article,2018,3,171,,"Proceedings Of The Institution Of Civil Engineers - Management, Procurement And Law",journal,crossref:735,
-doi:10.1186/s13326-017-0154-9,Analysis And Visualization Of Disease Courses In A Semantically-Enabled Cancer Registry,journal-article,2017,1,8,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1186/s13326-017-0158-5,A Histological Ontology Of The Human Cardiovascular System,journal-article,2017,1,8,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1109/access.2016.2621756,A New Fuzzy Ontology Development Methodology (Fodm) Proposal,journal-article,2016,,4,,Ieee Access,journal,crossref:263,
-doi:10.1109/access.2017.2734681,Network Security Situation Awareness Based On Semantic Ontology And User-Defined Rules For Internet Of Things,journal-article,2017,,5,,Ieee Access,journal,crossref:263,
-doi:10.1109/tip.2016.2552401,Ontology-Based Semantic Image Segmentation Using Mixture Models And Multiple Crfs,journal-article,2016,7,25,,Ieee Transactions On Image Processing,journal,crossref:263,
-doi:10.3390/app10020591,An Analytical Game For Knowledge Acquisition For Maritime Behavioral Analysis Systems,journal-article,2020,2,10,,Applied Sciences,journal,crossref:1968,
-doi:10.3390/app10031040,Agrient: A Knowledge-Based Web Platform For Managing Insect Pests Of Field Crops,journal-article,2020,3,10,,Applied Sciences,journal,crossref:1968,
-doi:10.1007/s12652-019-01561-2,Using Lot Methodology To Develop A Noise Pollution Ontology: A Spanish Use Case,journal-article,2019,11,11,,Journal Of Ambient Intelligence And Humanized Computing,journal,crossref:297,
-doi:10.36702/zin.495,Deconstructing The Scholarly Paper. Ontologies For Semantic Publishing,journal-article,2019,1(113),57,,Zagadnienia Informacji Naukowej - Studia Informacyjne,journal,crossref:22695,
-doi:10.1007/978-3-030-37933-9_8,Maturity Assessment Of Togaf Adm Using Enterprise Architecture Model Analysis And Description Logics,book-chapter,2020,,,1,Advances In Enterprise Engineering Xiii - Lecture Notes In Business Information Processing,book,crossref:297,
-doi:10.1007/978-3-030-35249-3_66,Knowledge Base Intelligent System Of Optimal Locations For Safe Water Wells,book-chapter,2019,,,1,"Advances In Intelligent Systems And Computing - 10Th International Conference On Theory And Application Of Soft Computing, Computing With Words And Perceptions - Icsccw-2019",book,crossref:297,
-doi:10.1007/978-3-030-34146-6_23,The Ontooo-Method: An Ontology-Driven Conceptual Modeling Approach For Evolving The Oo-Method,book-chapter,2019,,,1,Lecture Notes In Computer Science - Advances In Conceptual Modeling,book,crossref:297,
-doi:10.1007/978-3-030-42517-3_1,Comparative Study Of Rdf And Owl Ontology Languages As Support For The Semantic Web,book-chapter,2020,,,1,Communications In Computer And Information Science - Applied Technologies,book,crossref:297,
-doi:10.4018/978-1-7998-1863-2.ch002,Fuzzy Ontology For Requirements Determination And Documentation During Software Development,book-chapter,2020,,,0,,,,
-doi:10.4018/978-1-7998-1934-9.ch013,Model Based On Ontological Engineering As Support For Stakeholder Management,book-chapter,2020,,,0,,,,
-doi:10.4018/978-1-7998-2104-5.ch009,Contemporary Archival Description As Required Digital Competence Of Today'S Archivists,book-chapter,2020,,,0,,,,
-doi:10.1017/s0269888919000237,A Review And Comparison Of Ontology-Based Approaches To Robot Autonomy,journal-article,2019,,34,,The Knowledge Engineering Review,journal,crossref:56,
-doi:10.3390/app10072277,The Systematic Design Of Industrial Products Through Design Archetypes: An Application On Mechanical Transmissions,journal-article,2020,7,10,,Applied Sciences,journal,crossref:1968,
-doi:10.1590/1678-9865202032e180077,Construcción De Una Red De OntologÃas Sobre Eventos Meteorológicos A Partir De Periódicos Históricos,journal-article,2020,,32,,Transinformação,journal,crossref:530,
-doi:10.3390/su11236549,Social Parking: Applying The Citizens As Sensors Paradigm To Parking Guidance And Information,journal-article,2019,23,11,,Sustainability,journal,crossref:1968,
-doi:10.1007/978-3-030-39459-2_2,Optimized Term Extraction Method Based On Computing Merged Partial C-Values,book-chapter,2020,,,1,"Information And Communication Technologies In Education, Research, And Industrial Applications - Communications In Computer And Information Science",book,crossref:297,
-doi:10.1007/s11629-019-5576-7,Augmented Planning Support System Framework For Mountainous Urban Master Planning,journal-article,2020,4,17,,Journal Of Mountain Science,journal,crossref:297,
-doi:10.1007/978-3-030-45442-5_15,Machine-Actionable Data Management Plans: A Knowledge Retrieval Approach To Automate The Assessment Of Funders’ Requirements,book-chapter,2020,,,1,Lecture Notes In Computer Science - Advances In Information Retrieval,book,crossref:297,
-doi:10.1007/s10115-020-01498-5,Snowl Model: Social Networks Unification-Based Semantic Data Integration,journal-article,2020,11,62,,Knowledge And Information Systems,journal,crossref:297,
-doi:10.1007/s12652-020-02150-4,Ontological Concepts For Information Sharing In Cloud Robotics,journal-article,2020,,,,Journal Of Ambient Intelligence And Humanized Computing,journal,crossref:297,
-doi:10.1017/s0266462320000471,"Exploring The Identification, Validation, And Categorization Of The Cost And Benefits Of Criminal Justice In Mental Health: The Pecunia Project",journal-article,2020,4,36,,International Journal Of Technology Assessment In Health Care,journal,crossref:56,
-doi:10.1177/1420326x20952817,Simulated Physical Ageing: A Prioritized Persona-Based Model For Accessible Interiors In Senior Housing Environments,journal-article,2020,,,,Indoor And Built Environment,journal,crossref:179,
-doi:10.4018/978-1-7998-4240-8.ch004,Sentiment Analysis As A Restricted Nlp Problem,book-chapter,2021,,,0,,,,
-doi:10.1108/ajim-11-2019-0320,Participatory Design For Ontologies: A Case Study Of An Open Science Ontology For Qualitative Coding Schemas,journal-article,2020,4,72,,Aslib Journal Of Information Management,journal,crossref:140,
-doi:10.3390/ijgi9100588,A Built Heritage Information System Based On Point Cloud Data: His-Pc,journal-article,2020,10,9,,Isprs International Journal Of Geo-Information,journal,crossref:1968,
-doi:10.1002/eng2.12217,What Is Knowledge In Industry 4.0?,journal-article,2020,8,2,,Engineering Reports,journal,crossref:311,
-doi:10.1111/exsy.12629,A Semanticâ€Enabled And Contextâ€Aware Monitoring System For The Internet Of Medical Things,journal-article,2020,2,38,,Expert Systems,journal,crossref:311,
-doi:10.1007/978-3-030-62015-8_2,Croppesto: An Ontology Model For Identifying And Managing Plant Pests And Diseases,book-chapter,2020,,,1,Communications In Computer And Information Science - Technologies And Innovation,book,crossref:297,
-doi:10.3390/designs4040047,Sympérasmology: A Proposal For The Theory Of Synthetic System Knowledge,journal-article,2020,4,4,,Designs,journal,crossref:1968,
-doi:10.3390/en13153990,Constrained Generation Bids In Local Electricity Markets: A Semantic Approach,journal-article,2020,15,13,,Energies,journal,crossref:1968,
-doi:10.1007/978-3-030-63799-6_17,Semantic Technologies Towards Accountable Artificial Intelligence: A Poultry Chain Management Use Case,book-chapter,2020,,,1,Lecture Notes In Computer Science - Artificial Intelligence Xxxvii,book,crossref:297,
-doi:10.1007/978-3-030-64058-3_67,Artificial Intelligence For Lassa Fever Diagnosis System,book-chapter,2021,,,1,Advances In Intelligent Systems And Computing - 14Th International Conference On Theory And Application Of Fuzzy Systems And Soft Computing – Icafs-2020,book,crossref:297,
-doi:10.1007/978-3-030-65847-2_11,Mapping The Web Ontology Language To The Openapi Specification,book-chapter,2020,,,1,Lecture Notes In Computer Science - Advances In Conceptual Modeling,book,crossref:297,
-doi:10.15407/csc.2020.04.044,Ontology Application To Construct Inductive Modeling Tools With Intelligent Interface,journal-article,2020,4 (288),,,Control Systems And Computers,journal,crossref:6225,
-doi:10.1108/jmtm-04-2020-0137,Application Of Design Thinking To Product-Configuration Projects,journal-article,2020,1,32,,Journal Of Manufacturing Technology Management,journal,crossref:140,
-doi:10.1186/s12911-020-01291-y,Analysis Of Readability And Structural Accuracy In Snomed Ct,journal-article,2020,S10,20,,Bmc Medical Informatics And Decision Making,journal,crossref:297,
-doi:10.2196/20443,Ontological Organization And Bioinformatic Analysis Of Adverse Drug Reactions From Package Inserts: Development And Usability Study,journal-article,2020,7,22,,Journal Of Medical Internet Research,journal,crossref:1010,
-doi:10.1016/j.jvolgeores.2014.07.012,Knowledge Engineering In Volcanology: Practical Claims And General Approach,journal-article,2014,,286,,Journal Of Volcanology And Geothermal Research,journal,crossref:78,
-doi:10.1016/j.cirpj.2018.06.002,A Problem-Solving Ontology For Human-Centered Cyber Physical Production Systems,journal-article,2018,,22,,Cirp Journal Of Manufacturing Science And Technology,journal,crossref:78,
-doi:10.1016/j.ijinfomgt.2016.05.022,Towards Knowledge Modeling And Manipulation Technologies: A Survey,journal-article,2016,6,36,,International Journal Of Information Management,journal,crossref:78,
-doi:10.1016/j.cmpb.2014.01.020,Bioss: A System For Biomedical Ontology Selection,journal-article,2014,1,114,,Computer Methods And Programs In Biomedicine,journal,crossref:78,
-doi:10.1016/j.comcom.2019.02.002,The Mom Of Context-Aware Systems: A Survey,journal-article,2019,,137,,Computer Communications,journal,crossref:78,
-doi:10.1016/j.eswa.2014.03.022,Feature-Based Opinion Mining Through Ontologies,journal-article,2014,13,41,,Expert Systems With Applications,journal,crossref:78,
-doi:10.1016/j.eswa.2020.113843,Development Of A Consumer Financial Goals Ontology For Use With Fintech Applications For Improving Financial Capability,journal-article,2021,,165,,Expert Systems With Applications,journal,crossref:78,
-doi:10.1016/j.ecoinf.2017.06.003,Ontology-Based Support For Taxonomic Functions,journal-article,2017,,41,,Ecological Informatics,journal,crossref:78,
-doi:10.1016/j.datak.2014.07.006,Reducing The Gap Between Experts' Knowledge And Data: The Tom4D Methodology,journal-article,2014,,94,,Data & Knowledge Engineering,journal,crossref:78,
-doi:10.1016/j.cmpb.2013.12.023,Ontology Driven Decision Support For The Diagnosis Of Mild Cognitive Impairment,journal-article,2014,3,113,,Computer Methods And Programs In Biomedicine,journal,crossref:78,
-doi:10.1016/j.cosrev.2020.100339,Ontology Learning: Grand Tour And Challenges,journal-article,2021,,39,,Computer Science Review,journal,crossref:78,
-doi:10.1016/j.rser.2015.04.021,Ontology Of Ground Source Heat Pump,journal-article,2015,,49,,Renewable And Sustainable Energy Reviews,journal,crossref:78,
-doi:10.1016/j.scico.2018.01.003,An Ontology-Based Approach With Which To Assign Human Resources To Software Projects,journal-article,2018,,156,,Science Of Computer Programming,journal,crossref:78,
-doi:10.1016/j.rcim.2019.05.010,Core Domain Ontology For Joining Processes To Consolidate Welding Standards,journal-article,2019,,59,,Robotics And Computer-Integrated Manufacturing,journal,crossref:78,
-doi:10.1016/j.aei.2018.10.009,Modelling Residual Value Risk Through Ontology To Address Vulnerability Of Ppp Project System,journal-article,2018,,38,,Advanced Engineering Informatics,journal,crossref:78,
-doi:10.1016/j.future.2018.01.062,Experience Based Knowledge Representation For Internet Of Things And Cyber Physical Systems With Case Studies,journal-article,2019,,92,,Future Generation Computer Systems,journal,crossref:78,
-doi:10.1016/j.pmcj.2016.03.001,Towards A Social And Context-Aware Mobile Recommendation System For Tourism,journal-article,2017,,38,,Pervasive And Mobile Computing,journal,crossref:78,
-doi:10.1016/j.jmsy.2014.05.003,Development Of A Hybrid Manufacturing Cloud,journal-article,2014,4,33,,Journal Of Manufacturing Systems,journal,crossref:78,
-doi:10.1016/j.compind.2019.05.003,Ontology-Based Systems Engineering: A State-Of-The-Art Review,journal-article,2019,,111,,Computers In Industry,journal,crossref:78,
-doi:10.1016/j.knosys.2013.10.006,Ontology-Based Annotation And Retrieval Of Services In The Cloud,journal-article,2014,,56,,Knowledge-Based Systems,journal,crossref:78,
-doi:10.1016/j.compchemeng.2016.05.018,Semantically Enabled Process Synthesis And Optimisation,journal-article,2016,,93,,Computers & Chemical Engineering,journal,crossref:78,
-doi:10.1016/j.compmedimag.2014.09.004,Towards Semantic-Driven High-Content Image Analysis: An Operational Instantiation For Mitosis Detection In Digital Histopathology,journal-article,2015,,42,,Computerized Medical Imaging And Graphics,journal,crossref:78,
-doi:10.1016/j.jbusres.2019.05.016,Estimating Deception In Consumer Reviews Based On Extreme Terms: Comparison Analysis Of Open Vs. Closed Hotel Reservation Platforms,journal-article,2019,,102,,Journal Of Business Research,journal,crossref:78,
-doi:10.1016/j.autcon.2019.102956,Managing Interrelated Project Information In Aec Knowledge Graphs,journal-article,2019,,108,,Automation In Construction,journal,crossref:78,
-doi:10.1016/j.compind.2014.02.017,"Erp 2.0, What For And How?",journal-article,2014,6,65,,Computers In Industry,journal,crossref:78,
-doi:10.1016/j.measurement.2018.01.009,A Mathematical Evaluation For Measuring Correctness Of Domain Ontologies Using Concept Maps,journal-article,2018,,118,,Measurement,journal,crossref:78,
-doi:10.1016/j.cose.2018.07.013,Leveraging Ontologies And Machine-Learning Techniques For Malware Analysis Into Android Permissions Ecosystems,journal-article,2018,,78,,Computers & Security,journal,crossref:78,
-doi:10.1016/j.jbi.2019.103293,Making Work Visible For Electronic Phenotype Implementation: Lessons Learned From The Emerge Network,journal-article,2019,,99,,Journal Of Biomedical Informatics,journal,crossref:78,
-doi:10.1080/15230406.2019.1647797,Semantic Relatedness Algorithm For Keyword Sets Of Geographic Metadata,journal-article,2019,2,47,,Cartography And Geographic Information Science,journal,crossref:301,
-doi:10.3390/bdcc2030025,Exploiting Inter- And Intra-Base Crossing With Multi-Mappings: Application To Environmental Data,journal-article,2018,3,2,,Big Data And Cognitive Computing,journal,crossref:1968,
-doi:10.1080/17538947.2016.1266041,Multidimensional And Quantitative Interlinking Approach For Linked Geospatial Data,journal-article,2017,9,10,,International Journal Of Digital Earth,journal,crossref:301,
-doi:10.1016/j.earscirev.2018.07.006,Geospatial Sensor Web: A Cyber-Physical Infrastructure For Geoscience Research And Application,journal-article,2018,,185,,Earth-Science Reviews,journal,crossref:78,
-doi:10.1007/s00778-019-00564-x,Dataset Search: A Survey,journal-article,2019,1,29,,The Vldb Journal,journal,crossref:297,
-doi:10.1111/jace.16677,Dataâ€Driven Glass/Ceramic Science Research: Insights From The Glass And Ceramic And Data Science/Informatics Communities,journal-article,2019,11,102,,Journal Of The American Ceramic Society,journal,crossref:311,
-doi:10.1108/ijpsm-02-2018-0062,"Balancing Control, Usability And Visibility Of Linked Open Government Data To Create Public Value",journal-article,2019,5,32,,International Journal Of Public Sector Management,journal,crossref:140,
-doi:10.1007/978-3-030-30796-7_27,An Assessment Of Adoption And Quality Of Linked Data In European Open Government Data,book-chapter,2019,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2019,book,crossref:297,
-doi:10.1007/s00778-019-00591-8,Top-K Relevant Semantic Place Retrieval On Spatiotemporal Rdf Data,journal-article,2019,4,29,,The Vldb Journal,journal,crossref:297,
-doi:10.1093/ije/dyz051,"Availability, Access, Analysis And Dissemination Of Small-Area Data",journal-article,2020,Supplement_1,49,,International Journal Of Epidemiology,journal,crossref:286,
-doi:10.1007/978-3-030-62466-8_41,Google Dataset Search By The Numbers,book-chapter,2020,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2020,book,crossref:297,
-doi:10.1016/j.envsoft.2015.12.005,An Expandable Web-Based Platform For Visually Analyzing Basin-Scale Hydro-Climate Time Series Data,journal-article,2016,,78,,Environmental Modelling & Software,journal,crossref:78,
-doi:10.1155/2021/3591034,Operational Considerations Regarding On-Demand Air Mobility: A Literature Review And Research Challenges,journal-article,2021,,2021,,Journal Of Advanced Transportation,journal,crossref:98,
-doi:10.1016/j.datak.2018.10.002,An Ontology-Based Approach To Knowledge Representation For Computer-Aided Control System Design,journal-article,2018,,118,,Data & Knowledge Engineering,journal,crossref:78,
-doi:10.1007/978-981-33-4565-2_3,A Model Devops Framework For Saas In The Cloud,book-chapter,2021,,,1,"Advances And Applications In Computer Science, Electronics And Industrial Engineering - Advances In Intelligent Systems And Computing",book,crossref:297,
-doi:10.1038/s41597-021-00797-y,An Empirical Meta-Analysis Of The Life Sciences Linked Open Data On The Web,journal-article,2021,1,8,,Scientific Data,journal,crossref:297,
-doi:10.3390/su13116407,Knowledge System Supporting Its Deployment,journal-article,2021,11,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/electronics10091060,Collaborative Ontology Engineering Methodologies For The Development Of Decision Support Systems: Case Studies In The Healthcare Domain,journal-article,2021,9,10,,Electronics,journal,crossref:1968,
-doi:10.3390/info12100432,An Ontological Approach To Enhancing Information Sharing In Disaster Response,journal-article,2021,10,12,,Information,journal,crossref:1968,
-doi:10.1111/exsy.12851,Development Methodologies For Ontologyâ€Based Knowledge Management Systems: A Review,journal-article,2021,2,39,,Expert Systems,journal,crossref:311,
-doi:10.3390/data3040044,Crc806-Kb: A Semantic Mediawiki Based Collaborative Knowledge Base For An Interdisciplinary Research Project,journal-article,2018,4,3,,Data,journal,crossref:1968,
-doi:10.3390/sym11030309,Handling Semantic Complexity Of Big Data Using Machine Learning And Rdf Ontology Model,journal-article,2019,3,11,,Symmetry,journal,crossref:1968,
-doi:10.1007/s10462-019-09693-9,A Comprehensive Review Of Type-2 Fuzzy Ontology,journal-article,2019,2,53,,Artificial Intelligence Review,journal,crossref:297,
-doi:10.1080/23311916.2016.1193959,Poem: Practical Ontology Engineering Model For Semantic Web Ontologies,journal-article,2016,1,3,,Cogent Engineering,journal,crossref:301,
-doi:10.4018/978-1-4666-2494-8.ch016,Mining Sentiment Using Conversation Ontology,book-chapter,2013,,,0,,,,
-doi:10.1080/1206212x.2019.1574950,Development And Evaluation Of Knowledge Treasure For Emergency Situation Awareness,journal-article,2019,5,43,,International Journal Of Computers And Applications,journal,crossref:301,
-doi:10.4018/ijdibe.2019010104,An Ontology For Detailed Measurement Of Building Works Using Semantic Web Technology,journal-article,2019,1,8,,International Journal Of Digital Innovation In The Built Environment,journal,crossref:2432,
-doi:10.1017/s0021859619000820,Addressing The ‘Tower Of Babel’ Of Pesticide Regulations: An Ontology For Supporting Pest-Control Decisions,journal-article,2019,6,157,,The Journal Of Agricultural Science,journal,crossref:56,
-doi:10.1007/s10639-020-10226-z,Ontologies In Education – State Of The Art,journal-article,2020,6,25,,Education And Information Technologies,journal,crossref:297,
-doi:10.1093/jamia/ocaa061,"Development Of The Gender, Sex, And Sexual Orientation Ontology: Evaluation And Workflow",journal-article,2020,7,27,,Journal Of The American Medical Informatics Association,journal,crossref:286,
-doi:10.1016/j.ssci.2019.05.029,Extracting Safety Information From Multi-Lingual Accident Reports Using An Ontology-Based Approach,journal-article,2019,,118,,Safety Science,journal,crossref:78,
-doi:10.1016/j.jclepro.2015.08.088,An Ontology-Based Decision Support Tool For Optimizing Domestic Solar Hot Water System Selection,journal-article,2016,,112,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.is.2015.02.003,Incorporating Ontology-Based Semantics Into Conceptual Modelling,journal-article,2015,,52,,Information Systems,journal,crossref:78,
-doi:10.4018/978-1-5225-9687-5.ch002,Ontology-Based Open Tourism Data Integration Framework,book-chapter,2020,,,0,,,,
-doi:10.1007/s10796-016-9631-4,Compliance Management Ontology – A Shared Conceptualization For Research And Practice In Compliance Management,journal-article,2016,5,18,,Information Systems Frontiers,journal,crossref:297,
-doi:10.1007/978-3-030-30859-9_5,Semantic Interoperability In Iot: A Systematic Mapping,book-chapter,2019,,,1,"Lecture Notes In Computer Science - Internet Of Things, Smart Spaces, And Next Generation Networks And Systems",book,crossref:297,
-doi:10.29375/25392115.3227,Creation Of A Consulting Tool And Implementation Of An Ontology For A Master’S Degree Program In Computer Sciences,journal-article,2018,1,19,,Revista Colombiana De Computación,journal,crossref:11929,
-doi:10.1007/978-3-030-01762-0_12,Maintaining A Linked Data Cloud And Data Service For Second World War History,book-chapter,2018,,,1,"Digital Heritage. Progress In Cultural Heritage: Documentation, Preservation, And Protection - Lecture Notes In Computer Science",book,crossref:297,
-doi:10.4018/978-1-5225-7186-5.ch011,Towards Patient-Centric Healthcare,book-chapter,2019,,,0,,,,
-doi:10.1007/978-3-030-20485-3_11,Triggering Ontology Alignment Revalidation Based On The Degree Of Change Significance On The Ontology Concept Level,book-chapter,2019,,,1,Business Information Systems - Lecture Notes In Business Information Processing,book,crossref:297,
-doi:10.1080/00207543.2017.1421785,A Novel Approach For Analysing Evolutional Motivation Of Empirical Engineering Knowledge,journal-article,2018,8,56,,International Journal Of Production Research,journal,crossref:301,
-doi:10.1111/tgis.12602,"Categories Are In Flux, But Their Computational Representations Are Fixed: That'S A Problem",journal-article,2020,2,24,,Transactions In Gis,journal,crossref:311,
-doi:10.1007/978-3-030-50316-1_26,Ontology Evolution In The Context Of Model-Based Secure Software Engineering,book-chapter,2020,,,1,Research Challenges In Information Science - Lecture Notes In Business Information Processing,book,crossref:297,
-doi:10.1007/s12008-020-00712-6,"Knowledge Management For Modeled Heritage Objects, Requirement Specifications Towards A Tool For Heterogeneity Embracing",journal-article,2020,4,14,,International Journal On Interactive Design And Manufacturing (Ijidem),journal,crossref:297,
-doi:10.1016/j.jss.2018.06.039,Analytical Metadata Modeling For Next Generation Bi Systems,journal-article,2018,,144,,Journal Of Systems And Software,journal,crossref:78,
-doi:10.1016/j.jcss.2015.06.001,Dynamic Class Hierarchy Management For Multi-Version Ontology-Based Personalization,journal-article,2016,1,82,,Journal Of Computer And System Sciences,journal,crossref:78,
-doi:10.1007/s10209-021-00791-6,An Ontology-Based Framework For Improving Color Vision Deficiency Accessibility,journal-article,2021,,,,Universal Access In The Information Society,journal,crossref:297,
-doi:10.3390/electronics10141650,Improving Recommendations For Online Retail Markets Based On Ontology Evolution,journal-article,2021,14,10,,Electronics,journal,crossref:1968,
-doi:10.1016/j.compind.2021.103449,"Exploiting Knowledge Graphs In Industrial Products And Services: A Survey Of Key Aspects, Challenges, And Future Perspectives",journal-article,2021,,129,,Computers In Industry,journal,crossref:78,
-doi:10.1007/978-3-030-71187-0_107,A Survey On Versioning Approaches And Tools,book-chapter,2021,,,1,Advances In Intelligent Systems And Computing - Intelligent Systems Design And Applications,book,crossref:297,
-doi:10.1016/j.websem.2021.100658,Beware Of The Hierarchy — An Analysis Of Ontology Evolution And The Materialisation Impact For Biomedical Ontologies,journal-article,2021,,70,,Journal Of Web Semantics,journal,crossref:78,
-doi:10.1108/bpmj-05-2019-0183,Knowledge Management In Improving Business Process: An Interpretative Framework For Successful Implementation Of Ai–Crm–Km System In Organizations,journal-article,2020,6,26,,Business Process Management Journal,journal,crossref:140,
-doi:10.4018/ijegr.2019070102,Personal Data Sharing And Legal Issues Of Human Rights In The Era Of Artificial Intelligence,journal-article,2019,3,15,,International Journal Of Electronic Government Research,journal,crossref:2432,
-doi:10.1007/978-3-030-33246-4_14,Using Maps For Interlinking Geospatial Linked Data,book-chapter,2019,,,1,Lecture Notes In Computer Science - On The Move To Meaningful Internet Systems: Otm 2019 Conferences,book,crossref:297,
-doi:10.3989/redc.2019.4.1605,Revisión Del Cumplimiento De Los Datos Abiertos Por Los Ayuntamientos Españoles En La Iniciativa Aporta,journal-article,2019,4,42,,Revista Española De Documentación CientÃfica,journal,crossref:2373,
-doi:10.1145/3190576,Experience,journal-article,2017,4,9,,Journal Of Data And Information Quality,journal,crossref:320,
-doi:10.1007/s42421-020-00023-y,A Rubric-Driven Evaluation Of Open Data Portals And Their Data In Transportation,journal-article,2020,2,2,,Journal Of Big Data Analytics In Transportation,journal,crossref:297,
-doi:10.1016/j.ijinfomgt.2019.05.008,The Dual Effects Of The Internet Of Things (Iot): A Systematic Review Of The Benefits And Risks Of Iot Adoption By Organizations,journal-article,2020,,51,,International Journal Of Information Management,journal,crossref:78,
-doi:10.1016/j.cities.2019.03.009,Investigating The Barriers Faced By Stakeholders In Open Data Development: A Study On Hong Kong As A “Smart Cityâ€,journal-article,2019,,92,,Cities,journal,crossref:78,
-doi:10.1016/j.bdr.2016.10.001,Producing Linked Data For Smart Cities: The Case Of Catania,journal-article,2017,,7,,Big Data Research,journal,crossref:78,
-doi:10.1016/j.scitotenv.2019.03.440,Towards More Effective Online Environmental Information Provision Through Tailored Natural Language Generation: Profiles Of Scottish River User Groups And An Evaluative Online Experiment,journal-article,2019,,673,,Science Of The Total Environment,journal,crossref:78,
-doi:10.1016/j.giq.2018.10.006,A Prioritization-Based Analysis Of Local Open Government Data Portals: A Case Study Of Chinese Province-Level Governments,journal-article,2018,4,35,,Government Information Quarterly,journal,crossref:78,
-doi:10.1016/j.jbi.2020.103504,A Knowledge-Based System To Find Over-The-Counter Medicines For Self-Medication,journal-article,2020,,108,,Journal Of Biomedical Informatics,journal,crossref:78,
-doi:10.1016/j.giq.2018.11.004,Big And Open Linked Data Analytics Ecosystem: Theoretical Background And Essential Elements,journal-article,2019,1,36,,Government Information Quarterly,journal,crossref:78,
-doi:10.1016/j.eswa.2019.113135,Iota: Interlinking Of Heterogeneous Multilingual Open Fiscal Data,journal-article,2020,,147,,Expert Systems With Applications,journal,crossref:78,
-doi:10.1016/j.jlamp.2014.12.005,Minimal Type Inference For Linked Data Consumers,journal-article,2015,4,84,,Journal Of Logical And Algebraic Methods In Programming,journal,crossref:78,
-doi:10.1177/00208523211009955,Understanding The Evolution Of Open Government Data Research: Towards Open Data Sustainability And Smartness,journal-article,2021,,,,International Review Of Administrative Sciences,journal,crossref:179,
-doi:10.1016/j.patter.2020.100136,Dataset Reuse: Toward Translating Principles To Practice,journal-article,2020,8,1,,Patterns,journal,crossref:78,
-doi:10.1007/s10994-021-06118-z,Few-Shot Learning For Spatial Regression Via Neural Embedding-Based Gaussian Processes,journal-article,2021,,,,Machine Learning,journal,crossref:297,
-doi:10.1002/poi3.176,"Big Data For Policymaking: Great Expectations, But With Limited Progress?",journal-article,2018,3,10,,Policy & Internet,journal,crossref:311,
-doi:10.1080/15228835.2017.1416515,Hiding In Plain Sight: Insights About Health-Care Trends Gained Through Open Health Data,journal-article,2018,1,36,,Journal Of Technology In Human Services,journal,crossref:301,
-doi:10.1007/s11423-019-09706-y,The Use Of Open Data As A Material For Learning,journal-article,2019,1,68,,Educational Technology Research And Development,journal,crossref:297,
-doi:10.1186/s40965-018-0051-x,"Hypermap Registry: An Open Source, Standards-Based Geospatial Registry And Search Platform",journal-article,2018,1,3,,"Open Geospatial Data, Software And Standards",journal,crossref:297,
-doi:10.1002/cpe.4186,Analytics For Citizens: A Linked Open Data Model For Statistical Data Exploration,journal-article,2017,8,33,,Concurrency And Computation: Practice And Experience,journal,crossref:311,
-doi:10.1007/s41060-016-0025-y,Crowdsourcing Chart Digitizer: Task Design And Quality Control For Making Legacy Open Data Machine-Readable,journal-article,2016,1-2,2,,International Journal Of Data Science And Analytics,journal,crossref:297,
-doi:10.1080/02681102.2017.1412289,Open Data And E-Government – Related Or Competing Ecosystems: A Paradox Of Open Government And Promise Of Civic Engagement In Estonia,journal-article,2017,3,25,,Information Technology For Development,journal,crossref:301,
-doi:10.1108/dta-10-2017-0078,Performance Assessment And Major Trends In Open Government Data Research Based On Web Of Science Data,journal-article,2019,3,53,,Data Technologies And Applications,journal,crossref:140,
-doi:10.31921/doxacom.n27a14,"El Perfil Del Periodista De Datos: Formación, Fuentes Y Herramientas",journal-article,2018,27,,,Doxa Comunicación. Revista Interdisciplinar De Estudios De Comunicación Y Ciencias Sociales,journal,crossref:17207,
-doi:10.1049/iet-sen.2016.0325,Coeus 2.0: Automated Platform To Integrate And Publish Biomedical Data As Nanopublications,journal-article,2018,2,12,,Iet Software,journal,crossref:265,
-doi:10.1155/2017/8327980,Linked Registries: Connecting Rare Diseases Patient Registries Through A Semantic Web Layer,journal-article,2017,,2017,,Biomed Research International,journal,crossref:98,
-doi:10.1007/s10916-017-0705-8,Scaleus: Semantic Web Services Integration For Biomedical Applications,journal-article,2017,4,41,,Journal Of Medical Systems,journal,crossref:297,
-doi:10.1093/database/bax088,A Semantic-Based Workflow For Biomedical Literature Annotation,journal-article,2017,,2017,,Database,journal,crossref:286,
-doi:10.1016/j.yjbinx.2020.100074,Interoperability Of Population-Based Patient Registries,journal-article,2020,,112,,Journal Of Biomedical Informatics,journal,crossref:78,
-doi:10.1016/j.future.2015.09.008,Scalable Semantic Aware Context Storage,journal-article,2016,,56,,Future Generation Computer Systems,journal,crossref:78,
-doi:10.3390/app11167233,An Ontology To Model The International Rules For Multiple Primary Malignant Tumours In Cancer Registration,journal-article,2021,16,11,,Applied Sciences,journal,crossref:1968,
-doi:10.1007/978-3-030-88361-4_12,Computing Cq Lower-Bounds Over Owl 2 Through Approximation To Rsa,book-chapter,2021,,,1,The Semantic Web – Iswc 2021 - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.21105/joss.03374,Jphyloref: A Tool For Testing And Resolving Phyloreferences,journal-article,2021,64,6,,Journal Of Open Source Software,journal,crossref:8722,
-doi:10.1021/acssynbio.8b00532,Sbol-Owl: An Ontological Approach For Formal And Semantic Representation Of Synthetic Biology Information,journal-article,2019,7,8,,Acs Synthetic Biology,journal,crossref:316,
-doi:10.1186/s13326-021-00246-0,Toward A Systematic Conflict Resolution Framework For Ontologies,journal-article,2021,1,12,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1007/s10845-021-01855-3,An Ontology Model For Maintenance Strategy Selection And Assessment,journal-article,2021,,,,Journal Of Intelligent Manufacturing,journal,crossref:297,
-doi:10.1016/j.softx.2021.100952,Owloop: A Modular Api To Describe Owl Axioms In Oop Objects Hierarchies,journal-article,2022,,17,,Softwarex,journal,crossref:78,
-doi:10.3390/app112110450,An Ontology-Based Expert System For Rice Disease Identification And Control Recommendation,journal-article,2021,21,11,,Applied Sciences,journal,crossref:1968,
-doi:10.1017/s1471068421000466,Efficient Tbox Reasoning With Value Restrictions Using The Wer Reasoner,journal-article,2021,,,,Theory And Practice Of Logic Programming,journal,crossref:56,
-doi:10.7717/peerj-cs.777,An Ontology-Based Approach To The Analysis Of The Acid-Base State Of Patients At Operative Measures,journal-article,2021,,7,,Peerj Computer Science,journal,crossref:4443,
-doi:10.1016/j.websem.2021.100694,A Multiplatform Energy-Aware Owl Reasoner Benchmarking Framework,journal-article,2022,,72,,Journal Of Web Semantics,journal,crossref:78,
-doi:10.3390/jsan10040066,Knowledge-Based Approach For The Perception Enhancement Of A Vehicle,journal-article,2021,4,10,,Journal Of Sensor And Actuator Networks,journal,crossref:1968,
-doi:10.3390/app10186328,Ontology Fixing By Using Software Engineering Technology,journal-article,2020,18,10,,Applied Sciences,journal,crossref:1968,
-doi:10.1007/978-3-030-61380-8_3,Agentdevlaw: A Middleware Architecture For Integrating Legal Ontologies And Multi-Agent Systems,book-chapter,2020,,,1,Intelligent Systems - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1186/s13326-016-0091-z,Supporting The Analysis Of Ontology Evolution Processes Through The Combination Of Static And Dynamic Scaling Functions In Oquare,journal-article,2016,1,7,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1186/s13326-017-0133-1,An Ontology-Driven Tool For Structured Data Acquisition Using Web Forms,journal-article,2017,1,8,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1186/s12859-017-1999-8,Inferring Ontology Graph Structures Using Owl Reasoning,journal-article,2018,1,19,,Bmc Bioinformatics,journal,crossref:297,
-doi:10.1093/bib/bby015,Where To Search Top-K Biomedical Ontologies?,journal-article,2018,4,20,,Briefings In Bioinformatics,journal,crossref:286,
-doi:10.1186/s12911-017-0568-4,"An Ontology-Aware Integration Of Clinical Models, Terminologies And Guidelines: An Exploratory Study Of The Scale For The Assessment And Rating Of Ataxia (Sara)",journal-article,2017,1,17,,Bmc Medical Informatics And Decision Making,journal,crossref:297,
-doi:10.3390/ijgi8030107,Semantic Modelling Of Ship Behavior In Harbor Based On Ontology And Dynamic Bayesian Network,journal-article,2019,3,8,,Isprs International Journal Of Geo-Information,journal,crossref:1968,
-doi:10.1002/cpe.5743,Explicitly Semantic Representation Of Pattern And Combined Geometrical Specification,journal-article,2020,,,,Concurrency And Computation: Practice And Experience,journal,crossref:311,
-doi:10.1093/bioinformatics/bty933,Opa2Vec: Combining Formal And Informal Content Of Biomedical Ontologies To Improve Similarity-Based Prediction,journal-article,2018,12,35,,Bioinformatics,journal,crossref:286,
-doi:10.1108/jeim-06-2016-0116,Federated Semantic Search Using Terminological Thesauri For Learning Object Discovery,journal-article,2017,5,30,,Journal Of Enterprise Information Management,journal,crossref:140,
-doi:10.1007/978-3-030-00461-3_6,A Modular Inference System For Probabilistic Description Logics,book-chapter,2018,,,1,Lecture Notes In Computer Science - Scalable Uncertainty Management,book,crossref:297,
-doi:10.1186/s12911-020-01267-y,Conversational Ontology Operator: Patient-Centric Vaccine Dialogue Management Engine For Spoken Conversational Agents,journal-article,2020,S4,20,,Bmc Medical Informatics And Decision Making,journal,crossref:297,
-doi:10.1186/s12911-020-01336-2,Towards Semantic Interoperability: Finding And Repairing Hidden Contradictions In Biomedical Ontologies,journal-article,2020,S10,20,,Bmc Medical Informatics And Decision Making,journal,crossref:297,
-doi:10.1186/s13326-018-0191-z,Ontoserver: A Syndicated Terminology Server,journal-article,2018,1,9,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1186/s13326-020-00233-x,An Ontology-Based Approach For Developing A Harmonised Data-Validation Tool For European Cancer Registration,journal-article,2021,1,12,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1016/j.rcim.2018.04.002,Simpm – Upper-Level Ontology For Manufacturing Process Plan Network Generation,journal-article,2019,,55,,Robotics And Computer-Integrated Manufacturing,journal,crossref:78,
-doi:10.1016/j.ins.2016.05.022,Flexible Queries On Relational Databases Using Fuzzy Logic And Ontologies,journal-article,2016,,366,,Information Sciences,journal,crossref:78,
-doi:10.1016/j.jbi.2018.06.008,From Lexical Regularities To Axiomatic Patterns For The Quality Assurance Of Biomedical Terminologies And Ontologies,journal-article,2018,,84,,Journal Of Biomedical Informatics,journal,crossref:78,
-doi:10.1049/sfw2.12034,Vulcont: A Recommender System Based On Context History Ontology,journal-article,2021,1,16,,Iet Software,journal,crossref:265,
-doi:10.1007/s10579-021-09546-4,Lexo: An Open-Source System For Managing Ontolex-Lemon Resources,journal-article,2021,4,55,,Language Resources And Evaluation,journal,crossref:297,
-doi:10.1007/978-3-030-75775-5_15,Read: Ad-Based Modular Ontology Classification,book-chapter,2021,,,1,Logics In Artificial Intelligence - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.4018/978-1-7998-6992-4.ch019,Ontology-Based Travel Recommender System,book-chapter,2021,,,0,,,,
-doi:10.1007/s00165-021-00549-0,Enhancing Probabilistic Model Checking With Ontologies,journal-article,2021,6,33,,Formal Aspects Of Computing,journal,crossref:320,
-doi:10.1007/978-3-030-77817-0_19,Patient-Provider Communication Training Models For Interactive Speech Devices,book-chapter,2021,,,1,"Digital Human Modeling And Applications In Health, Safety, Ergonomics And Risk Management. Human Body, Motion And Behavior - Lecture Notes In Computer Science",book,crossref:297,
-doi:10.1007/s13740-021-00133-y,Sparql Query Generator (Sqg),journal-article,2021,3-4,10,,Journal On Data Semantics,journal,crossref:297,
-doi:10.1155/2018/5083247,"Integrated Modeling, Simulation, And Visualization For Nanomaterials",journal-article,2018,,2018,,Complexity,journal,crossref:98,
-doi:10.1007/s10817-017-9406-8,The Owl Reasoner Evaluation (Ore) 2015 Competition Report,journal-article,2017,4,59,,Journal Of Automated Reasoning,journal,crossref:297,
-doi:10.1186/s40965-018-0053-8,Spatial And Temporal Resolution Of Geographic Information: An Observation-Based Theory,journal-article,2018,1,3,,"Open Geospatial Data, Software And Standards",journal,crossref:297,
-doi:10.1007/978-3-319-99906-7_15,Clinical Decision Support Based On Owl Queries In A Knowledge-As-A-Service Architecture,book-chapter,2018,,,1,Rules And Reasoning - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/s00354-019-00072-0,A Semantic-Based Framework For Rice Plant Disease Management,journal-article,2019,4,37,,New Generation Computing,journal,crossref:297,
-doi:10.1111/exsy.12519,A Survey On Semanticized And Personalized Health Recommender Systems,journal-article,2019,4,37,,Expert Systems,journal,crossref:311,
-doi:10.1038/s41598-019-40368-1,Quantitative Evaluation Of Ontology Design Patterns For Combining Pathology And Anatomy Ontologies,journal-article,2019,1,9,,Scientific Reports,journal,crossref:297,
-doi:10.1002/er.5262,Formal Development Of An Operation Monitoring And Control System For Nuclear Reactors Using Eventâ€B Method,journal-article,2020,10,44,,International Journal Of Energy Research,journal,crossref:311,
-doi:10.4018/ijsita.2019040104,Large-Scale Ontology Alignment- An Extraction Based Method To Support Information System Interoperability,journal-article,2019,2,10,,International Journal Of Strategic Information Technology And Applications,journal,crossref:2432,
-doi:10.1007/978-3-030-34968-4_11,Ontology-Mediated Probabilistic Model Checking,book-chapter,2019,,,1,Lecture Notes In Computer Science - Integrated Formal Methods,book,crossref:297,
-doi:10.1017/s026988892000017x,Sanom-Hobbit: Simulated Annealing-Based Ontology Matching On Hobbit Platform,journal-article,2020,,35,,The Knowledge Engineering Review,journal,crossref:56,
-doi:10.3390/app9214547,Ontology-Based System For Dynamic Risk Management In Administrative Domains,journal-article,2019,21,9,,Applied Sciences,journal,crossref:1968,
-doi:10.1080/00207543.2019.1680895,Enriching Analytics Models With Domain Knowledge For Smart Manufacturing Data Analysis,journal-article,2019,20,58,,International Journal Of Production Research,journal,crossref:301,
-doi:10.4018/ijkss.2020040101,Discovering Cross-Disciplinary Concepts In Multidisciplinary Context Through Collaborative Framework,journal-article,2020,2,11,,International Journal Of Knowledge And Systems Science,journal,crossref:2432,
-doi:10.1002/cpe.5744,Enhanced Semantic Representation Of Coaxiality With Double Material Requirements,journal-article,2020,,,,Concurrency And Computation: Practice And Experience,journal,crossref:311,
-doi:10.1093/bib/bbz009,Evaluation Of Ontology Structural Metrics Based On Public Repository Data,journal-article,2019,2,21,,Briefings In Bioinformatics,journal,crossref:286,
-doi:10.4018/ijhcitp.2020070105,Integrating Cobit 5 Pam And Tipa For Itil Using An Ontology Matching System,journal-article,2020,3,11,,International Journal Of Human Capital And Information Technology Professionals,journal,crossref:2432,
-doi:10.1007/s13218-020-00655-w,Lethe: Forgetting And Uniform Interpolation For Expressive Description Logics,journal-article,2020,3,34,,Ki - Künstliche Intelligenz,journal,crossref:297,
-doi:10.1186/s13326-016-0055-3,Webulous And The Webulous Google Add-On - A Web Service And Application For Ontology Building From Templates,journal-article,2016,1,7,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1186/s13326-017-0170-9,Tackling The Challenges Of Matching Biomedical Ontologies,journal-article,2018,1,9,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1017/s1471068420000101,Restricted Chase Termination For Existential Rules: A Hierarchical Approach And Experimentation,journal-article,2020,1,21,,Theory And Practice Of Logic Programming,journal,crossref:56,
-doi:10.1186/s13673-019-0184-7,Comprehensive Structured Knowledge Base System Construction With Natural Language Presentation,journal-article,2019,1,9,,Human-Centric Computing And Information Sciences,journal,crossref:297,
-doi:10.3390/s16101596,A Real-Time Web Of Things Framework With Customizable Openness Considering Legacy Devices,journal-article,2016,10,16,,Sensors,journal,crossref:1968,
-doi:10.1007/s00799-018-0256-8,Assessing Plausibility Of Scientific Claims To Support High-Quality Content In Digital Collections,journal-article,2018,1,21,,International Journal On Digital Libraries,journal,crossref:297,
-doi:10.1007/s11276-019-02029-z,Lindasearch: A Faceted Search System For Linked Open Datasets,journal-article,2019,8,26,,Wireless Networks,journal,crossref:297,
-doi:10.1038/sdata.2016.18,The Fair Guiding Principles For Scientific Data Management And Stewardship,journal-article,2016,1,3,,Scientific Data,journal,crossref:297,
-doi:10.1007/978-3-030-30796-7_28,Easy Web Api Development With Sparql Transformer,book-chapter,2019,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2019,book,crossref:297,
-doi:10.1108/dta-09-2019-0164,Computational Implementation And Formalism Of Fair Data Stewardship Principles,journal-article,2020,2,54,,Data Technologies And Applications,journal,crossref:140,
-doi:10.1007/978-3-030-46970-2_22,Towards A More Reproducible Biomedical Research Environment: Endorsement And Adoption Of The Fair Principles,book-chapter,2020,,,1,Biomedical Engineering Systems And Technologies - Communications In Computer And Information Science,book,crossref:297,
-doi:10.1093/bioinformatics/btx566,An Automated Tool For Obtaining Qsar-Ready Series Of Compounds Using Semantic Web Technologies,journal-article,2017,1,34,,Bioinformatics,journal,crossref:286,
-doi:10.1145/3345551,Large-Scale Semantic Integration Of Linked Data,journal-article,2020,5,52,,Acm Computing Surveys,journal,crossref:320,
-doi:10.1016/j.websem.2014.11.003,On The Formulation Of Performant Sparql Queries,journal-article,2015,,31,,Journal Of Web Semantics,journal,crossref:78,
-doi:10.1016/j.compag.2017.10.012,Agroportal: A Vocabulary And Ontology Repository For Agronomy,journal-article,2018,,144,,Computers And Electronics In Agriculture,journal,crossref:78,
-doi:10.1016/j.jbi.2019.103154,Patient Data Discovery Platforms As Enablers Of Biomedical And Translational Research: A Systematic Review,journal-article,2019,,93,,Journal Of Biomedical Informatics,journal,crossref:78,
-doi:10.1007/s41061-021-00349-3,Web-Based Quantitative Structure–Activity Relationship Resources Facilitate Effective Drug Discovery,journal-article,2021,6,379,,Topics In Current Chemistry,journal,crossref:297,
-doi:10.1002/humu.23641,Clinvar At Five Years: Delivering On The Promise,journal-article,2018,11,39,,Human Mutation,journal,crossref:311,
-doi:10.1002/humu.23655,Matchbox: An Open-Source Tool For Patient Matching Via The Matchmaker Exchange,journal-article,2018,12,39,,Human Mutation,journal,crossref:311,
-doi:10.1007/s10592-018-1072-9,The International Mouse Phenotyping Consortium (Impc): A Functional Catalogue Of The Mammalian Genome That Informs Conservation,journal-article,2018,4,19,,Conservation Genetics,journal,crossref:297,
-doi:10.1038/nprot.2015.124,Next-Generation Diagnostics And Disease-Gene Discovery With The Exomiser,journal-article,2015,12,10,,Nature Protocols,journal,crossref:297,
-doi:10.1038/s41588-018-0096-x,Plain-Language Medical Vocabulary For Precision Diagnosis,journal-article,2018,4,50,,Nature Genetics,journal,crossref:297,
-doi:10.1038/s41746-019-0110-4,Semantic Integration Of Clinical Laboratory Tests From Electronic Health Records For Deep Phenotyping And Biomarker Discovery,journal-article,2019,1,2,,Npj Digital Medicine,journal,crossref:297,
-doi:10.1093/nar/gkx1132,The Reactome Pathway Knowledgebase,journal-article,2017,D1,46,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gkx998,Wormbase 2017: Molting Into A New Stage,journal-article,2017,D1,46,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gky1003,Flybase 2.0: The Next Generation,journal-article,2018,D1,47,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gky1056,Mouse Genome Database (Mgd) 2019,journal-article,2018,D1,47,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gky1079,The Biogrid Interaction Database: 2019 Update,journal-article,2018,D1,47,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gky1105,Expansion Of The Human Phenotype Ontology (Hpo) Knowledge Base And Resources,journal-article,2018,D1,47,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gky1120,"The Nhgri-Ebi Gwas Catalog Of Published Genome-Wide Association Studies, Targeted Arrays And Summary Statistics 2019",journal-article,2018,D1,47,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gky1131,"String V11: Protein–Protein Association Networks With Increased Coverage, Supporting Functional Discovery In Genome-Wide Experimental Datasets",journal-article,2018,D1,47,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1186/s13326-017-0126-0,Dead Simple Owl Design Patterns,journal-article,2017,1,8,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1371/journal.pone.0213090,An Analysis And Metric Of Reusable Data Licensing Practices For Biomedical Resources,journal-article,2019,3,14,,Plos One,journal,crossref:340,
-doi:10.1093/jamiaopen/ooaa030,The Case For Open Science: Rare Diseases,journal-article,2020,3,3,,Jamia Open,journal,crossref:286,
-doi:10.1038/s41581-020-00335-w,Modelling Kidney Disease Using Ontology: Insights From The Kidney Precision Medicine Project,journal-article,2020,11,16,,Nature Reviews Nephrology,journal,crossref:297,
-doi:10.1093/nar/gkaa753,"Iddb: A Comprehensive Resource Featuring Genes, Variants And Characteristics Associated With Infertility",journal-article,2020,D1,49,,Nucleic Acids Research,journal,crossref:286,
-doi:10.12688/f1000research.25144.1,Dictionary Of Disease Ontologies (Dodo): A Graph Database To Facilitate Access And Interaction With Disease And Phenotype Ontologies,journal-article,2020,,9,,F1000Research,journal,crossref:2560,
-doi:10.1371/journal.pcbi.1008376,Transforming The Study Of Organisms: Phenomic Data Models And Knowledge Bases,journal-article,2020,11,16,,Plos Computational Biology,journal,crossref:340,
-doi:10.1371/journal.pcbi.1008453,Deeppheno: Predicting Single Gene Loss-Of-Function Phenotypes Using An Ontology-Aware Hierarchical Classifier,journal-article,2020,11,16,,Plos Computational Biology,journal,crossref:340,
-doi:10.1093/bioinformatics/btaa879,"Predicting Candidate Genes From Phenotypes, Functions And Anatomical Site Of Expression",journal-article,2020,6,37,,Bioinformatics,journal,crossref:286,
-doi:10.1093/nar/gkaa1043,The Human Phenotype Ontology In 2021,journal-article,2020,D1,49,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/nar/gkaa980,Genenames.Org: The Hgnc And Vgnc Resources In 2021,journal-article,2020,D1,49,,Nucleic Acids Research,journal,crossref:286,
-doi:10.1093/g3journal/jkaa035,Insights From The Reanalysis Of High-Throughput Chemical Genomics Data For Escherichia Coli K-12,journal-article,2020,1,11,,G3 Genes|Genomes|Genetics,journal,crossref:286,
-doi:10.1093/bioinformatics/btab019,Phenotagger: A Hybrid Method For Phenotype Concept Recognition Using Human Phenotype Ontology,journal-article,2021,13,37,,Bioinformatics,journal,crossref:286,
-doi:10.1186/s13023-021-01797-2,"Towards Enhanced Understanding Of Idiopathic Ketotic Hypoglycemia: A Literature Review And Introduction Of The Patient Organization, Ketotic Hypoglycemia International",journal-article,2021,1,16,,Orphanet Journal Of Rare Diseases,journal,crossref:297,
-doi:10.1242/dmm.046573,Disruption Of A Hedgehog-Foxf1-Rspo2 Signaling Axis Leads To Tracheomalacia And A Loss Of Sox9+ Tracheal Chondrocytes,journal-article,2021,2,14,,Disease Models & Mechanisms,journal,crossref:237,
-doi:10.1371/journal.pone.0231916,Knowledge Beacons: Web Services For Data Harvesting Of Distributed Biomedical Knowledge,journal-article,2021,3,16,,Plos One,journal,crossref:340,
-doi:10.1016/j.crtox.2021.03.001,"Ctd Anatomy: Analyzing Chemical-Induced Phenotypes And Exposures From An Anatomical Perspective, With Implications For Environmental Health Studies",journal-article,2021,,2,,Current Research In Toxicology,journal,crossref:78,
-doi:10.1038/s41398-021-01528-y,Conserved Immunomodulatory Transcriptional Networks Underlie Antipsychotic-Induced Weight Gain,journal-article,2021,1,11,,Translational Psychiatry,journal,crossref:297,
-doi:10.1016/j.ydbio.2021.05.015,Developmental Basis Of Trachea-Esophageal Birth Defects,journal-article,2021,,477,,Developmental Biology,journal,crossref:78,
-doi:10.1002/1873-3468.14067,"Sharing Biological Data: Why, When, And How",journal-article,2021,7,595,,Febs Letters,journal,crossref:311,
-doi:10.1093/database/baab003,The Landscape Of Nutri-Informatics: A Review Of Current Resources And Challenges For Integrative Nutrition Research,journal-article,2021,,2021,,Database,journal,crossref:286,
-doi:10.1002/ajmg.a.62239,Nextâ€Generation Sequencing And The Evolution Of Data Sharing,journal-article,2021,9,185,,American Journal Of Medical Genetics Part A,journal,crossref:311,
-doi:10.1186/s13326-021-00241-5,Improved Characterisation Of Clinical Text Through Ontology-Based Vocabulary Expansion,journal-article,2021,1,12,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1093/bioinformatics/btaa1091,The Ippi-Db Initiative: A Community-Centered Database Of Protein–Protein Interaction Modulators,journal-article,2021,1,37,,Bioinformatics,journal,crossref:286,
-doi:10.1242/dev.196097,Planarian Anatomy Ontology: A Resource To Connect Data Within And Across Experimental Platforms,journal-article,2021,15,148,,Development,journal,crossref:237,
-doi:10.3390/cancers13164207,Computational Approaches For Cancer-Fighting: From Gene Expression To Functional Foods,journal-article,2021,16,13,,Cancers,journal,crossref:1968,
-doi:10.1242/dev.200193,Model Organism Databases Are In Jeopardy,journal-article,2021,19,148,,Development,journal,crossref:237,
-doi:10.1371/journal.pcbi.1009283,Diffusion Enables Integration Of Heterogeneous Data And User-Driven Learning In A Desktop Knowledge-Base,journal-article,2021,8,17,,Plos Computational Biology,journal,crossref:340,
-doi:10.3390/biom11081245,Biomolecule And Bioentity Interaction Databases In Systems Biology: A Comprehensive Review,journal-article,2021,8,11,,Biomolecules,journal,crossref:1968,
-doi:10.1186/s13326-021-00249-x,Linking Common Human Diseases To Their Phenotypes; Development Of A Resource For Human Phenomics,journal-article,2021,1,12,,Journal Of Biomedical Semantics,journal,crossref:297,
-doi:10.1093/bib/bbab363,Genome Sequencing Data Analysis For Rare Disease Gene Discovery,journal-article,2021,1,23,,Briefings In Bioinformatics,journal,crossref:286,
-doi:10.3390/ijerph18178985,Catalyzing Knowledge-Driven Discovery In Environmental Health Sciences Through A Community-Driven Harmonized Language,journal-article,2021,17,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.1038/s41467-021-26674-1,Network Analysis Reveals Rare Disease Signatures Across Multiple Levels Of Biological Organization,journal-article,2021,1,12,,Nature Communications,journal,crossref:297,
-doi:10.1111/2041-210x.13753,Ontofast: An R Package For Interactive And Semiâ€Automatic Annotation Of Characters With Biological Ontologies,journal-article,2021,2,13,,Methods In Ecology And Evolution,journal,crossref:311,
-doi:10.1016/j.xgen.2021.100029,Ga4Gh: International Policies And Standards For Data Sharing Across Genomic Research And Healthcare,journal-article,2021,2,1,,Cell Genomics,journal,crossref:78,
-doi:10.1016/j.ebiom.2021.103722,Characterizing Long Covid: Deep Phenotype Of A Complex Condition,journal-article,2021,,74,,Ebiomedicine,journal,crossref:78,
-doi:10.1007/s00335-021-09921-0,Mouse Genome Informatics (Mgi): Latest News From Mgd And Gxd,journal-article,2021,,,,Mammalian Genome,journal,crossref:297,
-doi:10.1016/j.xgen.2021.100028,The Data Use Ontology To Streamline Responsible Access To Human Biomedical Datasets,journal-article,2021,2,1,,Cell Genomics,journal,crossref:78,
-doi:10.1016/j.xgen.2021.100031,Empirical Validation Of An Automated Approach To Data Use Oversight,journal-article,2021,2,1,,Cell Genomics,journal,crossref:78,
-doi:10.5028/jatm.v12.1098,Aeb Online Calculator For Assessing Technology Maturity: Imatec,journal-article,2020,12,,,Journal Of Aerospace Technology And Management - Volume 12,journal,crossref:530,
-doi:10.1007/978-3-030-03056-8_25,Building An Ecosystem For The Tyrolean Tourism Knowledge Graph,book-chapter,2018,,,1,Current Trends In Web Engineering - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/s11280-018-0611-0,Gstar: An Efficient Framework For Answering Top-K Star Queries On Billion-Node Knowledge Graphs,journal-article,2018,4,22,,World Wide Web,journal,crossref:297,
-doi:10.3897/bdj.6.e27539,Liberating Links Between Datasets Using Lightweight Data Publishing: An Example Using Plant Names And The Taxonomic Literature,journal-article,2018,,6,,Biodiversity Data Journal,journal,crossref:2258,
-doi:10.3897/biss.3.34742,Wikidata And The Biodiversity Knowledge Graph,journal-article,2019,,3,,Biodiversity Information Science And Standards,journal,crossref:2258,
-doi:10.2196/13871,Racial Disparities In Mortality Among American Film Celebrities: A Wikipedia-Based Retrospective Cohort Study,journal-article,2019,4,8,,Interactive Journal Of Medical Research,journal,crossref:1010,
-doi:10.3390/ijgi7070264,Structured Knowledge Base As Prior Knowledge To Improve Urban Data Analysis,journal-article,2018,7,7,,Isprs International Journal Of Geo-Information,journal,crossref:1968,
-doi:10.1111/tgis.12547,A Spatially Explicit Reinforcement Learning Model For Geographic Knowledge Graph Summarization,journal-article,2019,3,23,,Transactions In Gis,journal,crossref:311,
-doi:10.1007/s00354-019-00074-y,Interconnection Of Biological Knowledge Using Nikkajirdf And Interlinking Ontology For Biological Concepts,journal-article,2019,4,37,,New Generation Computing,journal,crossref:297,
-doi:10.1007/s41019-018-0082-4,Fact Checking In Knowledge Graphs With Ontological Subgraph Patterns,journal-article,2018,4,3,,Data Science And Engineering,journal,crossref:297,
-doi:10.1007/s41109-019-0133-4,Relation Prediction In Knowledge Graph By Multi-Label Deep Neural Network,journal-article,2019,1,4,,Applied Network Science,journal,crossref:297,
-doi:10.1108/dta-12-2018-0110,A Systematic Literature Review On Wikidata,journal-article,2019,3,53,,Data Technologies And Applications,journal,crossref:140,
-doi:10.1007/978-3-319-68288-4_25,Attributed Description Logics: Ontologies For Knowledge Graphs,book-chapter,2017,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2017,book,crossref:297,
-doi:10.1007/978-3-319-69471-9_41,Kgbiac: Knowledge Graph Based Intelligent Alert Correlation Framework,book-chapter,2017,,,1,Cyberspace Safety And Security - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-21462-3_2,Too Much Information: Can Ai Cope With Modern Knowledge Graphs?,book-chapter,2019,,,1,Formal Concept Analysis - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-21462-3_21,Discovering Implicational Knowledge In Wikidata,book-chapter,2019,,,1,Formal Concept Analysis - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-22102-7_21,Temporally Attributed Description Logics,book-chapter,2019,,,1,"Lecture Notes In Computer Science - Description Logic, Theory Combination, And All That",book,crossref:297,
-doi:10.1371/journal.pone.0191917,Reducing Vertices In Property Graphs,journal-article,2018,2,13,,Plos One,journal,crossref:340,
-doi:10.1007/978-3-030-30793-6_13,Uncovering The Semantics Of Wikipedia Categories,book-chapter,2019,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2019,book,crossref:297,
-doi:10.1007/978-3-030-36599-8_37,Enriching Wikidata With Cultural Heritage Data From The Courage Project,book-chapter,2019,,,1,Metadata And Semantic Research - Communications In Computer And Information Science,book,crossref:297,
-doi:10.1007/978-3-030-33220-4_23,Automatic Facet Generation And Selection Over Knowledge Graphs,book-chapter,2019,,,1,Lecture Notes In Computer Science - Semantic Systems. The Power Of Ai And Knowledge Graphs,book,crossref:297,
-doi:10.1007/s11192-020-03397-6,The Practice Of Self-Citations: A Longitudinal Study,journal-article,2020,1,123,,Scientometrics,journal,crossref:297,
-doi:10.1007/s10115-019-01415-5,Dbkwik: Extracting And Integrating Knowledge From Thousands Of Wikis,journal-article,2019,6,62,,Knowledge And Information Systems,journal,crossref:297,
-doi:10.1162/dint_a_00019,Knowledge Graph Construction And Applications For Web Search And Beyond,journal-article,2019,4,1,,Data Intelligence,journal,crossref:281,
-doi:10.1162/dint_a_00030,Fair Data Reuse – The Path Through Data Citation,journal-article,2020,1-2,2,,Data Intelligence,journal,crossref:281,
-doi:10.17645/pag.v8i2.2591,Integrating Manual And Automatic Annotation For The Creation Of Discourse Network Data Sets,journal-article,2020,2,8,,Politics And Governance,journal,crossref:6951,
-doi:10.1007/978-3-030-49461-2_31,Vquanda: Verbalization Question Answering Dataset,book-chapter,2020,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-49461-2_4,A Simple Method For Inducing Class Taxonomies In Knowledge Graphs,book-chapter,2020,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.3390/data5020046,Standartox: Standardizing Toxicity Data,journal-article,2020,2,5,,Data,journal,crossref:1968,
-doi:10.1145/3369875,What Are Links In Linked Open Data? A Characterization And Evaluation Of Links Between Knowledge Graphs On The Web,journal-article,2020,2,12,,Journal Of Data And Information Quality,journal,crossref:320,
-doi:10.1145/3371315,Mining Expressive Rules In Knowledge Graphs,journal-article,2020,2,12,,Journal Of Data And Information Quality,journal,crossref:320,
-doi:10.3390/info11050263,Modeling Popularity And Reliability Of Sources In Multilingual Wikipedia,journal-article,2020,5,11,,Information,journal,crossref:1968,
-doi:10.1145/3286488,Discovering Patterns For Fact Checking In Knowledge Graphs,journal-article,2019,3,11,,Journal Of Data And Information Quality,journal,crossref:320,
-doi:10.1007/978-3-030-44584-3_39,Orometric Methods In Bounded Metric Data,book-chapter,2020,,,1,Lecture Notes In Computer Science - Advances In Intelligent Data Analysis Xviii,book,crossref:297,
-doi:10.1007/978-3-030-45442-5_78,Graph-Based Entity-Oriented Search: A Unified Framework In Information Retrieval,book-chapter,2020,,,1,Lecture Notes In Computer Science - Advances In Information Retrieval,book,crossref:297,
-doi:10.1177/0165551520911590,An Ensemble Clustering Approach For Topic Discovery Using Implicit Text Segmentation,journal-article,2020,4,47,,Journal Of Information Science,journal,crossref:179,
-doi:10.3390/electronics9050750,"A Survey On Knowledge Graph Embedding: Approaches, Applications And Benchmarks",journal-article,2020,5,9,,Electronics,journal,crossref:1968,
-doi:10.1177/0165551520921342,A Survey On Automatically Constructed Universal Knowledge Bases,journal-article,2020,5,47,,Journal Of Information Science,journal,crossref:179,
-doi:10.1007/978-3-030-50146-4_31,Image-Based World-Perceiving Knowledge Graph (Wpkg) With Imprecision,book-chapter,2020,,,1,Information Processing And Management Of Uncertainty In Knowledge-Based Systems - Communications In Computer And Information Science,book,crossref:297,
-doi:10.1007/978-3-319-93417-4_10,Pagerank And Generic Entity Summarization For Rdf Knowledge Bases,book-chapter,2018,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-319-93417-4_17,A Dataset For Web-Scale Knowledge Base Population,book-chapter,2018,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-319-93417-4_19,Semantic Concept Discovery Over Event Databases,book-chapter,2018,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-319-93417-4_32,Transfer Learning For Item Recommendations And Knowledge Graph Completion In Item Related Domains Via A Co-Factorization Model,book-chapter,2018,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.3390/e20060439,Factoid Question Answering With Distant Supervision,journal-article,2018,6,20,,Entropy,journal,crossref:1968,
-doi:10.1007/s00778-016-0444-3,Scalekb: Scalable Learning And Inference Over Large Knowledge Bases,journal-article,2016,6,25,,The Vldb Journal,journal,crossref:297,
-doi:10.1007/s00778-019-00558-9,An Analytical Study Of Large Sparql Query Logs,journal-article,2019,2-3,29,,The Vldb Journal,journal,crossref:297,
-doi:10.1007/s00779-018-01189-7,Exploiting Semantics For Context-Aware Itinerary Recommendation,journal-article,2019,2,23,,Personal And Ubiquitous Computing,journal,crossref:297,
-doi:10.1007/s00799-019-00266-3,A Wikidata-Based Tool For Building And Visualising Narratives,journal-article,2019,4,20,,International Journal On Digital Libraries,journal,crossref:297,
-doi:10.3233/ds-190016,Enabling Text Search On Sparql Endpoints Through Oscar,journal-article,2019,1-2,2,,Data Science,journal,crossref:7437,
-doi:10.3233/sw-180310,Comparison And Evaluation Of Ontologies For Units Of Measurement,journal-article,2018,1,10,,Semantic Web,journal,crossref:7437,
-doi:10.1007/978-3-030-04284-4_26,"Inference Of Functions, Roles, And Applications Of Chemicals Using Linked Open Data And Ontologies",book-chapter,2018,,,1,Semantic Technology - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1177/0165551518793321,Exploiting Named Entity Recognition For Improving Syntactic-Based Web Service Discovery,journal-article,2018,3,45,,Journal Of Information Science,journal,crossref:179,
-doi:10.12688/f1000research.12168.1,"Systematically Linking Transmart, Galaxy And Ega For Reusing Human Translational Research Data",journal-article,2017,,6,,F1000Research,journal,crossref:2560,
-doi:10.12688/f1000research.14613.1,Cytargetlinker App Update: A Flexible Solution For Network Extension In Cytoscape,journal-article,2018,,7,,F1000Research,journal,crossref:2560,
-doi:10.12688/f1000research.14613.2,Cytargetlinker App Update: A Flexible Solution For Network Extension In Cytoscape,journal-article,2019,,7,,F1000Research,journal,crossref:2560,
-doi:10.1007/s10462-017-9556-4,Local And Global Feature Selection For Multilabel Classification With Binary Relevance,journal-article,2017,1,51,,Artificial Intelligence Review,journal,crossref:297,
-doi:10.1177/2053951717743530,Fairer Machine Learning In The Real World: Mitigating Discrimination Without Collecting Sensitive Data,journal-article,2017,2,4,,Big Data & Society,journal,crossref:179,
-doi:10.1007/s00607-019-00701-y,Interpretation And Automatic Integration Of Geospatial Data Into The Semantic Web,journal-article,2019,2,102,,Computing,journal,crossref:297,
-doi:10.1007/s11625-016-0412-2,Digital Sustainability: Basic Conditions For Sustainable Digital Artifacts And Their Ecosystems,journal-article,2016,2,12,,Sustainability Science,journal,crossref:297,
-doi:10.1007/s11257-018-9207-8,Inferring User Interests In Microblogging Social Networks: A Survey,journal-article,2018,3,28,,User Modeling And User-Adapted Interaction,journal,crossref:297,
-doi:10.1093/database/baz080,Semalytics: A Semantic Analytics Platform For The Exploration Of Distributed And Heterogeneous Cancer Data In Translational Research,journal-article,2019,,2019,,Database,journal,crossref:286,
-doi:10.1111/coin.12216,Swat: A System For Detecting Salient Wikipedia Entities In Texts,journal-article,2019,4,35,,Computational Intelligence,journal,crossref:311,
-doi:10.1007/978-3-030-59621-7_2,Malont: An Ontology For Malware Threat Intelligence,book-chapter,2020,,,1,Deployable Machine Learning For Security Defense - Communications In Computer And Information Science,book,crossref:297,
-doi:10.1007/978-3-030-59833-4_1,The New Dbpedia Release Cycle: Increasing Agility And Efficiency In Knowledge Extraction Workflows,book-chapter,2020,,,1,Semantic Systems. In The Era Of Knowledge Graphs - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1515/jib-2018-0023,Towards Fairer Biological Knowledge Networks Using A Hybrid Linked Data And Graph Database Approach,journal-article,2018,3,15,,Journal Of Integrative Bioinformatics,journal,crossref:374,
-doi:10.1007/s13218-020-00686-3,Ontologies And Data Management: A Brief Survey,journal-article,2020,3,34,,Ki - Künstliche Intelligenz,journal,crossref:297,
-doi:10.1007/978-3-030-54956-5_1,Requirements Analysis For An Open Research Knowledge Graph,book-chapter,2020,,,1,Digital Libraries For Open Knowledge - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1371/journal.pone.0236863,Microblog Topic Identification Using Linked Open Data,journal-article,2020,8,15,,Plos One,journal,crossref:340,
-doi:10.1145/3407194,Early Detection Of Social Media Hoaxes At Scale,journal-article,2020,4,14,,Acm Transactions On The Web,journal,crossref:320,
-doi:10.3390/app10144893,"Cognitive Aspects-Based Short Text Representation With Named Entity, Concept And Knowledge",journal-article,2020,14,10,,Applied Sciences,journal,crossref:1968,
-doi:10.1145/3309547,Temporal Relational Ranking For Stock Prediction,journal-article,2019,2,37,,Acm Transactions On Information Systems,journal,crossref:320,
-doi:10.1007/978-3-030-58285-2_27,Fast Pathfinding In Knowledge Graphs Using Word Embeddings,book-chapter,2020,,,1,Lecture Notes In Computer Science - Ki 2020: Advances In Artificial Intelligence,book,crossref:297,
-doi:10.1007/s11280-020-00842-7,Using Context Information To Enhance Simple Question Answering,journal-article,2020,1,24,,World Wide Web,journal,crossref:297,
diff --git a/ogData/relational_other_data.json b/ogData/relational_other_data.json
deleted file mode 100644
index a44be3e..0000000
--- a/ogData/relational_other_data.json
+++ /dev/null
@@ -1,9416 +0,0 @@
-{
- "authors": {
- "doi:10.1162/qss_a_00023": [
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Shotton",
- "given": "David",
- "orcid": "0000-0001-5506-523X"
- }
- ],
- "doi:10.1007/s11192-019-03217-6": [
- {
- "family": "Heibi",
- "given": "Ivan",
- "orcid": "0000-0001-5366-5194"
- },
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Shotton",
- "given": "David",
- "orcid": "0000-0001-5506-523X"
- }
- ],
- "doi:10.1007/s11192-019-03311-9": [
- {
- "family": "Zhu",
- "given": "Yongjun",
- "orcid": "0000-0003-4787-5122"
- }
- ],
- "doi:10.1038/sdata.2016.18": [
- {
- "family": "Wilkinson",
- "given": "Mark D.",
- "orcid": "0000-0001-6960-357X"
- },
- {
- "family": "Dumontier",
- "given": "Michel",
- "orcid": "0000-0003-4727-9435"
- },
- {
- "family": "Aalbersberg",
- "given": "Ijsbrand Jan",
- "orcid": "0000-0002-0209-4480"
- },
- {
- "family": "Appleton",
- "given": "Gabrielle",
- "orcid": "0000-0003-0179-7384"
- },
- {
- "family": "Axton",
- "given": "Myles",
- "orcid": "0000-0002-8042-4131"
- },
- {
- "family": "Baak",
- "given": "Arie",
- "orcid": "0000-0003-2829-6715"
- },
- {
- "family": "Blomberg",
- "given": "Niklas",
- "orcid": "0000-0003-4155-5910"
- },
- {
- "family": "Boiten",
- "given": "Jan-Willem",
- "orcid": "0000-0003-0327-638X"
- },
- {
- "family": "Da Silva Santos",
- "given": "Luiz Bonino",
- "orcid": "0000-0002-1164-1351"
- },
- {
- "family": "Bourne",
- "given": "Philip E.",
- "orcid": "0000-0002-7618-7292"
- },
- {
- "family": "Brookes",
- "given": "Anthony J.",
- "orcid": "0000-0001-8686-0017"
- },
- {
- "family": "Clark",
- "given": "Tim",
- "orcid": "0000-0003-4060-7360"
- },
- {
- "family": "Crosas",
- "given": "Mercè",
- "orcid": "0000-0003-1304-1939"
- },
- {
- "family": "Dillo",
- "given": "Ingrid",
- "orcid": "0000-0001-5654-2392"
- },
- {
- "family": "Dumon",
- "given": "Olivier",
- "orcid": "0000-0001-8599-7345"
- },
- {
- "family": "Edmunds",
- "given": "Scott",
- "orcid": "0000-0001-6444-1436"
- },
- {
- "family": "Evelo",
- "given": "Chris T.",
- "orcid": "0000-0002-5301-3142"
- },
- {
- "family": "Finkers",
- "given": "Richard",
- "orcid": "0000-0002-4368-8058"
- },
- {
- "family": "Gonzalez-Beltran",
- "given": "Alejandra",
- "orcid": "0000-0003-3499-8262"
- },
- {
- "family": "Gray",
- "given": "Alasdair J.G.",
- "orcid": "0000-0002-5711-4872"
- },
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- },
- {
- "family": "Goble",
- "given": "Carole",
- "orcid": "0000-0003-1219-2137"
- },
- {
- "family": "Grethe",
- "given": "Jeffrey S.",
- "orcid": "0000-0001-5212-7052"
- },
- {
- "family": "Heringa",
- "given": "Jaap",
- "orcid": "0000-0001-8641-4930"
- },
- {
- "family": "’T Hoen",
- "given": "Peter A.C",
- "orcid": "0000-0003-4450-3112"
- },
- {
- "family": "Hooft",
- "given": "Rob",
- "orcid": "0000-0001-6825-9439"
- },
- {
- "family": "Kuhn",
- "given": "Tobias",
- "orcid": "0000-0002-1267-0234"
- },
- {
- "family": "Kok",
- "given": "Joost",
- "orcid": "0000-0002-7352-1400"
- },
- {
- "family": "Lusher",
- "given": "Scott J.",
- "orcid": "0000-0003-2401-4223"
- },
- {
- "family": "Martone",
- "given": "Maryann E.",
- "orcid": "0000-0002-8406-3871"
- },
- {
- "family": "Packer",
- "given": "Abel L.",
- "orcid": "0000-0001-9610-5728"
- },
- {
- "family": "Persson",
- "given": "Bengt",
- "orcid": "0000-0003-3165-5344"
- },
- {
- "family": "Rocca-Serra",
- "given": "Philippe",
- "orcid": "0000-0001-9853-5668"
- },
- {
- "family": "Roos",
- "given": "Marco",
- "orcid": "0000-0002-8691-772X"
- },
- {
- "family": "Sansone",
- "given": "Susanna-Assunta",
- "orcid": "0000-0001-5306-5690"
- },
- {
- "family": "Schultes",
- "given": "Erik",
- "orcid": "0000-0001-8888-635X"
- },
- {
- "family": "Sengstag",
- "given": "Thierry",
- "orcid": "0000-0002-7516-6246"
- },
- {
- "family": "Slater",
- "given": "Ted",
- "orcid": "0000-0003-1386-0731"
- },
- {
- "family": "Swertz",
- "given": "Morris A.",
- "orcid": "0000-0002-0979-3401"
- },
- {
- "family": "Thompson",
- "given": "Mark",
- "orcid": "0000-0002-7633-1442"
- },
- {
- "family": "Van Mulligen",
- "given": "Erik",
- "orcid": "0000-0003-1377-9386"
- },
- {
- "family": "Velterop",
- "given": "Jan",
- "orcid": "0000-0002-4836-6568"
- },
- {
- "family": "Waagmeester",
- "given": "Andra",
- "orcid": "0000-0001-9773-4008"
- },
- {
- "family": "Wolstencroft",
- "given": "Katherine",
- "orcid": "0000-0002-1279-5133"
- },
- {
- "family": "Zhao",
- "given": "Jun",
- "orcid": "0000-0001-6935-9028"
- },
- {
- "family": "Mons",
- "given": "Barend",
- "orcid": "0000-0003-3934-0072"
- }
- ],
- "doi:10.1371/journal.pbio.3000385": [
- {
- "family": "Hutchins",
- "given": "B. Ian",
- "orcid": "0000-0001-7657-552X"
- },
- {
- "family": "Baker",
- "given": "Kirk L.",
- "orcid": "0000-0002-9004-3041"
- },
- {
- "family": "Davis",
- "given": "Matthew T.",
- "orcid": "0000-0002-2485-6458"
- },
- {
- "family": "Diwersy",
- "given": "Mario A.",
- "orcid": "0000-0003-0294-2424"
- },
- {
- "family": "Leicht",
- "given": "Stephen A.",
- "orcid": "0000-0002-6577-3106"
- },
- {
- "family": "Santangelo",
- "given": "George M.",
- "orcid": "0000-0002-7201-3164"
- }
- ],
- "doi:10.3233/ds-190016": [
- {
- "family": "Heibi",
- "given": "Ivan",
- "orcid": "0000-0001-5366-5194"
- },
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Shotton",
- "given": "David",
- "orcid": "0000-0001-5506-523X"
- }
- ],
- "doi:10.1007/s11192-020-03397-6": [
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Ciancarini",
- "given": "Paolo",
- "orcid": "0000-0002-7958-9924"
- },
- {
- "family": "Gangemi",
- "given": "Aldo",
- "orcid": "0000-0001-5568-2684"
- },
- {
- "family": "Nuzzolese",
- "given": "Andrea Giovanni",
- "orcid": "0000-0003-2928-9496"
- },
- {
- "family": "Poggi",
- "given": "Francesco",
- "orcid": "0000-0001-6577-5606"
- },
- {
- "family": "Presutti",
- "given": "Valentina",
- "orcid": "0000-0002-9380-5160"
- }
- ],
- "doi:10.1186/s13321-020-00448-1": [
- {
- "family": "Willighagen",
- "given": "Egon",
- "orcid": "0000-0001-7542-0286"
- }
- ],
- "doi:10.1007/978-3-030-61244-3_16": [
- {
- "family": "Salatino",
- "given": "Angelo",
- "orcid": "0000-0002-4763-3943"
- },
- {
- "family": "Osborne",
- "given": "Francesco",
- "orcid": "0000-0001-6557-3131"
- },
- {
- "family": "Motta",
- "given": "Enrico",
- "orcid": "0000-0003-0015-1952"
- }
- ],
- "doi:10.1007/978-3-030-61244-3_6": [
- {
- "family": "Nguyen",
- "given": "Viet Bach",
- "orcid": "0000-0003-2709-3297"
- },
- {
- "family": "Svátek",
- "given": "Vojtěch",
- "orcid": "0000-0002-2256-2982"
- },
- {
- "family": "Rabby",
- "given": "Gollam",
- "orcid": "0000-0002-1212-0101"
- },
- {
- "family": "Corcho",
- "given": "Oscar",
- "orcid": "0000-0002-9260-0753"
- }
- ],
- "doi:10.1007/978-3-030-54956-5_2": [
- {
- "family": "Jaradeh",
- "given": "Mohamad Yaser",
- "orcid": "0000-0001-8777-2780"
- },
- {
- "family": "Stocker",
- "given": "Markus",
- "orcid": "0000-0001-5492-3212"
- },
- {
- "family": "Auer",
- "given": "Sören",
- "orcid": "0000-0002-0698-2864"
- }
- ],
- "doi:10.1007/978-3-030-55814-7_15": [
- {
- "family": "Chialva",
- "given": "Diego",
- "orcid": "0000-0003-2681-9826"
- },
- {
- "family": "Mugabushaka",
- "given": "Alexis-Michel",
- "orcid": "0000-0003-4624-568X"
- }
- ],
- "doi:10.1007/s11192-020-03690-4": [
- {
- "family": "MartÃn-MartÃn",
- "given": "Alberto",
- "orcid": "0000-0002-0360-186X"
- },
- {
- "family": "Thelwall",
- "given": "Mike",
- "orcid": "0000-0001-6065-205X"
- },
- {
- "family": "Orduna-Malea",
- "given": "Enrique",
- "orcid": "0000-0002-1989-8477"
- },
- {
- "family": "Delgado López-Cózar",
- "given": "Emilio",
- "orcid": "0000-0002-8184-551X"
- }
- ],
- "doi:10.1007/978-3-030-62466-8_28": [
- {
- "family": "Daquino",
- "given": "Marilena",
- "orcid": "0000-0002-1113-7550"
- },
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Shotton",
- "given": "David",
- "orcid": "0000-0001-5506-523X"
- },
- {
- "family": "Colavizza",
- "given": "Giovanni",
- "orcid": "0000-0002-9806-084X"
- },
- {
- "family": "Ghavimi",
- "given": "Behnam",
- "orcid": "0000-0002-4627-5371"
- },
- {
- "family": "Lauscher",
- "given": "Anne",
- "orcid": "0000-0001-8590-9827"
- },
- {
- "family": "Mayr",
- "given": "Philipp",
- "orcid": "0000-0002-6656-1658"
- },
- {
- "family": "Romanello",
- "given": "Matteo",
- "orcid": "0000-0002-7406-6286"
- },
- {
- "family": "Zumstein",
- "given": "Philipp",
- "orcid": "0000-0002-6485-9434"
- }
- ],
- "doi:10.1038/s41597-020-00749-y": [
- {
- "family": "Boyack",
- "given": "Kevin W.",
- "orcid": "0000-0001-7814-8951"
- }
- ],
- "doi:10.1007/978-3-030-77385-4_37": [
- {
- "family": "Bloem",
- "given": "Peter",
- "orcid": "0000-0002-0189-5817"
- },
- {
- "family": "Wilcke",
- "given": "Xander",
- "orcid": "0000-0003-2415-8438"
- },
- {
- "family": "Van Berkel",
- "given": "Lucas",
- "orcid": "0000-0002-2524-1279"
- },
- {
- "family": "De Boer",
- "given": "Victor",
- "orcid": "0000-0001-9079-039X"
- }
- ],
- "doi:10.1007/s11192-021-04079-7": [
- {
- "family": "Mryglod",
- "given": "O.",
- "orcid": "0000-0003-4415-7061"
- }
- ],
- "doi:10.1162/qss_a_00112": [
- {
- "family": "Visser",
- "given": "Martijn",
- "orcid": "0000-0001-5987-2389"
- },
- {
- "family": "Van Eck",
- "given": "Nees Jan",
- "orcid": "0000-0001-8448-4521"
- },
- {
- "family": "Waltman",
- "given": "Ludo",
- "orcid": "0000-0001-8249-1752"
- }
- ],
- "doi:10.7717/peerj-cs.421": [
- {
- "family": "Butt",
- "given": "Bilal H.",
- "orcid": "0000-0002-3063-1861"
- },
- {
- "family": "Rafi",
- "given": "Muhammad",
- "orcid": "0000-0002-3673-5979"
- }
- ],
- "doi:10.1101/2021.05.04.442638": [
- {
- "family": "Page",
- "given": "Roderic D. M.",
- "orcid": "0000-0002-7101-9767"
- }
- ],
- "doi:10.1007/s11192-021-04097-5": [
- {
- "family": "Heibi",
- "given": "Ivan",
- "orcid": "0000-0001-5366-5194"
- },
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- }
- ],
- "doi:10.1007/978-3-030-84825-5_11": [
- {
- "family": "Zárate",
- "given": "Marcos",
- "orcid": "0000-0001-8851-8602"
- },
- {
- "family": "Buckle",
- "given": "Carlos",
- "orcid": "0000-0003-0722-0949"
- }
- ],
- "doi:10.3989/arbor.2021.799007": [
- {
- "family": "Ortega",
- "given": "José Luis",
- "orcid": "0000-0001-9857-1511"
- }
- ],
- "doi:10.1162/qss_a_00146": [
- {
- "family": "Nicholson",
- "given": "Josh M.",
- "orcid": "0000-0002-1111-1828"
- },
- {
- "family": "Mordaunt",
- "given": "Milo",
- "orcid": "0000-0001-5395-4252"
- },
- {
- "family": "Lopez",
- "given": "Patrice",
- "orcid": "0000-0002-9959-9441"
- },
- {
- "family": "Uppala",
- "given": "Ashish",
- "orcid": "0000-0001-8748-1465"
- },
- {
- "family": "Rosati",
- "given": "Domenic",
- "orcid": "0000-0003-2666-7615"
- },
- {
- "family": "Rodrigues",
- "given": "Neves P.",
- "orcid": "0000-0002-6950-2135"
- },
- {
- "family": "Grabitz",
- "given": "Peter",
- "orcid": "0000-0001-5658-2482"
- },
- {
- "family": "Rife",
- "given": "Sean C.",
- "orcid": "0000-0002-6748-0841"
- }
- ],
- "doi:10.1080/19386389.2021.1999156": [
- {
- "family": "Hauschke",
- "given": "Christian",
- "orcid": "0000-0003-2499-7741"
- },
- {
- "family": "Nazarovets",
- "given": "Serhii",
- "orcid": "0000-0002-5067-4498"
- },
- {
- "family": "Altemeier",
- "given": "Franziska",
- "orcid": "0000-0001-7086-6211"
- },
- {
- "family": "Kaliuzhna",
- "given": "Nataliia",
- "orcid": "0000-0003-3154-8194"
- }
- ],
- "doi:10.3390/app11219997": [
- {
- "family": "Jiang",
- "given": "Hongbing",
- "orcid": "0000-0002-1296-9148"
- }
- ],
- "doi:10.32388/ofhzcw": [
- {
- "family": "Nazarovets",
- "given": "Serhii",
- "orcid": "0000-0002-5067-4498"
- }
- ],
- "doi:10.32388/ofhzcw.2": [
- {
- "family": "Nazarovets",
- "given": "Serhii",
- "orcid": "0000-0002-5067-4498"
- }
- ],
- "doi:10.3145/thinkepi.2021.e15e04": [
- {
- "family": "MartÃn-MartÃn",
- "given": "Alberto",
- "orcid": "0000-0002-0360-186X"
- }
- ],
- "doi:10.1007/978-3-030-16187-3_20": [
- {
- "family": "Tapia-Leon",
- "given": "Mariela",
- "orcid": "0000-0002-2609-5955"
- },
- {
- "family": "Chicaiza Espinosa",
- "given": "Janneth",
- "orcid": "0000-0003-3439-3618"
- },
- {
- "family": "Espinoza Arias",
- "given": "Paola",
- "orcid": "0000-0002-3938-2064"
- },
- {
- "family": "Santana-Perez",
- "given": "Idafen",
- "orcid": "0000-0001-8296-8629"
- },
- {
- "family": "Corcho",
- "given": "Oscar",
- "orcid": "0000-0002-9260-0753"
- }
- ],
- "doi:10.1017/s0269888920000065": [
- {
- "family": "Kotis",
- "given": "Konstantinos I.",
- "orcid": "0000-0001-7838-9691"
- }
- ],
- "doi:10.1002/asi.24301": [
- {
- "family": "Daquino",
- "given": "Marilena",
- "orcid": "0000-0002-1113-7550"
- }
- ],
- "doi:10.1007/978-3-030-59194-6_37": [
- {
- "family": "Santamaria",
- "given": "Teresa",
- "orcid": "0000-0002-2172-2438"
- },
- {
- "family": "Tapia-Leon",
- "given": "Mariela",
- "orcid": "0000-0002-2609-5955"
- },
- {
- "family": "Chicaiza",
- "given": "Janneth",
- "orcid": "0000-0003-3439-3618"
- }
- ],
- "doi:10.1007/978-3-030-61244-3_7": [
- {
- "family": "Bucur",
- "given": "Cristina-Iulia",
- "orcid": "0000-0002-7114-6459"
- },
- {
- "family": "Kuhn",
- "given": "Tobias",
- "orcid": "0000-0002-1267-0234"
- },
- {
- "family": "Ceolin",
- "given": "Davide",
- "orcid": "0000-0002-3357-9130"
- }
- ],
- "doi:10.3897/biss.4.59126": [
- {
- "family": "Page",
- "given": "Roderic",
- "orcid": "0000-0002-7101-9767"
- }
- ],
- "doi:10.1007/978-3-030-54956-5_9": [
- {
- "family": "Say",
- "given": "Zeynep",
- "orcid": "0000-0003-4780-6952"
- },
- {
- "family": "Fathalla",
- "given": "Said",
- "orcid": "0000-0002-2818-5890"
- },
- {
- "family": "Vahdati",
- "given": "Sahar",
- "orcid": "0000-0002-7171-169X"
- },
- {
- "family": "Lehmann",
- "given": "Jens",
- "orcid": "0000-0001-9108-4278"
- },
- {
- "family": "Auer",
- "given": "Sören",
- "orcid": "0000-0002-0698-2864"
- }
- ],
- "doi:10.1007/978-3-030-71903-6_32": [
- {
- "family": "De Boer",
- "given": "Victor",
- "orcid": "0000-0001-9079-039X"
- },
- {
- "family": "Koolen",
- "given": "Marijn",
- "orcid": "0000-0002-0301-2029"
- },
- {
- "family": "Hoekstra",
- "given": "Rik",
- "orcid": "0000-0002-6951-8014"
- }
- ],
- "doi:10.3897/bdj.9.e67671": [
- {
- "family": "Dimitrova",
- "given": "Mariya",
- "orcid": "0000-0002-8083-6048"
- },
- {
- "family": "Senderov",
- "given": "Viktor",
- "orcid": "0000-0003-3340-5963"
- },
- {
- "family": "Georgiev",
- "given": "Teodor",
- "orcid": "0000-0001-8558-6845"
- },
- {
- "family": "Zhelezov",
- "given": "Georgi",
- "orcid": "0000-0002-6159-0097"
- },
- {
- "family": "Penev",
- "given": "Lyubomir",
- "orcid": "0000-0002-2186-5033"
- }
- ],
- "doi:10.1007/978-3-030-91669-5_24": [
- {
- "family": "Haris",
- "given": "Muhammad",
- "orcid": "0000-0002-5071-1658"
- },
- {
- "family": "Farfar",
- "given": "Kheir Eddine",
- "orcid": "0000-0002-0366-4596"
- },
- {
- "family": "Stocker",
- "given": "Markus",
- "orcid": "0000-0001-5492-3212"
- },
- {
- "family": "Auer",
- "given": "Sören",
- "orcid": "0000-0002-0698-2864"
- }
- ],
- "doi:10.1016/j.joi.2014.07.006": [
- {
- "family": "Van Eck",
- "given": "Nees Jan",
- "orcid": "0000-0001-8448-4521"
- }
- ],
- "doi:10.1007/s11042-019-08000-6": [
- {
- "family": "Dattolo",
- "given": "Antonina",
- "orcid": "0000-0002-8511-524X"
- }
- ],
- "doi:10.3233/ds-190017": [
- {
- "family": "Scalia",
- "given": "Gabriele",
- "orcid": "0000-0003-3305-9220"
- },
- {
- "family": "Pelucchi",
- "given": "Matteo",
- "orcid": "0000-0003-3106-0236"
- },
- {
- "family": "Stagni",
- "given": "Alessandro",
- "orcid": "0000-0003-4339-7872"
- },
- {
- "family": "Cuoci",
- "given": "Alberto",
- "orcid": "0000-0001-5653-0180"
- },
- {
- "family": "Faravelli",
- "given": "Tiziano",
- "orcid": "0000-0001-8382-7342"
- },
- {
- "family": "Pernici",
- "given": "Barbara",
- "orcid": "0000-0002-2034-9774"
- }
- ],
- "doi:10.3233/ds-190023": [
- {
- "family": "Gonzalez-Beltran",
- "given": "Alejandra",
- "orcid": "0000-0003-3499-8262"
- },
- {
- "family": "Osborne",
- "given": "Francesco",
- "orcid": "0000-0001-6557-3131"
- },
- {
- "family": "Peroni",
- "given": "Silvio",
- "orcid": "0000-0003-0530-4305"
- },
- {
- "family": "Vahdati",
- "given": "Sahar",
- "orcid": "0000-0002-7171-169X"
- }
- ],
- "doi:10.31263/voebm.v72i2.2808": [
- {
- "family": "Blümel",
- "given": "Ina",
- "orcid": "0000-0002-3075-7640"
- },
- {
- "family": "Drees",
- "given": "Bastian",
- "orcid": "0000-0003-3508-602X"
- },
- {
- "family": "Hauschke",
- "given": "Christian",
- "orcid": "0000-0003-2499-7741"
- },
- {
- "family": "Heller",
- "given": "Lambert",
- "orcid": "0000-0003-0232-7085"
- },
- {
- "family": "Tullney",
- "given": "Marco",
- "orcid": "0000-0002-5111-2788"
- }
- ],
- "doi:10.1101/2021.07.26.453749": [
- {
- "family": "Rodriguez-Esteban",
- "given": "Raul",
- "orcid": "0000-0002-9494-9609"
- }
- ],
- "doi:10.1007/s11192-016-1879-4": [
- {
- "family": "Van Wilgen",
- "given": "Brian W.",
- "orcid": "0000-0002-1536-7521"
- }
- ],
- "doi:10.1007/s11192-016-1971-9": [
- {
- "family": "Farkas",
- "given": "Illés J.",
- "orcid": "0000-0001-5341-5582"
- },
- {
- "family": "Pollner",
- "given": "Péter",
- "orcid": "0000-0003-0464-4893"
- }
- ],
- "doi:10.1007/s11192-016-2071-6": [
- {
- "family": "Bartol",
- "given": "Tomaz",
- "orcid": "0000-0001-7320-2314"
- }
- ],
- "doi:10.1007/s11192-016-2132-x": [
- {
- "family": "Rahman",
- "given": "A. I. M. Jakaria",
- "orcid": "0000-0001-7876-4631"
- }
- ],
- "doi:10.1007/s11192-016-2194-9": [
- {
- "family": "Wittek",
- "given": "Peter",
- "orcid": "0000-0002-1539-8256"
- }
- ],
- "doi:10.1007/s11192-016-2215-8": [
- {
- "family": "Van Raan",
- "given": "Anthony F. J.",
- "orcid": "0000-0001-8980-5937"
- }
- ],
- "doi:10.1007/s11192-017-2436-5": [
- {
- "family": "Ãvila-Robinson",
- "given": "Alfonso",
- "orcid": "0000-0002-0994-0918"
- }
- ],
- "doi:10.1007/s11192-017-2449-0": [
- {
- "family": "Leydesdorff",
- "given": "Loet",
- "orcid": "0000-0002-7835-3098"
- }
- ],
- "doi:10.1007/s11192-017-2452-5": [
- {
- "family": "Shapira",
- "given": "Philip",
- "orcid": "0000-0003-2488-5985"
- }
- ],
- "doi:10.1007/s11192-017-2481-0": [
- {
- "family": "Prabhakaran",
- "given": "Thara",
- "orcid": "0000-0002-3494-6801"
- }
- ],
- "doi:10.1007/s11192-017-2538-0": [
- {
- "family": "Gautam",
- "given": "Pitambar",
- "orcid": "0000-0001-8297-4359"
- }
- ],
- "doi:10.1007/s11192-017-2604-7": [
- {
- "family": "Hu",
- "given": "Kai",
- "orcid": "0000-0002-3521-4178"
- }
- ],
- "doi:10.1007/s11192-017-2616-3": [
- {
- "family": "Chen",
- "given": "Bikun",
- "orcid": "0000-0002-2686-3037"
- }
- ],
- "doi:10.1007/s11192-017-2636-z": [
- {
- "family": "Repiso",
- "given": "Rafael",
- "orcid": "0000-0002-2803-7505"
- }
- ],
- "doi:10.1007/s11192-018-2651-8": [
- {
- "family": "Santa Soriano",
- "given": "Alba",
- "orcid": "0000-0002-9853-8882"
- },
- {
- "family": "Lorenzo Ãlvarez",
- "given": "Carolina",
- "orcid": "0000-0003-1378-1873"
- },
- {
- "family": "Torres Valdés",
- "given": "Rosa MarÃa",
- "orcid": "0000-0002-4618-1527"
- }
- ],
- "doi:10.1007/s11192-018-2705-y": [
- {
- "family": "Santos",
- "given": "Gina",
- "orcid": "0000-0003-3467-6204"
- }
- ],
- "doi:10.1007/s11192-018-2734-6": [
- {
- "family": "Leydesdorff",
- "given": "Loet",
- "orcid": "0000-0002-7835-3098"
- }
- ],
- "doi:10.1007/s11192-018-2740-8": [
- {
- "family": "Hu",
- "given": "Zhigang",
- "orcid": "0000-0003-1835-4264"
- }
- ],
- "doi:10.1007/s11192-018-2748-0": [
- {
- "family": "Sun",
- "given": "Yaowu",
- "orcid": "0000-0001-6241-5250"
- }
- ],
- "doi:10.1007/s11192-018-2752-4": [
- {
- "family": "Gorry",
- "given": "Philippe",
- "orcid": "0000-0002-5497-8069"
- }
- ],
- "doi:10.1007/s11192-018-2761-3": [
- {
- "family": "Ronda-Pupo",
- "given": "Guillermo Armando",
- "orcid": "0000-0002-9049-8249"
- }
- ],
- "doi:10.1007/s11192-018-2765-z": [
- {
- "family": "Ellegaard",
- "given": "Ole",
- "orcid": "0000-0003-3975-3969"
- }
- ],
- "doi:10.1007/s11192-018-2775-x": [
- {
- "family": "Guns",
- "given": "Raf",
- "orcid": "0000-0003-3129-0330"
- }
- ],
- "doi:10.1007/s11192-018-2786-7": [
- {
- "family": "Wu",
- "given": "Qiang",
- "orcid": "0000-0002-1308-1669"
- }
- ],
- "doi:10.1007/s11192-018-2796-5": [
- {
- "family": "Petrovich",
- "given": "Eugenio",
- "orcid": "0000-0001-9646-0471"
- }
- ],
- "doi:10.1007/s11192-018-2803-x": [
- {
- "family": "Ping",
- "given": "Qing",
- "orcid": "0000-0002-8919-9364"
- }
- ],
- "doi:10.1007/s11192-018-2809-4": [
- {
- "family": "Marzi",
- "given": "Giacomo",
- "orcid": "0000-0002-8769-2462"
- }
- ],
- "doi:10.1007/s11192-018-2841-4": [
- {
- "family": "Xu",
- "given": "Shuo",
- "orcid": "0000-0002-8602-1819"
- }
- ],
- "doi:10.1007/s11192-018-2844-1": [
- {
- "family": "Tomaszewski",
- "given": "Robert",
- "orcid": "0000-0001-6916-1265"
- }
- ],
- "doi:10.1007/s11192-018-2856-x": [
- {
- "family": "Cunillera",
- "given": "Toni",
- "orcid": "0000-0002-1768-5910"
- }
- ],
- "doi:10.1007/s11192-018-2936-y": [
- {
- "family": "Ivar Do Sul",
- "given": "Juliana A.",
- "orcid": "0000-0003-0851-3559"
- },
- {
- "family": "Tagg",
- "given": "Alexander S.",
- "orcid": "0000-0003-3216-8433"
- },
- {
- "family": "Labrenz",
- "given": "Matthias",
- "orcid": "0000-0003-3452-8631"
- }
- ],
- "doi:10.1007/s11192-018-2977-2": [
- {
- "family": "Castriotta",
- "given": "Manuel",
- "orcid": "0000-0001-8379-0332"
- },
- {
- "family": "Loi",
- "given": "Michela",
- "orcid": "0000-0002-5358-5327"
- },
- {
- "family": "Marku",
- "given": "Elona",
- "orcid": "0000-0002-9005-9545"
- }
- ],
- "doi:10.1007/s11192-018-2990-5": [
- {
- "family": "Stopar",
- "given": "Karmen",
- "orcid": "0000-0003-0853-3031"
- },
- {
- "family": "Bartol",
- "given": "Tomaž",
- "orcid": "0000-0001-7320-2314"
- }
- ],
- "doi:10.1007/s11192-019-03047-6": [
- {
- "family": "De Bem Oliveira",
- "given": "Ivone",
- "orcid": "0000-0003-3723-9747"
- },
- {
- "family": "Nunes",
- "given": "Rhewter",
- "orcid": "0000-0001-7770-7707"
- },
- {
- "family": "Barros-Ribeiro",
- "given": "Stela",
- "orcid": "0000-0001-8491-8860"
- },
- {
- "family": "De Souza",
- "given": "Isabela Pavanelli",
- "orcid": "0000-0001-9126-2548"
- },
- {
- "family": "Collevatti",
- "given": "Rosane Garcia",
- "orcid": "0000-0002-3733-7059"
- }
- ],
- "doi:10.1007/s11192-019-03057-4": [
- {
- "family": "Uddin",
- "given": "Shahadat",
- "orcid": "0000-0003-0091-6919"
- }
- ],
- "doi:10.1007/s11192-019-03087-y": [
- {
- "family": "Lovakov",
- "given": "Andrey",
- "orcid": "0000-0001-8644-9236"
- },
- {
- "family": "Agadullina",
- "given": "Elena",
- "orcid": "0000-0002-1505-1412"
- }
- ],
- "doi:10.1007/s11192-019-03116-w": [
- {
- "family": "Skute",
- "given": "Igors",
- "orcid": "0000-0001-7078-1736"
- }
- ],
- "doi:10.1007/s11192-019-03201-0": [
- {
- "family": "Cortés-Sánchez",
- "given": "Julián David",
- "orcid": "0000-0002-1246-2160"
- }
- ],
- "doi:10.1007/s11192-019-03213-w": [
- {
- "family": "Ruiz-Rosero",
- "given": "Juan",
- "orcid": "0000-0001-5896-7618"
- },
- {
- "family": "Ramirez-Gonzalez",
- "given": "Gustavo",
- "orcid": "0000-0002-1338-8820"
- },
- {
- "family": "Viveros-Delgado",
- "given": "Jesus",
- "orcid": "0000-0003-2415-5675"
- }
- ],
- "doi:10.1080/13683500.2017.1408574": [
- {
- "family": "Jiang",
- "given": "Yawei",
- "orcid": "0000-0003-3125-3732"
- }
- ],
- "doi:10.1080/16549716.2018.1504398": [
- {
- "family": "Maula",
- "given": "Ahmad Watsiq",
- "orcid": "0000-0003-1494-5403"
- },
- {
- "family": "Fuad",
- "given": "Anis",
- "orcid": "0000-0003-2303-5903"
- },
- {
- "family": "Utarini",
- "given": "Adi",
- "orcid": "0000-0002-3908-5975"
- }
- ],
- "doi:10.1007/s00210-019-01629-y": [
- {
- "family": "Abdel-Daim",
- "given": "Mohamed M.",
- "orcid": "0000-0002-4341-2713"
- }
- ],
- "doi:10.1007/s10843-017-0213-4": [
- {
- "family": "GarcÃa-Lillo",
- "given": "Francisco",
- "orcid": "0000-0001-7090-5540"
- }
- ],
- "doi:10.1080/2157930x.2018.1439293": [
- {
- "family": "Andersen",
- "given": "Allan Dahl",
- "orcid": "0000-0002-2703-293X"
- }
- ],
- "doi:10.1002/leap.1114": [
- {
- "family": "Liu",
- "given": "Weishu",
- "orcid": "0000-0001-8780-6709"
- },
- {
- "family": "Li",
- "given": "Yanchao",
- "orcid": "0000-0002-0674-1534"
- }
- ],
- "doi:10.1080/23299460.2017.1387509": [
- {
- "family": "Bravo",
- "given": "Giangiacomo",
- "orcid": "0000-0003-2837-0137"
- }
- ],
- "doi:10.3390/e21070694": [
- {
- "family": "Zhou",
- "given": "Jian",
- "orcid": "0000-0001-7835-8879"
- }
- ],
- "doi:10.1177/1847979017751484": [
- {
- "family": "Merigó",
- "given": "José M",
- "orcid": "0000-0002-4672-6961"
- }
- ],
- "doi:10.1177/1937586719855336": [
- {
- "family": "Fogliatto",
- "given": "Flavio S.",
- "orcid": "0000-0002-0323-8060"
- }
- ],
- "doi:10.1177/1940082919854058": [
- {
- "family": "Urbina-Cardona",
- "given": "Nicolás",
- "orcid": "0000-0002-4174-8467"
- }
- ],
- "doi:10.1007/s11119-018-9569-2": [
- {
- "family": "Pallottino",
- "given": "Federico",
- "orcid": "0000-0003-2035-1257"
- },
- {
- "family": "Biocca",
- "given": "Marcello",
- "orcid": "0000-0002-2718-7907"
- },
- {
- "family": "Nardi",
- "given": "Pierfrancesco",
- "orcid": "0000-0002-0305-6558"
- },
- {
- "family": "Figorilli",
- "given": "Simone",
- "orcid": "0000-0003-4035-4199"
- },
- {
- "family": "Menesatti",
- "given": "Paolo",
- "orcid": "0000-0001-8225-1724"
- },
- {
- "family": "Costa",
- "given": "Corrado",
- "orcid": "0000-0003-3711-1399"
- }
- ],
- "doi:10.1007/s11135-017-0522-7": [
- {
- "family": "Park",
- "given": "Han Woo",
- "orcid": "0000-0002-1378-2473"
- }
- ],
- "doi:10.1007/s11135-018-0811-9": [
- {
- "family": "VerbiÄ",
- "given": "Miroslav",
- "orcid": "0000-0001-5506-0973"
- }
- ],
- "doi:10.3390/smartcities2030027": [
- {
- "family": "Dupont",
- "given": "Laurent",
- "orcid": "0000-0002-8279-9690"
- },
- {
- "family": "Camargo",
- "given": "Mauricio",
- "orcid": "0000-0003-3867-2438"
- }
- ],
- "doi:10.3390/su10030667": [
- {
- "family": "Tsai",
- "given": "Sang-Bing",
- "orcid": "0000-0001-6988-5829"
- }
- ],
- "doi:10.3390/su10030682": [
- {
- "family": "Wang",
- "given": "Peng",
- "orcid": "0000-0002-7842-9144"
- }
- ],
- "doi:10.3390/su10041084": [
- {
- "family": "Velasco-Muñoz",
- "given": "Juan",
- "orcid": "0000-0002-0593-1811"
- },
- {
- "family": "Aznar-Sánchez",
- "given": "José",
- "orcid": "0000-0001-5443-1269"
- },
- {
- "family": "Belmonte-Ureña",
- "given": "Luis",
- "orcid": "0000-0001-5860-5000"
- },
- {
- "family": "Román-Sánchez",
- "given": "Isabel",
- "orcid": "0000-0002-0098-4789"
- }
- ],
- "doi:10.3390/su10124748": [
- {
- "family": "Loia",
- "given": "Francesca",
- "orcid": "0000-0003-1755-968X"
- }
- ],
- "doi:10.3390/su10124790": [
- {
- "family": "Jia",
- "given": "Junzhi",
- "orcid": "0000-0003-1486-673X"
- }
- ],
- "doi:10.3390/su10124847": [
- {
- "family": "Uribe-Toril",
- "given": "Juan",
- "orcid": "0000-0002-0227-801X"
- }
- ],
- "doi:10.3390/su11030745": [
- {
- "family": "Figueroa-RodrÃguez",
- "given": "Katia",
- "orcid": "0000-0003-2724-8236"
- }
- ],
- "doi:10.3390/su11030863": [
- {
- "family": "Perea-Moreno",
- "given": "Miguel-Angel",
- "orcid": "0000-0002-5766-2393"
- }
- ],
- "doi:10.3390/su11040988": [
- {
- "family": "Si",
- "given": "Hongyun",
- "orcid": "0000-0003-2367-4756"
- }
- ],
- "doi:10.3390/su11051377": [
- {
- "family": "Hernández-Lara",
- "given": "Ana-Beatriz",
- "orcid": "0000-0002-8110-9328"
- }
- ],
- "doi:10.3390/su11061677": [
- {
- "family": "Ljunggren Söderman",
- "given": "Maria",
- "orcid": "0000-0001-6418-8557"
- }
- ],
- "doi:10.3390/su11092526": [
- {
- "family": "Fabregat-Aibar",
- "given": "Laura",
- "orcid": "0000-0002-0077-161X"
- },
- {
- "family": "Barberà -Mariné",
- "given": "M. Glòria",
- "orcid": "0000-0003-2578-1301"
- },
- {
- "family": "Pié",
- "given": "Laia",
- "orcid": "0000-0003-3596-7097"
- }
- ],
- "doi:10.3390/su11113049": [
- {
- "family": "Manzano-Agugliaro",
- "given": "Francisco",
- "orcid": "0000-0002-0085-030X"
- }
- ],
- "doi:10.3390/su11133548": [
- {
- "family": "Yuan",
- "given": "Hongping",
- "orcid": "0000-0002-2383-4249"
- }
- ],
- "doi:10.3390/su11154019": [
- {
- "family": "Corallo",
- "given": "Angelo",
- "orcid": "0000-0001-5216-5366"
- },
- {
- "family": "Latino",
- "given": "Maria Elena",
- "orcid": "0000-0001-8686-5109"
- },
- {
- "family": "Menegoli",
- "given": "Marta",
- "orcid": "0000-0002-6771-509X"
- },
- {
- "family": "De Devitiis",
- "given": "Biagia",
- "orcid": "0000-0002-1816-5028"
- },
- {
- "family": "Viscecchia",
- "given": "Rosaria",
- "orcid": "0000-0002-2977-3811"
- }
- ],
- "doi:10.3390/su11164388": [
- {
- "family": "Vathanophas Ractham",
- "given": "Vichita",
- "orcid": "0000-0002-0362-3479"
- }
- ],
- "doi:10.3390/su11174738": [
- {
- "family": "Ramirez-Gonzalez",
- "given": "Gustavo",
- "orcid": "0000-0002-1338-8820"
- }
- ],
- "doi:10.1080/14767724.2019.1665988": [
- {
- "family": "Pineda",
- "given": "Pedro",
- "orcid": "0000-0001-8775-1971"
- }
- ],
- "doi:10.1080/14783363.2018.1468247": [
- {
- "family": "Mendes",
- "given": "LuÃs",
- "orcid": "0000-0002-0921-4078"
- }
- ],
- "doi:10.1080/14783363.2019.1652091": [
- {
- "family": "Niñerola",
- "given": "Angels",
- "orcid": "0000-0001-5598-1203"
- },
- {
- "family": "Sánchez-Rebull",
- "given": "MarÃa-Victoria",
- "orcid": "0000-0002-9920-4104"
- },
- {
- "family": "Hernández-Lara",
- "given": "Ana-Beatriz",
- "orcid": "0000-0002-8110-9328"
- }
- ],
- "doi:10.1186/s12961-018-0298-9": [
- {
- "family": "Bairwa",
- "given": "Mohan",
- "orcid": "0000-0001-7763-2530"
- }
- ],
- "doi:10.1039/c8cs00117k": [
- {
- "family": "Darabi Mahboub",
- "given": "Mohammad Jaber",
- "orcid": "0000-0001-6695-135X"
- },
- {
- "family": "Dubois",
- "given": "Jean-Luc",
- "orcid": "0000-0003-4968-5728"
- },
- {
- "family": "Cavani",
- "given": "Fabrizio",
- "orcid": "0000-0002-4282-6260"
- },
- {
- "family": "Rostamizadeh",
- "given": "Mohammad",
- "orcid": "0000-0002-7955-5011"
- },
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- }
- ],
- "doi:10.3390/ijerph16183326": [
- {
- "family": "Figueroa-RodrÃguez",
- "given": "Katia A.",
- "orcid": "0000-0003-2724-8236"
- },
- {
- "family": "Velasco-Velasco",
- "given": "Joel",
- "orcid": "0000-0003-3854-9376"
- },
- {
- "family": "Aguilar Rivera",
- "given": "Noé",
- "orcid": "0000-0002-7833-6749"
- }
- ],
- "doi:10.1111/joes.12270": [
- {
- "family": "Daraio",
- "given": "Cinzia",
- "orcid": "0000-0002-4825-0071"
- },
- {
- "family": "Kerstens",
- "given": "Kristiaan H.J.",
- "orcid": "0000-0003-3358-4332"
- },
- {
- "family": "Nepomuceno",
- "given": "Thyago Celso Cavalcante",
- "orcid": "0000-0001-8327-6472"
- },
- {
- "family": "Sickles",
- "given": "Robin",
- "orcid": "0000-0002-5575-7137"
- }
- ],
- "doi:10.1371/journal.pone.0216408": [
- {
- "family": "DÃaz-Faes",
- "given": "Adrián A.",
- "orcid": "0000-0003-1928-4608"
- }
- ],
- "doi:10.1177/1354816618793762": [
- {
- "family": "Comerio",
- "given": "Niccolò",
- "orcid": "0000-0003-0592-5996"
- }
- ],
- "doi:10.1186/s12889-019-6842-x": [
- {
- "family": "Fonseca",
- "given": "Bruna De Paula",
- "orcid": "0000-0002-8795-2578"
- }
- ],
- "doi:10.1371/journal.pone.0170296": [
- {
- "family": "De Turckheim",
- "given": "Élisabeth",
- "orcid": "0000-0003-2372-5410"
- }
- ],
- "doi:10.1002/asi.23267": [
- {
- "family": "Guns",
- "given": "Raf",
- "orcid": "0000-0003-3129-0330"
- }
- ],
- "doi:10.1002/asi.23630": [
- {
- "family": "Hook",
- "given": "Peter A.",
- "orcid": "0000-0001-7837-3155"
- }
- ],
- "doi:10.1002/asi.23770": [
- {
- "family": "Ping",
- "given": "Qing",
- "orcid": "0000-0002-8919-9364"
- }
- ],
- "doi:10.1002/asi.24130": [
- {
- "family": "Leydesdorff",
- "given": "Loet",
- "orcid": "0000-0002-7835-3098"
- }
- ],
- "doi:10.1002/asi.24171": [
- {
- "family": "He",
- "given": "Jiangen",
- "orcid": "0000-0002-3950-6098"
- },
- {
- "family": "Ping",
- "given": "Qing",
- "orcid": "0000-0002-8919-9364"
- },
- {
- "family": "Lou",
- "given": "Wen",
- "orcid": "0000-0002-1770-6734"
- },
- {
- "family": "Chen",
- "given": "Chaomei",
- "orcid": "0000-0001-8584-1041"
- }
- ],
- "doi:10.1177/1534735419846401": [
- {
- "family": "Moral-Munoz",
- "given": "Jose A.",
- "orcid": "0000-0002-6465-982X"
- }
- ],
- "doi:10.1108/bij-03-2016-0031": [
- {
- "family": "Frazzon",
- "given": "Enzo Morosini",
- "orcid": "0000-0002-6629-6938"
- }
- ],
- "doi:10.1108/bij-05-2018-0133": [
- {
- "family": "Rocha",
- "given": "PatrÃcia Ianelli",
- "orcid": "0000-0001-7298-4158"
- }
- ],
- "doi:10.1108/dta-10-2017-0078": [
- {
- "family": "Lv",
- "given": "Hong",
- "orcid": "0000-0002-4905-3758"
- }
- ],
- "doi:10.1108/ecam-08-2018-0350": [
- {
- "family": "Jin",
- "given": "Ruoyu",
- "orcid": "0000-0003-0360-6967"
- },
- {
- "family": "Zou",
- "given": "Yang",
- "orcid": "0000-0001-6150-6126"
- }
- ],
- "doi:10.1108/ecam-09-2018-0390": [
- {
- "family": "Edwards",
- "given": "David John",
- "orcid": "0000-0001-9727-6000"
- },
- {
- "family": "Hosseini",
- "given": "M. Reza",
- "orcid": "0000-0001-8675-736X"
- },
- {
- "family": "Mateo-Garcia",
- "given": "Monica",
- "orcid": "0000-0001-7331-4818"
- }
- ],
- "doi:10.4218/etrij.2018-0059": [
- {
- "family": "Zo",
- "given": "Hangjung",
- "orcid": "0000-0002-2892-1659"
- }
- ],
- "doi:10.1177/0013916519843126": [
- {
- "family": "Milfont",
- "given": "Taciano L.",
- "orcid": "0000-0001-6838-6307"
- }
- ],
- "doi:10.1088/1748-9326/aabf9b": [
- {
- "family": "Minx",
- "given": "Jan C",
- "orcid": "0000-0002-2862-0178"
- },
- {
- "family": "Lamb",
- "given": "William F",
- "orcid": "0000-0003-3273-7878"
- },
- {
- "family": "Fuss",
- "given": "Sabine",
- "orcid": "0000-0002-8681-9839"
- },
- {
- "family": "Hilaire",
- "given": "Jérôme",
- "orcid": "0000-0002-9879-6339"
- },
- {
- "family": "Amann",
- "given": "Thorben",
- "orcid": "0000-0001-9347-0615"
- },
- {
- "family": "De Oliveira Garcia",
- "given": "Wagner",
- "orcid": "0000-0001-9559-0629"
- },
- {
- "family": "Hartmann",
- "given": "Jens",
- "orcid": "0000-0003-1878-9321"
- },
- {
- "family": "Nemet",
- "given": "Gregory F",
- "orcid": "0000-0001-7859-4580"
- },
- {
- "family": "Rogelj",
- "given": "Joeri",
- "orcid": "0000-0003-2056-9061"
- },
- {
- "family": "Smith",
- "given": "Pete",
- "orcid": "0000-0002-3784-1124"
- }
- ],
- "doi:10.1080/09585192.2019.1661267": [
- {
- "family": "Andersen",
- "given": "Njål",
- "orcid": "0000-0003-4234-1543"
- }
- ],
- "doi:10.1080/09637486.2019.1620184": [
- {
- "family": "Jóźwik",
- "given": "Artur",
- "orcid": "0000-0001-5546-9891"
- },
- {
- "family": "Sampino",
- "given": "Silvestre",
- "orcid": "0000-0001-8266-5062"
- },
- {
- "family": "Atanasov",
- "given": "Atanas G.",
- "orcid": "0000-0003-2545-0967"
- }
- ],
- "doi:10.1080/09537325.2019.1645826": [
- {
- "family": "Özdağoğlu",
- "given": "Aşkın",
- "orcid": "0000-0001-5299-0622"
- },
- {
- "family": "Özdağoğlu",
- "given": "Güzin",
- "orcid": "0000-0003-3055-3055"
- },
- {
- "family": "Topoyan",
- "given": "Mert",
- "orcid": "0000-0002-3043-1149"
- },
- {
- "family": "Damar",
- "given": "Muhammet",
- "orcid": "0000-0002-3985-3073"
- }
- ],
- "doi:10.1016/j.ssci.2019.07.036": [
- {
- "family": "Thaheem",
- "given": "Muhammad Jamaluddin",
- "orcid": "0000-0001-6092-7842"
- }
- ],
- "doi:10.1016/j.omega.2020.102388": [
- {
- "family": "De Leeuw",
- "given": "Sander",
- "orcid": "0000-0003-3056-8775"
- }
- ],
- "doi:10.1016/j.orp.2020.100164": [
- {
- "family": "Cortez",
- "given": "Paulo",
- "orcid": "0000-0002-7991-2090"
- }
- ],
- "doi:10.1016/j.outlook.2019.04.009": [
- {
- "family": "Kokol",
- "given": "Peter",
- "orcid": "0000-0003-4073-6488"
- }
- ],
- "doi:10.1016/j.ssci.2015.09.004": [
- {
- "family": "Li",
- "given": "Jie",
- "orcid": "0000-0002-4096-2795"
- }
- ],
- "doi:10.1016/j.jup.2018.06.003": [
- {
- "family": "Prabhakaran",
- "given": "Thara",
- "orcid": "0000-0002-3494-6801"
- }
- ],
- "doi:10.1016/j.joi.2016.09.006": [
- {
- "family": "Porter",
- "given": "Alan L.",
- "orcid": "0000-0002-4520-6518"
- }
- ],
- "doi:10.1016/j.joi.2019.01.002": [
- {
- "family": "Copiello",
- "given": "Sergio",
- "orcid": "0000-0002-1975-6620"
- }
- ],
- "doi:10.1016/j.joi.2020.101043": [
- {
- "family": "De Carvalho",
- "given": "Gustavo Dambiski Gomes",
- "orcid": "0000-0002-4947-8422"
- },
- {
- "family": "Sokulski",
- "given": "Carla Cristiane",
- "orcid": "0000-0003-4355-9106"
- },
- {
- "family": "Da Silva",
- "given": "Wesley Vieira",
- "orcid": "0000-0001-5354-8676"
- },
- {
- "family": "De Carvalho",
- "given": "Hélio Gomes",
- "orcid": "0000-0002-0436-4966"
- },
- {
- "family": "De Moura",
- "given": "Rafael Vignoli",
- "orcid": "0000-0003-0263-769X"
- },
- {
- "family": "De Francisco",
- "given": "Antonio Carlos",
- "orcid": "0000-0003-0401-4445"
- },
- {
- "family": "Da Veiga",
- "given": "Claudimar Pereira",
- "orcid": "0000-0002-4960-5954"
- }
- ],
- "doi:10.1016/j.jpurol.2018.04.004": [
- {
- "family": "Fernandez",
- "given": "N.",
- "orcid": "0000-0002-9675-5963"
- }
- ],
- "doi:10.1016/j.autcon.2019.01.010": [
- {
- "family": "Liu",
- "given": "Hexu",
- "orcid": "0000-0002-5397-9369"
- },
- {
- "family": "Al-Hussein",
- "given": "Mohamed",
- "orcid": "0000-0002-1774-9718"
- }
- ],
- "doi:10.1016/j.jbusres.2018.12.002": [
- {
- "family": "Mulet-Forteza",
- "given": "Carles",
- "orcid": "0000-0002-3904-8314"
- }
- ],
- "doi:10.1016/j.jbusres.2019.02.050": [
- {
- "family": "Merigó Lindahl",
- "given": "José M.",
- "orcid": "0000-0002-4672-6961"
- }
- ],
- "doi:10.1016/j.jclepro.2020.122945": [
- {
- "family": "Luo",
- "given": "Jianli",
- "orcid": "0000-0002-2619-7572"
- }
- ],
- "doi:10.1016/j.jclepro.2020.125760": [
- {
- "family": "Xu",
- "given": "Hongzhang",
- "orcid": "0000-0001-8904-2976"
- }
- ],
- "doi:10.1016/j.iref.2019.04.004": [
- {
- "family": "Paltrinieri",
- "given": "Andrea",
- "orcid": "0000-0002-8172-9199"
- },
- {
- "family": "Hassan",
- "given": "Mohammad Kabir",
- "orcid": "0000-0001-6274-3545"
- },
- {
- "family": "Bahoo",
- "given": "Salman",
- "orcid": "0000-0001-7862-0902"
- }
- ],
- "doi:10.1016/j.irfa.2019.101418": [
- {
- "family": "Bahoo",
- "given": "Salman",
- "orcid": "0000-0001-7862-0902"
- },
- {
- "family": "Paltrinieri",
- "given": "Andrea",
- "orcid": "0000-0002-8172-9199"
- }
- ],
- "doi:10.1007/s10668-020-01179-x": [
- {
- "family": "Wei",
- "given": "Chu",
- "orcid": "0000-0002-7704-5544"
- }
- ],
- "doi:10.1007/s10916-020-01691-7": [
- {
- "family": "Au-Yong-Oliveira",
- "given": "Manuel",
- "orcid": "0000-0002-2154-6171"
- }
- ],
- "doi:10.1007/s10997-020-09554-6": [
- {
- "family": "Cesaroni",
- "given": "Fabrizio",
- "orcid": "0000-0002-2345-6225"
- }
- ],
- "doi:10.1007/s11126-020-09858-8": [
- {
- "family": "Ramalho",
- "given": "André",
- "orcid": "0000-0002-8099-3043"
- },
- {
- "family": "Gonçalves-Pinho",
- "given": "Manuel",
- "orcid": "0000-0001-6098-429X"
- },
- {
- "family": "Freitas",
- "given": "Alberto",
- "orcid": "0000-0003-2113-9653"
- }
- ],
- "doi:10.1007/s11356-020-11947-x": [
- {
- "family": "Zhou",
- "given": "Xinyu",
- "orcid": "0000-0002-7303-9251"
- }
- ],
- "doi:10.1016/j.jot.2020.04.010": [
- {
- "family": "Lin",
- "given": "Jun",
- "orcid": "0000-0002-8094-5826"
- },
- {
- "family": "Dou",
- "given": "Dou",
- "orcid": "0000-0001-8963-0399"
- }
- ],
- "doi:10.1016/j.foodchem.2018.06.139": [
- {
- "family": "Yeung",
- "given": "Andy Wai Kan",
- "orcid": "0000-0003-3672-357X"
- }
- ],
- "doi:10.1016/j.chb.2018.07.001": [
- {
- "family": "Karimi",
- "given": "Faezeh",
- "orcid": "0000-0002-3343-4054"
- }
- ],
- "doi:10.1016/j.ssci.2020.104900": [
- {
- "family": "Sarkar",
- "given": "Sobhan",
- "orcid": "0000-0001-6040-6051"
- }
- ],
- "doi:10.1016/j.jbusres.2018.12.050": [
- {
- "family": "Bragge",
- "given": "Johanna",
- "orcid": "0000-0002-4084-3104"
- },
- {
- "family": "Tanskanen",
- "given": "Kari",
- "orcid": "0000-0002-0837-3667"
- }
- ],
- "doi:10.1016/j.jflm.2019.07.002": [
- {
- "family": "Shi",
- "given": "Gefei",
- "orcid": "0000-0002-5809-9993"
- }
- ],
- "doi:10.1016/j.jgar.2017.11.017": [
- {
- "family": "Zyoud",
- "given": "Sa’Ed H.",
- "orcid": "0000-0002-7369-2058"
- }
- ],
- "doi:10.1016/j.jhtm.2020.06.001": [
- {
- "family": "Wen",
- "given": "Jun",
- "orcid": "0000-0002-1110-824X"
- },
- {
- "family": "Goh",
- "given": "Edmund",
- "orcid": "0000-0002-5684-9762"
- },
- {
- "family": "Aston",
- "given": "Joshua",
- "orcid": "0000-0002-7850-081X"
- }
- ],
- "doi:10.1016/j.resconrec.2018.09.029": [
- {
- "family": "Jin",
- "given": "Ruoyu",
- "orcid": "0000-0003-0360-6967"
- }
- ],
- "doi:10.1016/j.respol.2018.07.005": [
- {
- "family": "Wallace",
- "given": "Matthew L.",
- "orcid": "0000-0001-5407-8653"
- },
- {
- "family": "RÃ fols",
- "given": "Ismael",
- "orcid": "0000-0002-6527-7778"
- }
- ],
- "doi:10.1016/j.asoc.2020.106467": [
- {
- "family": "Yu",
- "given": "Dejian",
- "orcid": "0000-0003-2796-9148"
- }
- ],
- "doi:10.1016/j.joi.2014.04.001": [
- {
- "family": "Boyack",
- "given": "Kevin W.",
- "orcid": "0000-0001-7814-8951"
- }
- ],
- "doi:10.1007/s11356-020-11643-w": [
- {
- "family": "Ngadi",
- "given": "Norzita",
- "orcid": "0000-0003-1827-4096"
- }
- ],
- "doi:10.1007/s11846-020-00437-6": [
- {
- "family": "Ferreira",
- "given": "Joao J.",
- "orcid": "0000-0002-5928-2474"
- }
- ],
- "doi:10.1016/j.ecolind.2020.107102": [
- {
- "family": "Sharifi",
- "given": "Ayyoob",
- "orcid": "0000-0002-8983-8613"
- }
- ],
- "doi:10.1016/j.ejor.2017.10.041": [
- {
- "family": "Onggo",
- "given": "Bhakti Stephan",
- "orcid": "0000-0001-5899-304X"
- }
- ],
- "doi:10.1016/j.ejor.2018.10.028": [
- {
- "family": "Perera",
- "given": "H. Niles",
- "orcid": "0000-0001-6329-5967"
- },
- {
- "family": "Hurley",
- "given": "Jason",
- "orcid": "0000-0002-6828-6557"
- }
- ],
- "doi:10.1016/j.cosrev.2020.100335": [
- {
- "family": "Vallejo-Correa",
- "given": "Paola",
- "orcid": "0000-0001-9140-3769"
- },
- {
- "family": "Monsalve-Pulido",
- "given": "Julián",
- "orcid": "0000-0002-0706-5881"
- },
- {
- "family": "Tabares-Betancur",
- "given": "Marta",
- "orcid": "0000-0002-3148-3629"
- }
- ],
- "doi:10.1016/j.jdmm.2018.06.005": [
- {
- "family": "Wakabayashi",
- "given": "Naoki",
- "orcid": "0000-0001-6144-2855"
- }
- ],
- "doi:10.1016/j.jclepro.2020.124033": [
- {
- "family": "Caputo",
- "given": "Andrea",
- "orcid": "0000-0003-2498-182X"
- }
- ],
- "doi:10.1016/j.jclepro.2020.125751": [
- {
- "family": "Hu",
- "given": "Zhongyu",
- "orcid": "0000-0002-0748-0954"
- }
- ],
- "doi:10.1016/j.conbuildmat.2018.03.147": [
- {
- "family": "Jin",
- "given": "Ruoyu",
- "orcid": "0000-0003-0360-6967"
- }
- ],
- "doi:10.1016/j.techfore.2020.120118": [
- {
- "family": "Secundo",
- "given": "Giustina",
- "orcid": "0000-0001-6672-4261"
- }
- ],
- "doi:10.1016/j.bjan.2020.02.003": [
- {
- "family": "DoÄŸan",
- "given": "Güvenç",
- "orcid": "0000-0001-7351-8968"
- }
- ],
- "doi:10.1016/j.techfore.2017.03.012": [
- {
- "family": "Edwards-Schachter",
- "given": "Mónica",
- "orcid": "0000-0002-9063-0916"
- }
- ],
- "doi:10.1016/j.techfore.2018.07.028": [
- {
- "family": "Certomà ",
- "given": "Chiara",
- "orcid": "0000-0002-7154-0915"
- }
- ],
- "doi:10.1016/j.techfore.2020.120377": [
- {
- "family": "Planells-Artigot",
- "given": "Enrique",
- "orcid": "0000-0002-0208-9948"
- },
- {
- "family": "MartÃ-Sánchez",
- "given": "Myriam",
- "orcid": "0000-0003-4344-4464"
- }
- ],
- "doi:10.1016/j.tifs.2019.01.011": [
- {
- "family": "Hu",
- "given": "Kai",
- "orcid": "0000-0002-3521-4178"
- },
- {
- "family": "Guo",
- "given": "Ya",
- "orcid": "0000-0002-8016-988X"
- }
- ],
- "doi:10.7250/bjrbe.2020-15.470": [
- {
- "family": "Zhou",
- "given": "Wei",
- "orcid": "0000-0002-0849-1524"
- },
- {
- "family": "Xu",
- "given": "Zeshui",
- "orcid": "0000-0003-3547-2908"
- },
- {
- "family": "Zavadskas",
- "given": "Edmundas Kazimieras",
- "orcid": "0000-0002-3201-949X"
- },
- {
- "family": "LaurinaviÄius",
- "given": "Alfredas",
- "orcid": "0000-0001-8520-0906"
- }
- ],
- "doi:10.1007/s11192-020-03805-x": [
- {
- "family": "De Santana",
- "given": "Mariana M. M.",
- "orcid": "0000-0002-5218-7140"
- },
- {
- "family": "Mariano-Neto",
- "given": "Eduardo",
- "orcid": "0000-0002-4204-0882"
- },
- {
- "family": "De Vasconcelos",
- "given": "Rodrigo N.",
- "orcid": "0000-0002-1368-6721"
- },
- {
- "family": "Dodonov",
- "given": "Pavel",
- "orcid": "0000-0001-8205-6320"
- },
- {
- "family": "Medeiros",
- "given": "José M. M.",
- "orcid": "0000-0002-2554-8289"
- }
- ],
- "doi:10.1016/j.scitotenv.2019.135358": [
- {
- "family": "Spano",
- "given": "Giuseppina",
- "orcid": "0000-0002-9565-460X"
- },
- {
- "family": "Giannico",
- "given": "Vincenzo",
- "orcid": "0000-0002-9907-3730"
- },
- {
- "family": "Elia",
- "given": "Mario",
- "orcid": "0000-0003-4382-2752"
- },
- {
- "family": "Lafortezza",
- "given": "Raffaele",
- "orcid": "0000-0003-4642-8435"
- }
- ],
- "doi:10.1016/j.scitotenv.2020.141344": [
- {
- "family": "Verrall",
- "given": "Brodie",
- "orcid": "0000-0003-1747-3309"
- }
- ],
- "doi:10.1016/j.ssci.2019.01.029": [
- {
- "family": "Modak",
- "given": "Nikunja Mohan",
- "orcid": "0000-0001-7646-5750"
- },
- {
- "family": "Boustras",
- "given": "Georgios",
- "orcid": "0000-0003-2133-9575"
- }
- ],
- "doi:10.1016/j.joi.2016.05.002": [
- {
- "family": "Guler",
- "given": "Arzu Tugce",
- "orcid": "0000-0002-6043-7824"
- }
- ],
- "doi:10.1016/j.joi.2016.07.008": [
- {
- "family": "Leydesdorff",
- "given": "Loet",
- "orcid": "0000-0002-7835-3098"
- }
- ],
- "doi:10.1016/j.joi.2019.100976": [
- {
- "family": "Vargas-Quesada",
- "given": "BenjamÃn",
- "orcid": "0000-0001-5115-7460"
- },
- {
- "family": "Chinchilla RodrÃguez",
- "given": "Zaida",
- "orcid": "0000-0002-1608-4478"
- }
- ],
- "doi:10.1016/j.buildenv.2018.12.059": [
- {
- "family": "Darko",
- "given": "Amos",
- "orcid": "0000-0002-7978-6039"
- }
- ],
- "doi:10.1016/j.carbpol.2018.10.039": [
- {
- "family": "Tchobanian",
- "given": "Armen",
- "orcid": "0000-0003-2910-3524"
- },
- {
- "family": "Fardim",
- "given": "Pedro",
- "orcid": "0000-0003-1545-3523"
- }
- ],
- "doi:10.1016/j.indmarman.2020.02.022": [
- {
- "family": "Linton",
- "given": "Gabriel",
- "orcid": "0000-0002-9517-1333"
- }
- ],
- "doi:10.1016/j.scitotenv.2020.141642": [
- {
- "family": "Sharifi",
- "given": "Ayyoob",
- "orcid": "0000-0002-8983-8613"
- }
- ],
- "doi:10.1016/j.cmpb.2019.105075": [
- {
- "family": "Lammers",
- "given": "Thorsten",
- "orcid": "0000-0003-1000-2395"
- }
- ],
- "doi:10.1016/j.aap.2018.06.010": [
- {
- "family": "Zou",
- "given": "Xin",
- "orcid": "0000-0002-8844-4866"
- }
- ],
- "doi:10.1016/j.aller.2020.01.001": [
- {
- "family": "Demir",
- "given": "E.",
- "orcid": "0000-0002-3834-3864"
- },
- {
- "family": "AkmeÅŸe",
- "given": "Ö.F.",
- "orcid": "0000-0002-5877-0177"
- },
- {
- "family": "Taylan-Özkan",
- "given": "A.",
- "orcid": "0000-0001-8421-3625"
- }
- ],
- "doi:10.1016/j.scs.2020.102608": [
- {
- "family": "Chà fer",
- "given": "Marta",
- "orcid": "0000-0001-6672-6806"
- },
- {
- "family": "Cabeza",
- "given": "Luisa F.",
- "orcid": "0000-0001-5086-872X"
- },
- {
- "family": "Tan",
- "given": "Chun Liang",
- "orcid": "0000-0002-6625-3591"
- }
- ],
- "doi:10.1016/j.joi.2018.03.005": [
- {
- "family": "Hua",
- "given": "Weina",
- "orcid": "0000-0001-5850-4461"
- }
- ],
- "doi:10.1016/j.foodchem.2019.05.021": [
- {
- "family": "Tsopmo",
- "given": "Apollinaire",
- "orcid": "0000-0002-7062-0833"
- }
- ],
- "doi:10.1016/j.fss.2020.03.012": [
- {
- "family": "Merigó",
- "given": "José M.",
- "orcid": "0000-0002-4672-6961"
- },
- {
- "family": "De Baets",
- "given": "Bernard",
- "orcid": "0000-0002-3876-620X"
- }
- ],
- "doi:10.1016/j.fuel.2019.116598": [
- {
- "family": "Liu",
- "given": "Hui",
- "orcid": "0000-0002-4265-7241"
- }
- ],
- "doi:10.1016/j.resconrec.2018.03.005": [
- {
- "family": "Ji",
- "given": "Ling",
- "orcid": "0000-0002-8259-3369"
- }
- ],
- "doi:10.1016/j.asoc.2018.03.041": [
- {
- "family": "Muhuri",
- "given": "Pranab K.",
- "orcid": "0000-0001-7122-7622"
- }
- ],
- "doi:10.1016/j.autcon.2019.02.022": [
- {
- "family": "Santos",
- "given": "Rúben",
- "orcid": "0000-0001-8300-1516"
- }
- ],
- "doi:10.1016/j.autcon.2020.103490": [
- {
- "family": "Shen",
- "given": "Shui-Long",
- "orcid": "0000-0002-5610-7988"
- },
- {
- "family": "Zhou",
- "given": "Annan",
- "orcid": "0000-0001-5209-5169"
- }
- ],
- "doi:10.1016/j.socscimed.2019.112552": [
- {
- "family": "Wang",
- "given": "Yuxi",
- "orcid": "0000-0002-9897-7316"
- },
- {
- "family": "Mckee",
- "given": "Martin",
- "orcid": "0000-0002-0121-9683"
- },
- {
- "family": "Torbica",
- "given": "Aleksandra",
- "orcid": "0000-0001-8938-7608"
- },
- {
- "family": "Stuckler",
- "given": "David",
- "orcid": "0000-0002-1288-8401"
- }
- ],
- "doi:10.1016/j.solener.2020.02.013": [
- {
- "family": "Boer",
- "given": "Dieter",
- "orcid": "0000-0002-5532-6409"
- }
- ],
- "doi:10.2147/jpr.s306594": [
- {
- "family": "Chen",
- "given": "Hao",
- "orcid": "0000-0002-9446-9066"
- },
- {
- "family": "Sun",
- "given": "Jianhua",
- "orcid": "0000-0002-3398-0346"
- }
- ],
- "doi:10.3390/ma14071745": [
- {
- "family": "Khan",
- "given": "Mehran",
- "orcid": "0000-0003-2898-1827"
- },
- {
- "family": "Smarzewski",
- "given": "Piotr",
- "orcid": "0000-0002-3230-4813"
- }
- ],
- "doi:10.3390/plants10040768": [
- {
- "family": "Vázquez-RamÃrez",
- "given": "Jerónimo",
- "orcid": "0000-0001-6421-5594"
- },
- {
- "family": "Venn",
- "given": "Susanna E.",
- "orcid": "0000-0002-7433-0120"
- }
- ],
- "doi:10.1155/2021/6634055": [
- {
- "family": "Huang",
- "given": "Xin",
- "orcid": "0000-0002-0893-7661"
- },
- {
- "family": "Deng",
- "given": "Jiayin",
- "orcid": "0000-0001-5856-1247"
- }
- ],
- "doi:10.1155/2021/6657167": [
- {
- "family": "Karobari",
- "given": "Mohmed Isaqali",
- "orcid": "0000-0002-0313-9695"
- },
- {
- "family": "Maqbool",
- "given": "Manahil",
- "orcid": "0000-0002-2203-1882"
- },
- {
- "family": "Ahmad",
- "given": "Paras",
- "orcid": "0000-0001-7306-9795"
- },
- {
- "family": "Abdul",
- "given": "Muqthadir Siddiqui Mohammed",
- "orcid": "0000-0001-7412-9083"
- },
- {
- "family": "Marya",
- "given": "Anand",
- "orcid": "0000-0003-2009-4393"
- },
- {
- "family": "Venugopal",
- "given": "Adith",
- "orcid": "0000-0002-7945-8799"
- },
- {
- "family": "Scardina",
- "given": "Giuseppe Alessandro",
- "orcid": "0000-0001-7305-530X"
- },
- {
- "family": "Messina",
- "given": "Pietro",
- "orcid": "0000-0001-7409-4474"
- },
- {
- "family": "Noorani",
- "given": "Tahir Yusuf",
- "orcid": "0000-0002-4661-7458"
- }
- ],
- "doi:10.1007/s10551-021-04856-7": [
- {
- "family": "Obregon",
- "given": "Sandra Leonara",
- "orcid": "0000-0002-7009-8774"
- },
- {
- "family": "Lopes",
- "given": "Luis Felipe Dias",
- "orcid": "0000-0002-2438-0226"
- },
- {
- "family": "Kaczam",
- "given": "Fabiola",
- "orcid": "0000-0002-0460-9927"
- }
- ],
- "doi:10.1016/j.ijggc.2021.103309": [
- {
- "family": "Vilanova",
- "given": "Mateus R.N.",
- "orcid": "0000-0002-3768-523X"
- }
- ],
- "doi:10.3390/en14144288": [
- {
- "family": "Bajdor",
- "given": "Paula",
- "orcid": "0000-0002-5628-5952"
- }
- ],
- "doi:10.1002/cjce.23913": [
- {
- "family": "Jehng",
- "given": "Jihâ€Mirn",
- "orcid": "0000-0001-6844-102X"
- },
- {
- "family": "Wachs",
- "given": "Israel E.",
- "orcid": "0000-0001-5282-128X"
- },
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- }
- ],
- "doi:10.1002/cjce.24216": [
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- }
- ],
- "doi:10.1108/dta-08-2020-0179": [
- {
- "family": "Basilio",
- "given": "Marcio Pereira",
- "orcid": "0000-0002-9453-741X"
- },
- {
- "family": "Pereira",
- "given": "Valdecy",
- "orcid": "0000-0003-0599-8888"
- },
- {
- "family": "De Oliveira",
- "given": "Max William Coelho Moreira",
- "orcid": "0000-0002-8788-9177"
- },
- {
- "family": "Da Costa Neto",
- "given": "Antonio Fernandes",
- "orcid": "0000-0002-6920-586X"
- },
- {
- "family": "Moraes",
- "given": "Orlinda Claudia Rosa De",
- "orcid": "0000-0003-4344-6574"
- }
- ],
- "doi:10.1007/s10660-021-09464-1": [
- {
- "family": "Kumar",
- "given": "Satish",
- "orcid": "0000-0001-5200-1476"
- }
- ],
- "doi:10.1016/j.jclepro.2021.126277": [
- {
- "family": "Piwowar-Sulej",
- "given": "Katarzyna",
- "orcid": "0000-0002-4627-4344"
- }
- ],
- "doi:10.1016/j.jclepro.2021.127503": [
- {
- "family": "Hussein",
- "given": "Mohamed",
- "orcid": "0000-0002-7153-9308"
- },
- {
- "family": "Karam",
- "given": "Ahmed",
- "orcid": "0000-0003-3750-0642"
- },
- {
- "family": "Shaban",
- "given": "Ibrahim A.",
- "orcid": "0000-0003-0834-0141"
- }
- ],
- "doi:10.3390/ijerph18147503": [
- {
- "family": "Kim",
- "given": "Ah-Ram",
- "orcid": "0000-0003-2726-5239"
- }
- ],
- "doi:10.1155/2021/5568219": [
- {
- "family": "Lai",
- "given": "Ning-Sheng",
- "orcid": "0000-0001-6853-7451"
- },
- {
- "family": "Lu",
- "given": "Ming-Chi",
- "orcid": "0000-0001-9051-0351"
- },
- {
- "family": "Chang",
- "given": "Hsiu-Hua",
- "orcid": "0000-0002-7683-0508"
- },
- {
- "family": "Lo",
- "given": "Hui-Chin",
- "orcid": "0000-0002-5112-0155"
- },
- {
- "family": "Hsu",
- "given": "Chia-Wen",
- "orcid": "0000-0001-5849-6094"
- },
- {
- "family": "Huang",
- "given": "Kuang-Yung",
- "orcid": "0000-0001-8399-6226"
- },
- {
- "family": "Tung",
- "given": "Chien-Hsueh",
- "orcid": "0000-0003-1234-6263"
- },
- {
- "family": "Hsu",
- "given": "Bao-Bao",
- "orcid": "0000-0002-6127-5273"
- },
- {
- "family": "Wu",
- "given": "Cheng-Han",
- "orcid": "0000-0001-9260-727X"
- },
- {
- "family": "Koo",
- "given": "Malcolm",
- "orcid": "0000-0002-9242-9167"
- }
- ],
- "doi:10.1080/13032917.2021.1954042": [
- {
- "family": "Ale Ebrahim",
- "given": "Nader",
- "orcid": "0000-0001-7091-4439"
- }
- ],
- "doi:10.1007/s43538-021-00016-7": [
- {
- "family": "Mishra",
- "given": "Preet",
- "orcid": "0000-0002-1840-7883"
- },
- {
- "family": "Babu",
- "given": "Suresh",
- "orcid": "0000-0002-3004-3066"
- },
- {
- "family": "Yadav",
- "given": "Gitanjali",
- "orcid": "0000-0001-6591-9964"
- }
- ],
- "doi:10.2196/31097": [
- {
- "family": "Cao",
- "given": "Jianfei",
- "orcid": "0000-0001-9452-2990"
- },
- {
- "family": "Lim",
- "given": "Yeongjoo",
- "orcid": "0000-0003-2740-5537"
- },
- {
- "family": "Sengoku",
- "given": "Shintaro",
- "orcid": "0000-0001-8008-3667"
- },
- {
- "family": "Guo",
- "given": "Xitong",
- "orcid": "0000-0002-9569-0299"
- },
- {
- "family": "Kodama",
- "given": "Kota",
- "orcid": "0000-0002-2360-2034"
- }
- ],
- "doi:10.3390/app11062767": [
- {
- "family": "Agnusdei",
- "given": "Giulio Paolo",
- "orcid": "0000-0002-4537-0780"
- },
- {
- "family": "Gnoni",
- "given": "Maria Grazia",
- "orcid": "0000-0001-7930-0556"
- }
- ],
- "doi:10.3390/app11073015": [
- {
- "family": "Reyes-Belmonte",
- "given": "Miguel Angel",
- "orcid": "0000-0002-9666-2388"
- }
- ],
- "doi:10.1590/1678-987320287607": [
- {
- "family": "Codato",
- "given": "Adriano",
- "orcid": "0000-0002-5015-4273"
- },
- {
- "family": "Lorencetti",
- "given": "Mariana",
- "orcid": "0000-0001-7110-6206"
- },
- {
- "family": "Bittencourt",
- "given": "Maiane",
- "orcid": "0000-0001-5591-9143"
- }
- ],
- "doi:10.1007/s12144-021-01947-6": [
- {
- "family": "Fazeli-Varzaneh",
- "given": "Mohsen",
- "orcid": "0000-0001-8614-8513"
- }
- ],
- "doi:10.4018/978-1-7998-7452-2.ch016": [
- {
- "family": "Gonzalez-Zamar",
- "given": "Mariana D.",
- "orcid": "0000-0003-1187-8970"
- },
- {
- "family": "Abad-Segura",
- "given": "Emilio",
- "orcid": "0000-0001-8624-103X"
- }
- ],
- "doi:10.1007/s11270-021-05224-x": [
- {
- "family": "Boloy",
- "given": "Ronney Arismel Mancebo",
- "orcid": "0000-0002-4774-8310"
- },
- {
- "family": "Da Cunha Reis",
- "given": "Augusto",
- "orcid": "0000-0002-3200-8096"
- },
- {
- "family": "Rios",
- "given": "Eyko Medeiros",
- "orcid": "0000-0002-6673-415X"
- },
- {
- "family": "De Araújo Santos Martins",
- "given": "JanaÃna",
- "orcid": "0000-0003-0412-9576"
- },
- {
- "family": "Soares",
- "given": "Laene Oliveira",
- "orcid": "0000-0001-8305-2831"
- },
- {
- "family": "De Sá Machado",
- "given": "Vanessa Aparecida",
- "orcid": "0000-0003-3427-3472"
- },
- {
- "family": "De Moraes",
- "given": "Danielle Rodrigues",
- "orcid": "0000-0001-8259-7020"
- }
- ],
- "doi:10.1371/journal.pone.0253847": [
- {
- "family": "Pfrieger",
- "given": "Frank W.",
- "orcid": "0000-0001-7085-1431"
- }
- ],
- "doi:10.1016/j.geoderma.2021.115076": [
- {
- "family": "Stevens",
- "given": "Carly",
- "orcid": "0000-0002-2390-1763"
- },
- {
- "family": "Quinton",
- "given": "John N",
- "orcid": "0000-0003-1746-4795"
- },
- {
- "family": "Boyko",
- "given": "Christopher",
- "orcid": "0000-0001-5642-5911"
- }
- ],
- "doi:10.1111/ejed.12446": [
- {
- "family": "Akbaritabar",
- "given": "Aliakbar",
- "orcid": "0000-0003-3828-1533"
- },
- {
- "family": "Barbato",
- "given": "Giovanni",
- "orcid": "0000-0002-4209-6464"
- }
- ],
- "doi:10.1080/00038628.2021.1910480": [
- {
- "family": "PektaÅŸ",
- "given": "Şule Taşlı",
- "orcid": "0000-0003-0596-6405"
- }
- ],
- "doi:10.1002/agj2.20628": [
- {
- "family": "Yuan",
- "given": "Baoâ€Zhong",
- "orcid": "0000-0003-2353-3873"
- }
- ],
- "doi:10.22394/2410-132x-2021-7-1-66-84": [
- {
- "family": "Lopez-Munoz",
- "given": "F.",
- "orcid": "0000-0002-5188-6038"
- },
- {
- "family": "Eremchenko",
- "given": "O. A.",
- "orcid": "0000-0001-5964-9080"
- },
- {
- "family": "Fernandez-Lopez",
- "given": "M. A.",
- "orcid": "0000-0003-2461-1693"
- },
- {
- "family": "Rodriguez-Sanchez",
- "given": "B.",
- "orcid": "0000-0002-6146-068X"
- },
- {
- "family": "Povedano-Montero",
- "given": "F. J.",
- "orcid": "0000-0002-9410-1720"
- }
- ],
- "doi:10.1016/j.heliyon.2021.e07154": [
- {
- "family": "Sitadewi",
- "given": "Dania",
- "orcid": "0000-0003-0091-6409"
- }
- ],
- "doi:10.3390/ijerph18084234": [
- {
- "family": "Scarr",
- "given": "Justin-Paul",
- "orcid": "0000-0002-6547-0703"
- }
- ],
- "doi:10.3390/molecules26133882": [
- {
- "family": "Goyzueta-Mamani",
- "given": "Luis Daniel",
- "orcid": "0000-0003-0308-1160"
- },
- {
- "family": "Barazorda-Ccahuana",
- "given": "Haruna Luz",
- "orcid": "0000-0001-8791-0506"
- },
- {
- "family": "Mena-Ulecia",
- "given": "Karel",
- "orcid": "0000-0001-6651-511X"
- }
- ],
- "doi:10.1016/j.jbusres.2021.06.045": [
- {
- "family": "Budler",
- "given": "Marko",
- "orcid": "0000-0001-6055-7714"
- },
- {
- "family": "ŽupiÄ",
- "given": "Ivan",
- "orcid": "0000-0003-4077-6199"
- }
- ],
- "doi:10.1590/1984-92302021v28n9604pt": [
- {
- "family": "Gomes Neto",
- "given": "Manoel Bastos",
- "orcid": "0000-0003-4400-5877"
- },
- {
- "family": "Silva",
- "given": "Lucas Emmanuel Nascimento",
- "orcid": "0000-0001-7767-1724"
- },
- {
- "family": "Lima",
- "given": "Sérgio Henrique De Oliveira",
- "orcid": "0000-0002-2738-4492"
- },
- {
- "family": "Grangeiro",
- "given": "Rebeca Da Rocha",
- "orcid": "0000-0002-9292-2648"
- }
- ],
- "doi:10.1177/1548051821997406": [
- {
- "family": "Bauwens",
- "given": "Robin",
- "orcid": "0000-0002-6894-3887"
- }
- ],
- "doi:10.1101/2021.07.23.453492": [
- {
- "family": "Maggio",
- "given": "Lauren A.",
- "orcid": "0000-0002-2997-6133"
- },
- {
- "family": "Ninkov",
- "given": "Anton",
- "orcid": "0000-0002-8276-7656"
- },
- {
- "family": "Frank",
- "given": "Jason R.",
- "orcid": "0000-0002-6076-0146"
- },
- {
- "family": "Costello",
- "given": "Joseph A.",
- "orcid": "0000-0002-0412-6562"
- },
- {
- "family": "Artino",
- "given": "Anthony R.",
- "orcid": "0000-0003-2661-7853"
- }
- ],
- "doi:10.3145/epi.2021.may.05": [
- {
- "family": "Segado-Boj",
- "given": "Francisco",
- "orcid": "0000-0001-7750-3755"
- },
- {
- "family": "Prieto-Gutiérrez",
- "given": "Juan-José",
- "orcid": "0000-0002-1730-8621"
- },
- {
- "family": "DÃaz-Campo",
- "given": "Jesús",
- "orcid": "0000-0001-5014-8749"
- }
- ],
- "doi:10.1038/s41545-021-00131-4": [
- {
- "family": "Goel",
- "given": "Gaurav",
- "orcid": "0000-0002-7656-1272"
- },
- {
- "family": "Hélix-Nielsen",
- "given": "Claus",
- "orcid": "0000-0002-9392-7133"
- },
- {
- "family": "Goel",
- "given": "Saurav",
- "orcid": "0000-0002-8694-332X"
- }
- ],
- "doi:10.1080/0194262x.2021.1937772": [
- {
- "family": "Sahoo",
- "given": "Sidhartha",
- "orcid": "0000-0003-1996-4857"
- },
- {
- "family": "Pandey",
- "given": "Shriram",
- "orcid": "0000-0002-1690-6603"
- }
- ],
- "doi:10.3390/agronomy11081504": [
- {
- "family": "Lopez-Fernandez",
- "given": "Matilde",
- "orcid": "0000-0002-6265-9834"
- },
- {
- "family": "Gimenez",
- "given": "Estela",
- "orcid": "0000-0002-7403-5279"
- }
- ],
- "doi:10.3390/agronomy11081557": [
- {
- "family": "Santana",
- "given": "Lucas Santos",
- "orcid": "0000-0001-7489-3225"
- },
- {
- "family": "Ferraz",
- "given": "Gabriel Araújo E Silva",
- "orcid": "0000-0001-6403-2210"
- },
- {
- "family": "Rossi",
- "given": "Giuseppe",
- "orcid": "0000-0003-0211-9294"
- },
- {
- "family": "Palchetti",
- "given": "Enrico",
- "orcid": "0000-0001-8815-1134"
- }
- ],
- "doi:10.3390/ijerph18105143": [
- {
- "family": "Ouyang",
- "given": "Yiran",
- "orcid": "0000-0002-0234-307X"
- }
- ],
- "doi:10.3390/ijerph18115851": [
- {
- "family": "Cascajares",
- "given": "Mila",
- "orcid": "0000-0002-2973-656X"
- },
- {
- "family": "Alcayde",
- "given": "Alfredo",
- "orcid": "0000-0002-2776-089X"
- },
- {
- "family": "Salmerón-Manzano",
- "given": "Esther",
- "orcid": "0000-0003-3019-3539"
- },
- {
- "family": "Manzano-Agugliaro",
- "given": "Francisco",
- "orcid": "0000-0002-0085-030X"
- }
- ],
- "doi:10.3390/ijerph18115985": [
- {
- "family": "Xue",
- "given": "Jie",
- "orcid": "0000-0002-4819-9886"
- },
- {
- "family": "Van Gelder",
- "given": "P.H.A.J.M.",
- "orcid": "0000-0002-0001-0351"
- }
- ],
- "doi:10.1080/10978526.2021.1930551": [
- {
- "family": "Cortés",
- "given": "Julián D.",
- "orcid": "0000-0002-1246-2160"
- }
- ],
- "doi:10.3390/educsci11040184": [
- {
- "family": "González-Zamar",
- "given": "Mariana-Daniela",
- "orcid": "0000-0003-1187-8970"
- },
- {
- "family": "Abad-Segura",
- "given": "Emilio",
- "orcid": "0000-0001-8624-103X"
- }
- ],
- "doi:10.3390/ijerph18147358": [
- {
- "family": "Shi",
- "given": "Dongping",
- "orcid": "0000-0001-8332-5289"
- },
- {
- "family": "Wang",
- "given": "Jinmiao",
- "orcid": "0000-0002-7587-5763"
- }
- ],
- "doi:10.3390/recycling6020034": [
- {
- "family": "Kabirifar",
- "given": "Kamyar",
- "orcid": "0000-0003-2899-4361"
- },
- {
- "family": "Mojtahedi",
- "given": "Mohammad",
- "orcid": "0000-0001-6942-0650"
- },
- {
- "family": "Wang",
- "given": "Cynthia Changxin",
- "orcid": "0000-0001-6414-3228"
- }
- ],
- "doi:10.1016/j.jenvman.2021.112335": [
- {
- "family": "Anandh",
- "given": "Gurunathan",
- "orcid": "0000-0002-2878-2628"
- },
- {
- "family": "Prasannavenkatesan",
- "given": "Shanmugam",
- "orcid": "0000-0003-1388-8873"
- }
- ],
- "doi:10.1186/s12906-021-03354-7": [
- {
- "family": "Ng",
- "given": "Jeremy Y.",
- "orcid": "0000-0003-0031-5873"
- }
- ],
- "doi:10.1016/j.ijdrr.2021.102141": [
- {
- "family": "Kim",
- "given": "Byeong Je",
- "orcid": "0000-0002-9149-0708"
- },
- {
- "family": "Jeong",
- "given": "Seunghoo",
- "orcid": "0000-0003-2594-3710"
- },
- {
- "family": "Chung",
- "given": "Ji-Bum",
- "orcid": "0000-0003-2388-9917"
- }
- ],
- "doi:10.1080/09537325.2020.1865530": [
- {
- "family": "Furstenau",
- "given": "Leonardo Bertolin",
- "orcid": "0000-0001-8984-7774"
- },
- {
- "family": "Sott",
- "given": "Michele Kremer",
- "orcid": "0000-0002-7428-3993"
- },
- {
- "family": "Kipper",
- "given": "Liane Mahlmann",
- "orcid": "0000-0002-4147-892X"
- },
- {
- "family": "López-Robles",
- "given": "José Ricardo",
- "orcid": "0000-0003-3780-1955"
- },
- {
- "family": "Cobo",
- "given": "Manuel J.",
- "orcid": "0000-0001-6575-803X"
- }
- ],
- "doi:10.1111/1758-5899.12912": [
- {
- "family": "Sianes",
- "given": "Antonio",
- "orcid": "0000-0001-6861-9473"
- }
- ],
- "doi:10.1111/jpim.12562": [
- {
- "family": "Appio",
- "given": "Francesco Paolo",
- "orcid": "0000-0003-4586-6193"
- },
- {
- "family": "Frattini",
- "given": "Federico",
- "orcid": "0000-0001-5100-3605"
- },
- {
- "family": "Petruzzelli",
- "given": "Antonio Messeni",
- "orcid": "0000-0002-6852-5167"
- },
- {
- "family": "Neirotti",
- "given": "Paolo",
- "orcid": "0000-0003-2669-7072"
- }
- ],
- "doi:10.3390/ijerph18116135": [
- {
- "family": "Othman",
- "given": "Idris",
- "orcid": "0000-0001-6822-8122"
- },
- {
- "family": "Pomares",
- "given": "Juan Carlos",
- "orcid": "0000-0002-6773-9112"
- }
- ],
- "doi:10.1007/s11192-019-03222-9": [
- {
- "family": "Omar",
- "given": "Muhammad",
- "orcid": "0000-0002-7071-5760"
- }
- ],
- "doi:10.1007/s11192-019-03230-9": [
- {
- "family": "Calero-Medina",
- "given": "Clara",
- "orcid": "0000-0001-8736-6571"
- }
- ],
- "doi:10.1007/s11192-019-03234-5": [
- {
- "family": "Ospina-Mateus",
- "given": "Holman",
- "orcid": "0000-0002-2385-774X"
- }
- ],
- "doi:10.1007/s11192-019-03238-1": [
- {
- "family": "Liu",
- "given": "Weishu",
- "orcid": "0000-0001-8780-6709"
- }
- ],
- "doi:10.1007/s10098-018-1624-1": [
- {
- "family": "Amirbagheri",
- "given": "Keivan",
- "orcid": "0000-0001-7708-583X"
- }
- ],
- "doi:10.1155/2018/2607618": [
- {
- "family": "Brandão",
- "given": "André Luiz",
- "orcid": "0000-0002-9179-0495"
- }
- ],
- "doi:10.1093/reseval/rvz015": [
- {
- "family": "Hecking",
- "given": "Tobias",
- "orcid": "0000-0003-0833-7989"
- },
- {
- "family": "Leydesdorff",
- "given": "Loet",
- "orcid": "0000-0002-7835-3098"
- }
- ],
- "doi:10.1007/s10961-017-9637-1": [
- {
- "family": "Skute",
- "given": "Igors",
- "orcid": "0000-0001-7078-1736"
- }
- ],
- "doi:10.1111/pirs.12291": [
- {
- "family": "GarcÃa-Lillo",
- "given": "Francisco",
- "orcid": "0000-0001-7090-5540"
- }
- ],
- "doi:10.1111/rec.12899": [
- {
- "family": "Liu",
- "given": "Junguo",
- "orcid": "0000-0002-5745-6311"
- }
- ],
- "doi:10.1080/08874417.2019.1601538": [
- {
- "family": "Hew",
- "given": "Jun-Jie",
- "orcid": "0000-0003-4957-1050"
- },
- {
- "family": "Lee",
- "given": "Voon-Hsien",
- "orcid": "0000-0002-8723-8219"
- },
- {
- "family": "Ooi",
- "given": "Keng-Boon",
- "orcid": "0000-0002-3384-1207"
- },
- {
- "family": "Lin",
- "given": "Binshan",
- "orcid": "0000-0002-8481-302X"
- }
- ],
- "doi:10.1177/0165551519837182": [
- {
- "family": "Gregory",
- "given": "Kathleen M",
- "orcid": "0000-0001-5475-8632"
- },
- {
- "family": "Groth",
- "given": "Paul",
- "orcid": "0000-0003-0183-6910"
- }
- ],
- "doi:10.12688/f1000research.12314.1": [
- {
- "family": "Hernández-Vásquez",
- "given": "Akram",
- "orcid": "0000-0003-1431-2526"
- },
- {
- "family": "Rosselli",
- "given": "Diego",
- "orcid": "0000-0003-0960-9480"
- }
- ],
- "doi:10.1017/s003329171800363x": [
- {
- "family": "Siegle",
- "given": "Greg J.",
- "orcid": "0000-0002-1420-8975"
- },
- {
- "family": "Strege",
- "given": "Marlene",
- "orcid": "0000-0002-4105-7279"
- }
- ],
- "doi:10.7717/peerj.2567": [
- {
- "family": "Zacarias",
- "given": "Daniel",
- "orcid": "0000-0002-9617-0535"
- }
- ],
- "doi:10.1002/pri.1760": [
- {
- "family": "Benton",
- "given": "Andrew D.",
- "orcid": "0000-0002-6759-9092"
- },
- {
- "family": "Benton",
- "given": "David C.",
- "orcid": "0000-0001-8418-8618"
- }
- ],
- "doi:10.1007/s10457-017-0107-4": [
- {
- "family": "Ota",
- "given": "Liz",
- "orcid": "0000-0002-3967-6062"
- }
- ],
- "doi:10.1007/s10457-018-0231-9": [
- {
- "family": "Leal",
- "given": "Ana I.",
- "orcid": "0000-0002-8996-4599"
- },
- {
- "family": "Correia",
- "given": "Ricardo A.",
- "orcid": "0000-0001-7359-9091"
- },
- {
- "family": "Palmeirim",
- "given": "Jorge M.",
- "orcid": "0000-0003-4734-8162"
- },
- {
- "family": "Bugalho",
- "given": "Miguel N.",
- "orcid": "0000-0002-7081-657X"
- }
- ],
- "doi:10.1177/2059204318811786": [
- {
- "family": "Anglada-Tort",
- "given": "Manuel",
- "orcid": "0000-0003-3421-9361"
- }
- ],
- "doi:10.1007/s12053-016-9470-7": [
- {
- "family": "Barbieri",
- "given": "Nicolò",
- "orcid": "0000-0002-8332-9826"
- }
- ],
- "doi:10.1007/s12078-018-9243-0": [
- {
- "family": "Yeung",
- "given": "Andy Wai Kan",
- "orcid": "0000-0003-3672-357X"
- }
- ],
- "doi:10.1007/s12145-019-00408-w": [
- {
- "family": "Kaur",
- "given": "Amandeep",
- "orcid": "0000-0002-2006-5923"
- }
- ],
- "doi:10.1007/978-3-319-91473-2_1": [
- {
- "family": "Alonso",
- "given": "Jose M.",
- "orcid": "0000-0003-3673-421X"
- },
- {
- "family": "Castiello",
- "given": "Ciro",
- "orcid": "0000-0002-8471-5403"
- },
- {
- "family": "Mencar",
- "given": "Corrado",
- "orcid": "0000-0001-8712-023X"
- }
- ],
- "doi:10.3390/en11071894": [
- {
- "family": "Manzano-Agugliaro",
- "given": "Francisco",
- "orcid": "0000-0002-0085-030X"
- }
- ],
- "doi:10.3390/en12081414": [
- {
- "family": "Rychtáriková",
- "given": "Monika",
- "orcid": "0000-0001-5678-7218"
- }
- ],
- "doi:10.3390/en12081539": [
- {
- "family": "Hu",
- "given": "Ming",
- "orcid": "0000-0003-2583-1161"
- }
- ],
- "doi:10.3390/f10010072": [
- {
- "family": "Uribe-Toril",
- "given": "Juan",
- "orcid": "0000-0002-0227-801X"
- }
- ],
- "doi:10.3390/f9040223": [
- {
- "family": "Haruthaithanasan",
- "given": "Maliwan",
- "orcid": "0000-0001-5178-3891"
- }
- ],
- "doi:10.1002/cjce.23344": [
- {
- "family": "Gomes",
- "given": "Anderson J.",
- "orcid": "0000-0003-2734-0892"
- },
- {
- "family": "Lunardi",
- "given": "Claure N.",
- "orcid": "0000-0001-8712-4417"
- },
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- }
- ],
- "doi:10.1002/cjce.23346": [
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- }
- ],
- "doi:10.1002/cjce.23466": [
- {
- "family": "Perreault",
- "given": "Patrice",
- "orcid": "0000-0002-9392-2113"
- },
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- }
- ],
- "doi:10.1002/cjce.23530": [
- {
- "family": "Galli",
- "given": "Federico",
- "orcid": "0000-0002-6230-4646"
- }
- ],
- "doi:10.1080/23311975.2019.1632569": [
- {
- "family": "Andrade-Valbuena",
- "given": "Nelson A.",
- "orcid": "0000-0002-4873-8915"
- }
- ],
- "doi:10.1111/jan.13868": [
- {
- "family": "Giménezâ€Espert",
- "given": "MarÃa Del Carmen",
- "orcid": "0000-0002-2095-8836"
- },
- {
- "family": "Pradoâ€Gascó",
- "given": "Vicente Javier",
- "orcid": "0000-0002-2108-2186"
- }
- ],
- "doi:10.1007/s10995-019-02772-x": [
- {
- "family": "Visser",
- "given": "Laura",
- "orcid": "0000-0001-7670-9305"
- }
- ],
- "doi:10.1371/journal.pone.0196549": [
- {
- "family": "Scheringer",
- "given": "Martin",
- "orcid": "0000-0002-0809-7826"
- }
- ],
- "doi:10.1371/journal.pone.0200929": [
- {
- "family": "Zou",
- "given": "Yawen",
- "orcid": "0000-0002-7351-5246"
- }
- ],
- "doi:10.3390/admsci8030034": [
- {
- "family": "Mora-ValentÃn",
- "given": "Eva-MarÃa",
- "orcid": "0000-0002-7330-0667"
- }
- ],
- "doi:10.1007/s10902-018-0022-z": [
- {
- "family": "VerbiÄ",
- "given": "Miroslav",
- "orcid": "0000-0001-5506-0973"
- }
- ],
- "doi:10.1177/0002764218766581": [
- {
- "family": "DÃez-MartÃn",
- "given": "Francisco",
- "orcid": "0000-0002-9888-833X"
- },
- {
- "family": "Prado-Román",
- "given": "Camilo",
- "orcid": "0000-0002-1540-0643"
- }
- ],
- "doi:10.1007/s00170-018-2617-2": [
- {
- "family": "Zancul",
- "given": "Eduardo",
- "orcid": "0000-0001-8361-0637"
- }
- ],
- "doi:10.1002/sdr.1628": [
- {
- "family": "Torres",
- "given": "Juan P.",
- "orcid": "0000-0001-7622-2038"
- }
- ],
- "doi:10.1002/sd.1927": [
- {
- "family": "GarcÃa-Berná",
- "given": "José A.",
- "orcid": "0000-0002-9526-8565"
- },
- {
- "family": "Fernández-Alemán",
- "given": "José L.",
- "orcid": "0000-0002-0176-450X"
- },
- {
- "family": "Carrillo De Gea",
- "given": "Juan M.",
- "orcid": "0000-0002-3320-622X"
- },
- {
- "family": "Nicolás",
- "given": "JoaquÃn",
- "orcid": "0000-0003-1760-3804"
- },
- {
- "family": "Moros",
- "given": "Begoña",
- "orcid": "0000-0002-3092-7654"
- },
- {
- "family": "Toval",
- "given": "Ambrosio",
- "orcid": "0000-0002-8273-5937"
- },
- {
- "family": "Mancebo",
- "given": "Javier",
- "orcid": "0000-0001-9473-6710"
- },
- {
- "family": "GarcÃa",
- "given": "Félix",
- "orcid": "0000-0001-6460-0353"
- },
- {
- "family": "Calero",
- "given": "Coral",
- "orcid": "0000-0003-0728-4176"
- }
- ],
- "doi:10.1017/dmp.2015.58": [
- {
- "family": "Hossain",
- "given": "Liaquat",
- "orcid": "0000-0002-7616-9182"
- }
- ],
- "doi:10.1007/s10669-018-9687-4": [
- {
- "family": "Di Matteo",
- "given": "Giovanni",
- "orcid": "0000-0002-5310-6509"
- }
- ],
- "doi:10.1007/s10676-018-9457-5": [
- {
- "family": "Mahieu",
- "given": "René",
- "orcid": "0000-0003-4017-098X"
- }
- ],
- "doi:10.1080/1540496x.2018.1433658": [
- {
- "family": "Zamore",
- "given": "Stephen",
- "orcid": "0000-0002-2362-5981"
- },
- {
- "family": "Alon",
- "given": "Ilan",
- "orcid": "0000-0002-6927-593X"
- },
- {
- "family": "Hobdari",
- "given": "Bersant",
- "orcid": "0000-0001-8653-4916"
- }
- ],
- "doi:10.1080/15440478.2019.1636742": [
- {
- "family": "Stopar",
- "given": "Karmen",
- "orcid": "0000-0003-0853-3031"
- },
- {
- "family": "Mackiewicz-Talarczyk",
- "given": "Maria",
- "orcid": "0000-0001-7232-2111"
- },
- {
- "family": "Bartol",
- "given": "Tomaž",
- "orcid": "0000-0001-7320-2314"
- }
- ],
- "doi:10.1007/s11575-016-0308-5": [
- {
- "family": "GarcÃa-Lillo",
- "given": "Francisco",
- "orcid": "0000-0001-7090-5540"
- }
- ],
- "doi:10.3390/nu11061357": [
- {
- "family": "Scoditti",
- "given": "Egeria",
- "orcid": "0000-0003-2753-8487"
- },
- {
- "family": "Garbarino",
- "given": "Sergio",
- "orcid": "0000-0002-8508-552X"
- }
- ],
- "doi:10.1186/s11671-019-2994-y": [
- {
- "family": "Zamani Pedram",
- "given": "Maysam",
- "orcid": "0000-0002-4696-1419"
- }
- ],
- "doi:10.1080/07294360.2019.1654438": [
- {
- "family": "Liu",
- "given": "Shengbo",
- "orcid": "0000-0002-0163-1213"
- }
- ],
- "doi:10.1007/s00217-019-03321-0": [
- {
- "family": "Antonucci",
- "given": "Francesca",
- "orcid": "0000-0002-8584-6018"
- },
- {
- "family": "Pallottino",
- "given": "Federico",
- "orcid": "0000-0003-2035-1257"
- },
- {
- "family": "Figorilli",
- "given": "Simone",
- "orcid": "0000-0003-4035-4199"
- },
- {
- "family": "Costa",
- "given": "Corrado",
- "orcid": "0000-0003-3711-1399"
- }
- ],
- "doi:10.1186/s41182-017-0073-6": [
- {
- "family": "Palmblad",
- "given": "Magnus",
- "orcid": "0000-0002-5865-8994"
- }
- ],
- "doi:10.1186/s41205-017-0012-5": [
- {
- "family": "Chepelev",
- "given": "Leonid",
- "orcid": "0000-0001-7010-3812"
- }
- ],
- "doi:10.1186/s41239-018-0101-6": [
- {
- "family": "Lundin",
- "given": "Mona",
- "orcid": "0000-0002-8072-5786"
- }
- ],
- "doi:10.1186/s41239-018-0103-4": [
- {
- "family": "Tibaná-Herrera",
- "given": "Gerardo",
- "orcid": "0000-0003-2056-7605"
- }
- ],
- "doi:10.1186/s42238-019-0004-y": [
- {
- "family": "Atanasov",
- "given": "Atanas G.",
- "orcid": "0000-0003-2545-0967"
- }
- ],
- "doi:10.1057/s41599-018-0175-8": [
- {
- "family": "Youngblood",
- "given": "Mason",
- "orcid": "0000-0003-2123-1716"
- }
- ],
- "doi:10.1061/(asce)co.1943-7862.0001492": [
- {
- "family": "Hosseini",
- "given": "M. Reza",
- "orcid": "0000-0001-8675-736X"
- }
- ],
- "doi:10.1061/(asce)co.1943-7862.0001682": [
- {
- "family": "Jin",
- "given": "Ruoyu",
- "orcid": "0000-0003-0360-6967"
- }
- ],
- "doi:10.1061/(asce)ei.1943-5541.0000425": [
- {
- "family": "Xu",
- "given": "Yidong",
- "orcid": "0000-0003-3756-032X"
- }
- ],
- "doi:10.1061/(asce)me.1943-5479.0000722": [
- {
- "family": "Nikolova",
- "given": "Natalia",
- "orcid": "0000-0001-5916-3822"
- }
- ],
- "doi:10.1007/s11301-018-0140-z": [
- {
- "family": "Röhm",
- "given": "Patrick",
- "orcid": "0000-0003-4781-7053"
- }
- ],
- "doi:10.1007/s11301-019-00172-7": [
- {
- "family": "Hofmann",
- "given": "Erik",
- "orcid": "0000-0001-6688-1961"
- }
- ],
- "doi:10.3390/antibiotics7040102": [
- {
- "family": "Ramirez-Malule",
- "given": "Howard",
- "orcid": "0000-0003-1013-5809"
- }
- ],
- "doi:10.1177/1477153519857788": [
- {
- "family": "Chen",
- "given": "Qw",
- "orcid": "0000-0002-5458-0210"
- }
- ],
- "doi:10.1590/2318-08892018000300001": [
- {
- "family": "Galvez",
- "given": "Carmen",
- "orcid": "0000-0001-7454-1254"
- }
- ],
- "doi:10.1590/2318-0889201931e190027": [
- {
- "family": "Gouveia",
- "given": "Fabio Castro",
- "orcid": "0000-0002-0082-2392"
- }
- ],
- "doi:10.3897/rio.2.e9841": [
- {
- "family": "Irawan",
- "given": "Dasapta",
- "orcid": "0000-0002-1526-0863"
- }
- ],
- "doi:10.3897/rio.5.e35820": [
- {
- "family": "Rasberry",
- "given": "Lane",
- "orcid": "0000-0002-9485-6146"
- },
- {
- "family": "Willighagen",
- "given": "Egon",
- "orcid": "0000-0001-7542-0286"
- },
- {
- "family": "Nielsen",
- "given": "Finn",
- "orcid": "0000-0001-6128-3356"
- },
- {
- "family": "Mietchen",
- "given": "Daniel",
- "orcid": "0000-0001-9488-1870"
- }
- ],
- "doi:10.1007/s00484-019-01695-0": [
- {
- "family": "Vecellio",
- "given": "Daniel J.",
- "orcid": "0000-0001-9431-0744"
- }
- ],
- "doi:10.1007/s00500-018-3168-z": [
- {
- "family": "Merigó",
- "given": "José M.",
- "orcid": "0000-0002-4672-6961"
- },
- {
- "family": "Cobo",
- "given": "Manuel J.",
- "orcid": "0000-0001-6575-803X"
- }
- ],
- "doi:10.1002/csr.1792": [
- {
- "family": "Ferramosca",
- "given": "Silvia",
- "orcid": "0000-0003-3392-8932"
- },
- {
- "family": "Verona",
- "given": "Roberto",
- "orcid": "0000-0003-2670-5490"
- }
- ],
- "doi:10.1002/rra.3431": [
- {
- "family": "Wang",
- "given": "Jun",
- "orcid": "0000-0003-2481-1409"
- }
- ],
- "doi:10.1111/petr.12933": [
- {
- "family": "Horslen",
- "given": "Simon",
- "orcid": "0000-0001-5949-7363"
- }
- ],
- "doi:10.2196/12625": [
- {
- "family": "Shen",
- "given": "Lining",
- "orcid": "0000-0002-7311-8777"
- },
- {
- "family": "Wang",
- "given": "Shimin",
- "orcid": "0000-0003-4247-6317"
- },
- {
- "family": "Dai",
- "given": "Wei",
- "orcid": "0000-0001-5090-8832"
- },
- {
- "family": "Zhang",
- "given": "Zhiguo",
- "orcid": "0000-0002-5081-4382"
- }
- ],
- "doi:10.2196/14401": [
- {
- "family": "Tran",
- "given": "Bach Xuan",
- "orcid": "0000-0001-7827-8449"
- },
- {
- "family": "Latkin",
- "given": "Carl A",
- "orcid": "0000-0002-7931-2116"
- },
- {
- "family": "Sharafeldin",
- "given": "Noha",
- "orcid": "0000-0001-8835-8899"
- },
- {
- "family": "Nguyen",
- "given": "Katherina",
- "orcid": "0000-0002-6186-3374"
- },
- {
- "family": "Vu",
- "given": "Giang Thu",
- "orcid": "0000-0002-3470-4458"
- },
- {
- "family": "Tam",
- "given": "Wilson W S",
- "orcid": "0000-0003-0641-3060"
- },
- {
- "family": "Cheung",
- "given": "Ngai-Man",
- "orcid": "0000-0003-0135-3791"
- },
- {
- "family": "Nguyen",
- "given": "Huong Lan Thi",
- "orcid": "0000-0003-2458-1666"
- },
- {
- "family": "Ho",
- "given": "Cyrus S H",
- "orcid": "0000-0002-7092-9566"
- },
- {
- "family": "Ho",
- "given": "Roger C M",
- "orcid": "0000-0001-9629-4493"
- }
- ],
- "doi:10.1080/10941665.2019.1567564": [
- {
- "family": "Köseoglu",
- "given": "Mehmet Ali",
- "orcid": "0000-0001-9369-1995"
- },
- {
- "family": "King",
- "given": "Brian",
- "orcid": "0000-0002-5300-5564"
- }
- ],
- "doi:10.1080/10963758.2019.1655433": [
- {
- "family": "Köseoglu",
- "given": "Mehmet Ali",
- "orcid": "0000-0001-9369-1995"
- },
- {
- "family": "King",
- "given": "Brian",
- "orcid": "0000-0002-5300-5564"
- }
- ],
- "doi:10.1080/00131911.2019.1566212": [
- {
- "family": "Yang",
- "given": "Chao",
- "orcid": "0000-0002-0607-9552"
- }
- ],
- "doi:10.3390/ijerph16010029": [
- {
- "family": "Wu",
- "given": "Jidong",
- "orcid": "0000-0001-8208-8373"
- }
- ],
- "doi:10.3390/ijerph16111928": [
- {
- "family": "Garrido-Cardenas",
- "given": "José Antonio",
- "orcid": "0000-0002-2785-0027"
- },
- {
- "family": "Manzano-Agugliaro",
- "given": "Francisco",
- "orcid": "0000-0002-0085-030X"
- }
- ],
- "doi:10.3390/ijerph16152788": [
- {
- "family": "Si",
- "given": "Hongyun",
- "orcid": "0000-0003-2367-4756"
- },
- {
- "family": "Duan",
- "given": "Kaifeng",
- "orcid": "0000-0002-0410-219X"
- }
- ],
- "doi:10.1007/s41233-021-00047-4": [
- {
- "family": "Roto",
- "given": "Virpi",
- "orcid": "0000-0002-6880-5636"
- },
- {
- "family": "Bragge",
- "given": "Johanna",
- "orcid": "0000-0002-4084-3104"
- }
- ],
- "doi:10.1108/ecam-04-2021-0287": [
- {
- "family": "Qureshi",
- "given": "Abdul Hannan",
- "orcid": "0000-0001-6392-6108"
- }
- ],
- "doi:10.3390/agriculture11090889": [
- {
- "family": "Durazzo",
- "given": "Alessandra",
- "orcid": "0000-0002-7747-9107"
- },
- {
- "family": "Souto",
- "given": "Eliana B.",
- "orcid": "0000-0002-9737-6017"
- },
- {
- "family": "Lombardi-Boccia",
- "given": "Ginevra",
- "orcid": "0000-0002-0944-2679"
- },
- {
- "family": "Santini",
- "given": "Antonello",
- "orcid": "0000-0001-5505-3327"
- }
- ],
- "doi:10.1155/2021/9274918": [
- {
- "family": "Shi",
- "given": "Dongping",
- "orcid": "0000-0001-8332-5289"
- },
- {
- "family": "Xie",
- "given": "Chengyu",
- "orcid": "0000-0001-8821-3438"
- }
- ],
- "doi:10.1007/s00296-021-04988-z": [
- {
- "family": "Kocyigit",
- "given": "Burhan Fatih",
- "orcid": "0000-0002-6065-8002"
- },
- {
- "family": "Akyol",
- "given": "Ahmet",
- "orcid": "0000-0002-8953-5196"
- }
- ],
- "doi:10.1021/acs.analchem.9b05454": [
- {
- "family": "Kuo",
- "given": "Ting-Hao",
- "orcid": "0000-0001-5130-0570"
- },
- {
- "family": "Dutkiewicz",
- "given": "Ewelina P.",
- "orcid": "0000-0002-8852-4188"
- },
- {
- "family": "Hsu",
- "given": "Cheng-Chih",
- "orcid": "0000-0002-2892-5326"
- }
- ],
- "doi:10.1002/adom.202100519": [
- {
- "family": "Wang",
- "given": "Zhen",
- "orcid": "0000-0002-0331-8271"
- },
- {
- "family": "Chan",
- "given": "Chun Lam Clement",
- "orcid": "0000-0002-5812-8440"
- },
- {
- "family": "Zhao",
- "given": "Tianheng H.",
- "orcid": "0000-0002-2705-0329"
- },
- {
- "family": "Parker",
- "given": "Richard M.",
- "orcid": "0000-0002-4096-9161"
- },
- {
- "family": "Vignolini",
- "given": "Silvia",
- "orcid": "0000-0003-0664-1418"
- }
- ],
- "doi:10.1016/j.jpurol.2021.08.003": [
- {
- "family": "Matta",
- "given": "Rano",
- "orcid": "0000-0002-1414-4991"
- }
- ],
- "doi:10.3390/economies9030110": [
- {
- "family": "Majerova",
- "given": "Ingrid",
- "orcid": "0000-0002-0835-9128"
- }
- ],
- "doi:10.3390/su13168997": [
- {
- "family": "Abideen",
- "given": "Ahmed Zainul",
- "orcid": "0000-0003-0281-0982"
- },
- {
- "family": "Sorooshian",
- "given": "Shahryar",
- "orcid": "0000-0001-5336-827X"
- }
- ],
- "doi:10.1080/14778238.2021.1943553": [
- {
- "family": "Sharma",
- "given": "Shubham",
- "orcid": "0000-0001-9672-7084"
- },
- {
- "family": "Lenka",
- "given": "Usha",
- "orcid": "0000-0003-4728-0559"
- }
- ],
- "doi:10.1111/sms.14019": [
- {
- "family": "Kirkendall",
- "given": "Donald T.",
- "orcid": "0000-0003-0457-5672"
- },
- {
- "family": "Krustrup",
- "given": "Peter",
- "orcid": "0000-0002-1461-9838"
- }
- ],
- "doi:10.1136/bmjspcare-2021-002982": [
- {
- "family": "Abu-Odah",
- "given": "Hammoda",
- "orcid": "0000-0002-8874-2599"
- },
- {
- "family": "Molassiotis",
- "given": "Alex",
- "orcid": "0000-0001-6351-9991"
- }
- ],
- "doi:10.3390/membranes11080600": [
- {
- "family": "Ayub",
- "given": "Muhammad",
- "orcid": "0000-0001-7814-0677"
- },
- {
- "family": "Kadir",
- "given": "Siti Hamimah Sheikh Abdul",
- "orcid": "0000-0002-1671-4839"
- },
- {
- "family": "Ali",
- "given": "Adnan",
- "orcid": "0000-0003-4051-3153"
- }
- ],
- "doi:10.1002/jclp.23227": [
- {
- "family": "Mckay",
- "given": "Dean",
- "orcid": "0000-0003-1158-5043"
- }
- ],
- "doi:10.1007/978-981-16-4760-4_1": [
- {
- "family": "Andrei",
- "given": "Jean-Vasile",
- "orcid": "0000-0002-8332-6537"
- },
- {
- "family": "Constantin",
- "given": "Marius",
- "orcid": "0000-0003-1749-9832"
- },
- {
- "family": "De Los RÃos Carmenado",
- "given": "Ignacio",
- "orcid": "0000-0003-2015-8983"
- }
- ],
- "doi:10.1186/s12302-021-00552-5": [
- {
- "family": "Leal Filho",
- "given": "Walter",
- "orcid": "0000-0002-1241-5225"
- },
- {
- "family": "Sima",
- "given": "Mihaela",
- "orcid": "0000-0002-2069-3639"
- },
- {
- "family": "Sharifi",
- "given": "Ayyoob",
- "orcid": "0000-0002-8983-8613"
- },
- {
- "family": "Luetz",
- "given": "Johannes M.",
- "orcid": "0000-0002-9017-4471"
- },
- {
- "family": "Salvia",
- "given": "Amanda Lange",
- "orcid": "0000-0002-4549-7685"
- },
- {
- "family": "Olooto",
- "given": "Felicia Motunrayo",
- "orcid": "0000-0003-4882-9726"
- },
- {
- "family": "Djekic",
- "given": "Ilija",
- "orcid": "0000-0002-8132-8299"
- },
- {
- "family": "Anholon",
- "given": "Rosley",
- "orcid": "0000-0003-3163-6119"
- },
- {
- "family": "Rampasso",
- "given": "Izabela",
- "orcid": "0000-0003-1633-6628"
- },
- {
- "family": "Kwabena Donkor",
- "given": "Felix",
- "orcid": "0000-0001-8353-8313"
- },
- {
- "family": "Dinis",
- "given": "Maria Alzira Pimenta",
- "orcid": "0000-0002-2198-6740"
- },
- {
- "family": "Klavins",
- "given": "Maris",
- "orcid": "0000-0002-4088-9348"
- },
- {
- "family": "Finnveden",
- "given": "Göran",
- "orcid": "0000-0002-5600-0726"
- },
- {
- "family": "Chari",
- "given": "Martin Munashe",
- "orcid": "0000-0001-5454-8141"
- },
- {
- "family": "Molthan-Hill",
- "given": "Petra",
- "orcid": "0000-0002-4425-1800"
- },
- {
- "family": "Sen",
- "given": "Salil K.",
- "orcid": "0000-0003-0051-0054"
- },
- {
- "family": "Lokupitiya",
- "given": "Erandathie",
- "orcid": "0000-0001-5085-3288"
- }
- ],
- "doi:10.3390/su131810094": [
- {
- "family": "Bran",
- "given": "Ramona",
- "orcid": "0000-0002-1953-1923"
- }
- ],
- "doi:10.1016/j.techsoc.2021.101738": [
- {
- "family": "Pizzi",
- "given": "Simone",
- "orcid": "0000-0001-5870-5466"
- },
- {
- "family": "Venturelli",
- "given": "Andrea",
- "orcid": "0000-0001-7216-2744"
- }
- ],
- "doi:10.3390/en14164919": [
- {
- "family": "Kosacka-Olejnik",
- "given": "Monika",
- "orcid": "0000-0001-6950-2728"
- },
- {
- "family": "Kostrzewski",
- "given": "Mariusz",
- "orcid": "0000-0001-5078-4067"
- },
- {
- "family": "Marczewska",
- "given": "Magdalena",
- "orcid": "0000-0003-4301-2741"
- },
- {
- "family": "Mrówczyńska",
- "given": "Bogna",
- "orcid": "0000-0002-7582-2434"
- },
- {
- "family": "Pawlewski",
- "given": "Paweł",
- "orcid": "0000-0002-2494-7712"
- }
- ],
- "doi:10.1080/03088839.2021.1969460": [
- {
- "family": "Kołakowski",
- "given": "Paweł",
- "orcid": "0000-0002-4612-5680"
- },
- {
- "family": "Gil",
- "given": "Mateusz",
- "orcid": "0000-0003-1759-1700"
- },
- {
- "family": "Wróbel",
- "given": "Krzysztof",
- "orcid": "0000-0001-7757-8554"
- },
- {
- "family": "Ho",
- "given": "Yuh-Shan",
- "orcid": "0000-0002-2557-8736"
- }
- ],
- "doi:10.2147/cmar.s324284": [
- {
- "family": "Abushamma",
- "given": "Faris",
- "orcid": "0000-0002-0530-5466"
- },
- {
- "family": "Maree",
- "given": "Mosab",
- "orcid": "0000-0001-8987-2400"
- },
- {
- "family": "Zyoud",
- "given": "Sa’Ed H",
- "orcid": "0000-0002-7369-2058"
- }
- ],
- "doi:10.1007/s10639-021-10720-y": [
- {
- "family": "Yu",
- "given": "Zhonggen",
- "orcid": "0000-0002-3873-980X"
- }
- ],
- "doi:10.1007/s11274-021-03123-1": [
- {
- "family": "Chen",
- "given": "Hong",
- "orcid": "0000-0001-8937-3804"
- }
- ],
- "doi:10.1007/s11356-021-15939-3": [
- {
- "family": "Tian",
- "given": "Jinhui",
- "orcid": "0000-0002-0054-2454"
- }
- ],
- "doi:10.1080/00472778.2021.1955122": [
- {
- "family": "Mariani",
- "given": "Marcello M.",
- "orcid": "0000-0002-7916-2576"
- },
- {
- "family": "De Massis",
- "given": "Alfredo",
- "orcid": "0000-0001-5552-6497"
- }
- ],
- "doi:10.1186/s12992-021-00754-9": [
- {
- "family": "Sweileh",
- "given": "Waleed M.",
- "orcid": "0000-0002-9460-5144"
- }
- ],
- "doi:10.1002/mabi.202100103": [
- {
- "family": "Zhu",
- "given": "Quangang",
- "orcid": "0000-0002-0574-4020"
- }
- ],
- "doi:10.1016/j.iref.2021.08.002": [
- {
- "family": "Hassan",
- "given": "M. Kabir",
- "orcid": "0000-0001-6274-3545"
- },
- {
- "family": "Alshater",
- "given": "Muneer M.",
- "orcid": "0000-0001-6876-3301"
- },
- {
- "family": "Atayah",
- "given": "Osama F.",
- "orcid": "0000-0002-8787-9956"
- }
- ],
- "doi:10.1108/ecam-03-2021-0232": [
- {
- "family": "Vrcelj",
- "given": "Zora",
- "orcid": "0000-0002-1403-7416"
- }
- ],
- "doi:10.3390/brainsci11081077": [
- {
- "family": "Maniu",
- "given": "Ionela",
- "orcid": "0000-0002-9284-597X"
- },
- {
- "family": "Costea",
- "given": "Raluca",
- "orcid": "0000-0003-2651-2007"
- },
- {
- "family": "Neamtu",
- "given": "Bogdan Mihai",
- "orcid": "0000-0003-2573-621X"
- }
- ],
- "doi:10.3390/jtaer16060116": [
- {
- "family": "Tiberius",
- "given": "Victor",
- "orcid": "0000-0002-6492-0872"
- }
- ],
- "doi:10.1080/15440478.2021.1952139": [
- {
- "family": "Yuan",
- "given": "Bao-Zhong",
- "orcid": "0000-0003-2353-3873"
- }
- ],
- "doi:10.17533/udea.le.n95a344139": [
- {
- "family": "Gómez Velasco",
- "given": "Nubia Yaneth",
- "orcid": "0000-0001-7745-1721"
- },
- {
- "family": "Gregorio Chaviano",
- "given": "Orlando",
- "orcid": "0000-0002-3064-8639"
- },
- {
- "family": "Ballesteros Alfonso",
- "given": "Alba Lorena",
- "orcid": "0000-0001-6451-4084"
- }
- ],
- "doi:10.1016/j.techfore.2021.121026": [
- {
- "family": "Guckenbiehl",
- "given": "Peter",
- "orcid": "0000-0002-9762-587X"
- }
- ],
- "doi:10.1177/03128962211035470": [
- {
- "family": "Wang",
- "given": "Nengmin",
- "orcid": "0000-0002-6543-1309"
- },
- {
- "family": "Tang",
- "given": "Guwen",
- "orcid": "0000-0003-1386-8346"
- }
- ],
- "doi:10.1111/and.14206": [
- {
- "family": "Chen",
- "given": "Qi",
- "orcid": "0000-0001-5960-0826"
- }
- ],
- "doi:10.1007/s11356-021-15787-1": [
- {
- "family": "Xiao",
- "given": "Pengfei",
- "orcid": "0000-0002-0379-4358"
- }
- ],
- "doi:10.1002/ece3.7980": [
- {
- "family": "Sharma",
- "given": "Prashanti",
- "orcid": "0000-0001-9660-5837"
- },
- {
- "family": "Chettri",
- "given": "Nakul",
- "orcid": "0000-0002-3338-8879"
- },
- {
- "family": "Wangchuk",
- "given": "Kesang",
- "orcid": "0000-0002-5991-3969"
- }
- ],
- "doi:10.1007/978-981-16-6128-0_25": [
- {
- "family": "Calabrese",
- "given": "Francesca",
- "orcid": "0000-0001-9412-0449"
- },
- {
- "family": "Regattieri",
- "given": "Alberto",
- "orcid": "0000-0002-6169-5980"
- },
- {
- "family": "Bortolini",
- "given": "Marco",
- "orcid": "0000-0002-1779-6362"
- },
- {
- "family": "Galizia",
- "given": "Francesco Gabriele",
- "orcid": "0000-0002-3305-1993"
- }
- ],
- "doi:10.1021/acs.iecr.8b00936": [
- {
- "family": "Khan",
- "given": "Faisal",
- "orcid": "0000-0002-5638-4299"
- },
- {
- "family": "Imtiaz",
- "given": "Syed",
- "orcid": "0000-0002-2715-9084"
- }
- ],
- "doi:10.3390/life11090970": [
- {
- "family": "Durazzo",
- "given": "Alessandra",
- "orcid": "0000-0002-7747-9107"
- },
- {
- "family": "Plutino",
- "given": "Manuela",
- "orcid": "0000-0001-9339-8203"
- },
- {
- "family": "Lucini",
- "given": "Luigi",
- "orcid": "0000-0002-5133-9464"
- },
- {
- "family": "Souto",
- "given": "Eliana B.",
- "orcid": "0000-0002-9737-6017"
- },
- {
- "family": "Santini",
- "given": "Antonello",
- "orcid": "0000-0001-5505-3327"
- },
- {
- "family": "Pignatti",
- "given": "Giuseppe",
- "orcid": "0000-0002-3947-0160"
- }
- ],
- "doi:10.3390/su13179780": [
- {
- "family": "Ulucak",
- "given": "Recep",
- "orcid": "0000-0001-9938-0063"
- },
- {
- "family": "Alexandre Castanho",
- "given": "Rui",
- "orcid": "0000-0003-1882-4801"
- }
- ],
- "doi:10.3390/su13179631": [
- {
- "family": "Karakose",
- "given": "Turgut",
- "orcid": "0000-0003-0346-8154"
- },
- {
- "family": "Yirci",
- "given": "Ramazan",
- "orcid": "0000-0003-4696-7420"
- },
- {
- "family": "Papadakis",
- "given": "Stamatios",
- "orcid": "0000-0003-3184-1147"
- },
- {
- "family": "Ozdemir",
- "given": "Tuncay Yavuz",
- "orcid": "0000-0002-5361-7261"
- },
- {
- "family": "Demirkol",
- "given": "Murat",
- "orcid": "0000-0003-3108-3219"
- }
- ],
- "doi:10.1007/978-3-030-75722-9_7": [
- {
- "family": "Cardoso Ermel",
- "given": "Ana Paula",
- "orcid": "0000-0002-3874-9792"
- },
- {
- "family": "Lacerda",
- "given": "D. P.",
- "orcid": "0000-0002-8011-3376"
- },
- {
- "family": "Morandi",
- "given": "Maria Isabel W. M.",
- "orcid": "0000-0003-1337-1487"
- },
- {
- "family": "Gauss",
- "given": "Leandro",
- "orcid": "0000-0001-5708-5912"
- }
- ],
- "doi:10.2196/preprints.30692": [
- {
- "family": "Klingelhöfer",
- "given": "Doris",
- "orcid": "0000-0003-0716-9872"
- },
- {
- "family": "Braun",
- "given": "Markus",
- "orcid": "0000-0003-3393-2851"
- },
- {
- "family": "Brüggmann",
- "given": "Dörthe",
- "orcid": "0000-0002-4799-3391"
- },
- {
- "family": "Groneberg",
- "given": "David A",
- "orcid": "0000-0001-8551-6556"
- }
- ],
- "doi:10.3390/jrfm14090427": [
- {
- "family": "Aysan",
- "given": "Ahmet Faruk",
- "orcid": "0000-0001-7363-0116"
- }
- ],
- "doi:10.3390/su13179981": [
- {
- "family": "Edwards",
- "given": "David John",
- "orcid": "0000-0001-9727-6000"
- },
- {
- "family": "Chileshe",
- "given": "Nicholas",
- "orcid": "0000-0002-1981-7518"
- },
- {
- "family": "Lai",
- "given": "Joseph H. K.",
- "orcid": "0000-0003-0526-4331"
- }
- ],
- "doi:10.3390/systems9030067": [
- {
- "family": "Monteiro",
- "given": "Albertina",
- "orcid": "0000-0002-2146-9807"
- }
- ],
- "doi:10.1108/jsma-01-2021-0002": [
- {
- "family": "Anwar",
- "given": "Jamil",
- "orcid": "0000-0002-3737-2620"
- },
- {
- "family": "Bibi",
- "given": "Aqsa",
- "orcid": "0000-0002-8724-7852"
- }
- ],
- "doi:10.1080/03088839.2021.1972486": [
- {
- "family": "Mondello",
- "given": "Giovanni",
- "orcid": "0000-0002-6893-6580"
- },
- {
- "family": "Salomone",
- "given": "Roberta",
- "orcid": "0000-0002-0809-7949"
- },
- {
- "family": "Saija",
- "given": "Giuseppe",
- "orcid": "0000-0003-2786-4354"
- },
- {
- "family": "Lanuzza",
- "given": "Francesco",
- "orcid": "0000-0002-4635-7027"
- },
- {
- "family": "Gulotta",
- "given": "Teresa Maria",
- "orcid": "0000-0002-4524-3757"
- }
- ],
- "doi:10.3233/wor-213576": [
- {
- "family": "Mortezapour",
- "given": "Alireza",
- "orcid": "0000-0001-6356-2244"
- }
- ],
- "doi:10.3390/en14185711": [
- {
- "family": "Jafari",
- "given": "Soheil",
- "orcid": "0000-0001-5691-1258"
- },
- {
- "family": "Miran Fashandi",
- "given": "Seyed Alireza",
- "orcid": "0000-0002-9163-7941"
- },
- {
- "family": "Nikolaidis",
- "given": "Theoklis",
- "orcid": "0000-0002-1106-5032"
- }
- ],
- "doi:10.1007/s42690-021-00616-2": [
- {
- "family": "Moshobane",
- "given": "M. C.",
- "orcid": "0000-0001-7498-8451"
- },
- {
- "family": "Khoza",
- "given": "T. T.",
- "orcid": "0000-0001-9126-0913"
- },
- {
- "family": "Niassy",
- "given": "S.",
- "orcid": "0000-0003-1061-4041"
- }
- ],
- "doi:10.1002/bbb.2290": [
- {
- "family": "Sganzerla",
- "given": "William G.",
- "orcid": "0000-0002-1780-2160"
- },
- {
- "family": "Mussatto",
- "given": "Solange I.",
- "orcid": "0000-0002-7182-6198"
- },
- {
- "family": "Forsterâ€Carneiro",
- "given": "Tânia",
- "orcid": "0000-0002-0514-3460"
- }
- ],
- "doi:10.3390/ijerph18179396": [
- {
- "family": "Ballesteros",
- "given": "Menta",
- "orcid": "0000-0003-4801-4631"
- },
- {
- "family": "Brindley",
- "given": "Celeste",
- "orcid": "0000-0001-6757-5720"
- },
- {
- "family": "Sánchez-Pérez",
- "given": "José Antonio",
- "orcid": "0000-0001-5635-3137"
- },
- {
- "family": "Fernández-Ibañez",
- "given": "Pilar",
- "orcid": "0000-0001-6877-4684"
- }
- ],
- "doi:10.1016/j.tifs.2021.08.032": [
- {
- "family": "Talari",
- "given": "Gopaiah",
- "orcid": "0000-0002-6351-133X"
- },
- {
- "family": "Cummins",
- "given": "Enda",
- "orcid": "0000-0002-1006-4388"
- },
- {
- "family": "Mcnamara",
- "given": "Cronan",
- "orcid": "0000-0003-3533-9592"
- }
- ],
- "doi:10.1186/s40066-021-00315-8": [
- {
- "family": "Herrera-Calderon",
- "given": "Oscar",
- "orcid": "0000-0001-7264-0961"
- },
- {
- "family": "Yuli-Posadas",
- "given": "Ricardo Ãngel",
- "orcid": "0000-0002-3545-3443"
- },
- {
- "family": "Peña-Rojas",
- "given": "Gilmar",
- "orcid": "0000-0002-1888-4989"
- },
- {
- "family": "AndÃa-Ayme",
- "given": "Vidalina",
- "orcid": "0000-0002-7951-3241"
- },
- {
- "family": "Hañari-Quispe",
- "given": "Renán Dilton",
- "orcid": "0000-0002-0916-8622"
- },
- {
- "family": "Gregorio-Chaviano",
- "given": "Orlando",
- "orcid": "0000-0002-3064-8639"
- }
- ],
- "doi:10.1016/j.techfore.2021.121179": [
- {
- "family": "Cruz-Cárdenas",
- "given": "Jorge",
- "orcid": "0000-0002-4575-6229"
- },
- {
- "family": "Palacio-Fierro",
- "given": "Andrés",
- "orcid": "0000-0002-4450-1101"
- },
- {
- "family": "Ramos-Galarza",
- "given": "Carlos",
- "orcid": "0000-0001-5614-1994"
- }
- ],
- "doi:10.1108/jdqs-08-2021-0020": [
- {
- "family": "Kim",
- "given": "Jun Sik",
- "orcid": "0000-0001-5794-1926"
- }
- ],
- "doi:10.1016/j.egyr.2021.06.084": [
- {
- "family": "Kusadokoro",
- "given": "Motoi",
- "orcid": "0000-0002-4601-1835"
- },
- {
- "family": "Nie",
- "given": "Haisong",
- "orcid": "0000-0002-7211-9604"
- }
- ],
- "doi:10.1016/j.jsr.2021.09.002": [
- {
- "family": "Behnood",
- "given": "Ali",
- "orcid": "0000-0003-2537-1863"
- }
- ],
- "doi:10.1007/978-3-030-78570-3_4": [
- {
- "family": "Cavalieri",
- "given": "Adriane",
- "orcid": "0000-0002-9437-530X"
- },
- {
- "family": "Amorim",
- "given": "Marlene",
- "orcid": "0000-0002-0901-0614"
- },
- {
- "family": "Reis",
- "given": "João",
- "orcid": "0000-0002-8504-0065"
- }
- ],
- "doi:10.1007/s11540-021-09521-0": [
- {
- "family": "Yuan",
- "given": "Bao-Zhong",
- "orcid": "0000-0003-2353-3873"
- }
- ],
- "doi:10.1108/jfmm-02-2021-0046": [
- {
- "family": "Samad",
- "given": "Taab Ahmad",
- "orcid": "0000-0002-5012-3717"
- },
- {
- "family": "Qamar",
- "given": "Yusra",
- "orcid": "0000-0002-0658-3361"
- }
- ],
- "doi:10.3390/su13179582": [
- {
- "family": "Bieda",
- "given": "Agnieszka",
- "orcid": "0000-0002-9725-5960"
- }
- ],
- "doi:10.3390/ijerph18126187": [
- {
- "family": "Li",
- "given": "Longxi",
- "orcid": "0000-0001-7898-8838"
- },
- {
- "family": "Moosbrugger",
- "given": "Michelle E.",
- "orcid": "0000-0003-1763-1151"
- }
- ],
- "doi:10.3390/su13020791": [
- {
- "family": "Leminen",
- "given": "Seppo",
- "orcid": "0000-0002-2918-0020"
- }
- ],
- "doi:10.3390/su13031275": [
- {
- "family": "Liu",
- "given": "Fuzhen",
- "orcid": "0000-0003-2998-9652"
- },
- {
- "family": "Lai",
- "given": "Kee-Hung",
- "orcid": "0000-0001-9296-0882"
- }
- ],
- "doi:10.3390/su13042126": [
- {
- "family": "Prieto-Jiménez",
- "given": "Esther",
- "orcid": "0000-0002-7493-4004"
- },
- {
- "family": "López-Catalán",
- "given": "Blanca",
- "orcid": "0000-0001-9936-1612"
- }
- ],
- "doi:10.1007/s13132-021-00803-z": [
- {
- "family": "Cuellar",
- "given": "Sergio",
- "orcid": "0000-0001-7101-7422"
- },
- {
- "family": "Méndez-Morales",
- "given": "Alberto",
- "orcid": "0000-0001-7971-5305"
- },
- {
- "family": "Herrera",
- "given": "Milton M.",
- "orcid": "0000-0002-0766-8391"
- }
- ],
- "doi:10.1155/2021/5547530": [
- {
- "family": "Duan",
- "given": "Ruijun",
- "orcid": "0000-0002-1892-2607"
- },
- {
- "family": "Guo",
- "given": "Li",
- "orcid": "0000-0003-0813-4145"
- }
- ],
- "doi:10.3390/catal11080913": [
- {
- "family": "Palmas",
- "given": "Simonetta",
- "orcid": "0000-0003-2393-065X"
- }
- ],
- "doi:10.1002/kpm.1658": [
- {
- "family": "Ikeda",
- "given": "Erika Kajiyama",
- "orcid": "0000-0002-9885-8747"
- }
- ],
- "doi:10.3390/ijerph18041764": [
- {
- "family": "Xiao",
- "given": "Yiming",
- "orcid": "0000-0001-8483-1503"
- }
- ],
- "doi:10.3390/molecules26144334": [
- {
- "family": "Bastian",
- "given": "Susan E. P.",
- "orcid": "0000-0002-8790-2044"
- },
- {
- "family": "Cozzolino",
- "given": "Daniel",
- "orcid": "0000-0001-6247-8817"
- },
- {
- "family": "Jeffery",
- "given": "David W.",
- "orcid": "0000-0002-7054-0374"
- }
- ],
- "doi:10.1162/qss_a_00109": [
- {
- "family": "Bu",
- "given": "Yi",
- "orcid": "0000-0003-2549-4580"
- },
- {
- "family": "Waltman",
- "given": "Ludo",
- "orcid": "0000-0001-8249-1752"
- },
- {
- "family": "Huang",
- "given": "Yong",
- "orcid": "0000-0001-5953-6908"
- }
- ],
- "doi:10.15561/20755279.2021.0301": [
- {
- "family": "Tomanek",
- "given": "Mateusz",
- "orcid": "0000-0002-9527-2513"
- },
- {
- "family": "Lis",
- "given": "Andrzej",
- "orcid": "0000-0003-4080-4137"
- }
- ],
- "doi:10.1016/j.spc.2021.03.030": [
- {
- "family": "Laurenti",
- "given": "Rafael",
- "orcid": "0000-0002-7717-600X"
- }
- ],
- "doi:10.1016/j.compind.2021.103458": [
- {
- "family": "Yilma",
- "given": "Bereket Abera",
- "orcid": "0000-0001-7210-9919"
- },
- {
- "family": "Panetto",
- "given": "Hervé",
- "orcid": "0000-0002-5537-2261"
- },
- {
- "family": "Naudet",
- "given": "Yannick",
- "orcid": "0000-0001-8570-9200"
- }
- ],
- "doi:10.3390/su13116225": [
- {
- "family": "Rodrigues",
- "given": "Lúcia Lima",
- "orcid": "0000-0003-0859-0853"
- }
- ],
- "doi:10.3390/su13126562": [
- {
- "family": "Budihardjo",
- "given": "Mochamad Arief",
- "orcid": "0000-0002-1256-3076"
- }
- ],
- "doi:10.3390/su13158261": [
- {
- "family": "Fazeli-Varzaneh",
- "given": "Mohsen",
- "orcid": "0000-0001-8614-8513"
- },
- {
- "family": "Bettinger",
- "given": "Pete",
- "orcid": "0000-0002-5454-3970"
- },
- {
- "family": "Kozak",
- "given": "Marcin",
- "orcid": "0000-0001-9653-3108"
- },
- {
- "family": "Jaafari",
- "given": "Abolfazl",
- "orcid": "0000-0002-3441-6560"
- }
- ],
- "doi:10.1016/j.envres.2021.111087": [
- {
- "family": "Borrelli",
- "given": "Pasquale",
- "orcid": "0000-0002-4767-5115"
- },
- {
- "family": "Alvarez",
- "given": "Pablo",
- "orcid": "0000-0002-8488-4370"
- },
- {
- "family": "Baartman",
- "given": "Jantiene",
- "orcid": "0000-0001-6051-8619"
- },
- {
- "family": "Ballabio",
- "given": "Cristiano",
- "orcid": "0000-0001-7452-9271"
- },
- {
- "family": "Chalise",
- "given": "Devraj",
- "orcid": "0000-0001-5030-7260"
- },
- {
- "family": "Chen",
- "given": "Songchao",
- "orcid": "0000-0003-1245-0482"
- },
- {
- "family": "Chen",
- "given": "Walter",
- "orcid": "0000-0001-6926-0837"
- },
- {
- "family": "Gentile",
- "given": "Francesco",
- "orcid": "0000-0003-4462-0466"
- },
- {
- "family": "Gericke",
- "given": "Andreas",
- "orcid": "0000-0002-9083-947X"
- },
- {
- "family": "Jeanneau",
- "given": "Amelie",
- "orcid": "0000-0002-1168-4343"
- },
- {
- "family": "Kaffas",
- "given": "Konstantinos",
- "orcid": "0000-0003-1398-4371"
- },
- {
- "family": "Villuendas",
- "given": "Ivan Lizaga",
- "orcid": "0000-0003-4372-5901"
- },
- {
- "family": "Panday",
- "given": "Dinesh",
- "orcid": "0000-0001-8452-3797"
- },
- {
- "family": "Patault",
- "given": "Edouard",
- "orcid": "0000-0001-7089-9881"
- },
- {
- "family": "Patriche",
- "given": "Cristian Valeriu",
- "orcid": "0000-0003-4970-0860"
- },
- {
- "family": "Portes",
- "given": "Raquel",
- "orcid": "0000-0003-2673-4232"
- },
- {
- "family": "Renima",
- "given": "Mohammed",
- "orcid": "0000-0001-9048-0930"
- },
- {
- "family": "Ricci",
- "given": "Giovanni Francesco",
- "orcid": "0000-0001-6724-8789"
- },
- {
- "family": "Schillaci",
- "given": "Calogero",
- "orcid": "0000-0001-7689-5697"
- },
- {
- "family": "Syrris",
- "given": "Vasileios",
- "orcid": "0000-0002-2262-0580"
- },
- {
- "family": "Spinola",
- "given": "Diogo Noses",
- "orcid": "0000-0003-3525-9461"
- },
- {
- "family": "Oliveira",
- "given": "Paulo Tarso",
- "orcid": "0000-0003-2806-0083"
- },
- {
- "family": "Thapa",
- "given": "Resham",
- "orcid": "0000-0002-0059-764X"
- },
- {
- "family": "Yang",
- "given": "Jae E.",
- "orcid": "0000-0001-8641-6442"
- },
- {
- "family": "Yin",
- "given": "Shuiqing",
- "orcid": "0000-0001-6914-6006"
- },
- {
- "family": "Panagos",
- "given": "Panos",
- "orcid": "0000-0003-1484-2738"
- }
- ],
- "doi:10.3390/infrastructures6020021": [
- {
- "family": "Petroutsatou",
- "given": "Kleopatra",
- "orcid": "0000-0003-4477-8693"
- },
- {
- "family": "Apostolidis",
- "given": "Nikolaos",
- "orcid": "0000-0002-7325-981X"
- },
- {
- "family": "Zarkada",
- "given": "Athanasia",
- "orcid": "0000-0001-7300-9186"
- },
- {
- "family": "Ntokou",
- "given": "Aneta",
- "orcid": "0000-0003-4305-9400"
- }
- ],
- "doi:10.3846/jcem.2021.15260": [
- {
- "family": "Zhu",
- "given": "Xingyu",
- "orcid": "0000-0001-7690-6739"
- },
- {
- "family": "Meng",
- "given": "Xianhai",
- "orcid": "0000-0001-9347-5942"
- },
- {
- "family": "Zhang",
- "given": "Min",
- "orcid": "0000-0002-7955-1467"
- }
- ],
- "doi:10.1177/15533506211026411": [
- {
- "family": "Yang",
- "given": "Ke-Hu",
- "orcid": "0000-0001-7864-3012"
- }
- ],
- "doi:10.1108/wjemsd-06-2020-0068": [
- {
- "family": "Farrukh",
- "given": "Muhammad",
- "orcid": "0000-0002-3569-305X"
- },
- {
- "family": "Raza",
- "given": "Ali",
- "orcid": "0000-0001-7043-2472"
- }
- ],
- "doi:10.1101/2021.04.14.21255485": [
- {
- "family": "Barrett",
- "given": "Michael J",
- "orcid": "0000-0003-1775-8347"
- }
- ],
- "doi:10.1177/10963480211011540": [
- {
- "family": "Senbeto",
- "given": "Dagnachew Leta",
- "orcid": "0000-0002-8743-3348"
- }
- ],
- "doi:10.1007/s11270-021-05247-4": [
- {
- "family": "Ruzene",
- "given": "Denise Santos",
- "orcid": "0000-0002-1550-6341"
- }
- ],
- "doi:10.1177/19322968211005500": [
- {
- "family": "León-Vargas",
- "given": "Fabian",
- "orcid": "0000-0002-1839-2036"
- },
- {
- "family": "Luna Wandurraga",
- "given": "Héctor Javier",
- "orcid": "0000-0002-1291-020X"
- }
- ],
- "doi:10.3390/jmse9020218": [
- {
- "family": "Chen",
- "given": "Lisu",
- "orcid": "0000-0001-7539-3644"
- },
- {
- "family": "Wang",
- "given": "Tianzhen",
- "orcid": "0000-0002-7525-8466"
- }
- ],
- "doi:10.3390/jmse9030266": [
- {
- "family": "Munim",
- "given": "Ziaul Haque",
- "orcid": "0000-0002-5942-708X"
- },
- {
- "family": "Duru",
- "given": "Okan",
- "orcid": "0000-0001-7966-0025"
- },
- {
- "family": "Hirata",
- "given": "Enna",
- "orcid": "0000-0002-3127-3170"
- }
- ],
- "doi:10.1007/s11301-021-00214-z": [
- {
- "family": "Marzall",
- "given": "Luciana Fighera",
- "orcid": "0000-0003-0891-6112"
- },
- {
- "family": "Kaczam",
- "given": "FabÃola",
- "orcid": "0000-0002-0460-9927"
- },
- {
- "family": "Costa",
- "given": "Vânia Medianeira Flores",
- "orcid": "0000-0002-6099-820X"
- },
- {
- "family": "Da Veiga",
- "given": "Claudimar Pereira",
- "orcid": "0000-0002-4960-5954"
- },
- {
- "family": "Da Silva",
- "given": "Wesley Vieira",
- "orcid": "0000-0001-5354-8676"
- }
- ],
- "doi:10.1016/j.jhazmat.2020.125028": [
- {
- "family": "Queirós",
- "given": "Vanessa",
- "orcid": "0000-0001-6426-0512"
- },
- {
- "family": "Freitas",
- "given": "Rosa",
- "orcid": "0000-0003-4900-3897"
- }
- ],
- "doi:10.1016/j.jhazmat.2021.126361": [
- {
- "family": "Podder",
- "given": "Aditi",
- "orcid": "0000-0001-6364-5349"
- },
- {
- "family": "Reinhart",
- "given": "Debra",
- "orcid": "0000-0003-4609-4981"
- }
- ],
- "doi:10.1111/cobi.13726": [
- {
- "family": "Vogel",
- "given": "Susanne Marieke",
- "orcid": "0000-0002-9678-5070"
- }
- ],
- "doi:10.1002/hfm.20889": [
- {
- "family": "Sigahi",
- "given": "Tiago F. A. C.",
- "orcid": "0000-0002-2595-5220"
- },
- {
- "family": "Kawasaki",
- "given": "Bruno C.",
- "orcid": "0000-0002-8258-0349"
- },
- {
- "family": "Bolis",
- "given": "Ivan",
- "orcid": "0000-0003-0688-0742"
- },
- {
- "family": "Morioka",
- "given": "Sandra N.",
- "orcid": "0000-0003-1741-4317"
- }
- ],
- "doi:10.1007/s10668-021-01293-4": [
- {
- "family": "Seidl",
- "given": "Martin",
- "orcid": "0000-0001-7633-6318"
- }
- ],
- "doi:10.1016/j.jhtm.2021.04.005": [
- {
- "family": "Kumar",
- "given": "Satish",
- "orcid": "0000-0001-5200-1476"
- },
- {
- "family": "Donthu",
- "given": "Naveen",
- "orcid": "0000-0002-8525-3159"
- },
- {
- "family": "Joshi",
- "given": "Yatish",
- "orcid": "0000-0002-6557-3534"
- }
- ],
- "doi:10.1080/00207543.2021.1919333": [
- {
- "family": "Sahoo",
- "given": "Saumyaranjan",
- "orcid": "0000-0003-3609-2448"
- }
- ],
- "doi:10.1590/1806-9649-2021v28e5171": [
- {
- "family": "Rosado",
- "given": "Carlos Antonio Gonçalves",
- "orcid": "0000-0002-9066-4972"
- },
- {
- "family": "De Souza",
- "given": "Marcio Coutinho",
- "orcid": "0000-0002-4238-1572"
- }
- ],
- "doi:10.3390/su13031136": [
- {
- "family": "Payán-Sánchez",
- "given": "Belén",
- "orcid": "0000-0002-6917-9841"
- },
- {
- "family": "Belmonte-Ureña",
- "given": "Luis Jesús",
- "orcid": "0000-0001-5860-5000"
- },
- {
- "family": "Plaza-Úbeda",
- "given": "José Antonio",
- "orcid": "0000-0002-5837-2515"
- },
- {
- "family": "Yakovleva",
- "given": "Natalia",
- "orcid": "0000-0001-5560-3982"
- },
- {
- "family": "Pérez-Valls",
- "given": "Miguel",
- "orcid": "0000-0001-5009-4242"
- }
- ],
- "doi:10.4018/978-1-7998-5772-3.ch005": [
- {
- "family": "Abad-Segura",
- "given": "Emilio",
- "orcid": "0000-0001-8624-103X"
- },
- {
- "family": "González-Zamar",
- "given": "Mariana-Daniela",
- "orcid": "0000-0003-1187-8970"
- }
- ],
- "doi:10.1007/s12210-021-01003-2": [
- {
- "family": "Santini",
- "given": "Antonello",
- "orcid": "0000-0001-5505-3327"
- }
- ],
- "doi:10.1080/13504509.2021.1881651": [
- {
- "family": "Leal Filho",
- "given": "Walter",
- "orcid": "0000-0002-1241-5225"
- },
- {
- "family": "Will",
- "given": "Markus",
- "orcid": "0000-0003-2288-1139"
- },
- {
- "family": "Shiel",
- "given": "Chris",
- "orcid": "0000-0002-4516-619X"
- },
- {
- "family": "Paço",
- "given": "Arminda",
- "orcid": "0000-0002-2806-4247"
- },
- {
- "family": "Farinha",
- "given": "Carla Sofia",
- "orcid": "0000-0002-4110-2156"
- },
- {
- "family": "Orlovic Lovren",
- "given": "Violeta",
- "orcid": "0000-0002-2678-3256"
- },
- {
- "family": "Avila",
- "given": "Lucas Veiga",
- "orcid": "0000-0003-1502-258X"
- },
- {
- "family": "Platje",
- "given": "Johannes (Joost)",
- "orcid": "0000-0002-6274-1467"
- },
- {
- "family": "Sharifi",
- "given": "Ayyoob",
- "orcid": "0000-0002-8983-8613"
- },
- {
- "family": "Vasconcelos",
- "given": "Claudio R.P.",
- "orcid": "0000-0001-8353-6406"
- },
- {
- "family": "Fritzen Gomes",
- "given": "Barbara Maria",
- "orcid": "0000-0002-0346-1270"
- },
- {
- "family": "Lange Salvia",
- "given": "Amanda",
- "orcid": "0000-0002-4549-7685"
- },
- {
- "family": "Anholon",
- "given": "Rosley",
- "orcid": "0000-0003-3163-6119"
- },
- {
- "family": "Rampasso",
- "given": "Izabella",
- "orcid": "0000-0003-1633-6628"
- },
- {
- "family": "Quelhas",
- "given": "Osvaldo L.G.",
- "orcid": "0000-0001-6816-1677"
- },
- {
- "family": "Skouloudis",
- "given": "Antonis",
- "orcid": "0000-0002-3363-6692"
- }
- ],
- "doi:10.2147/cmar.s270099": [
- {
- "family": "Liang",
- "given": "Man",
- "orcid": "0000-0002-0543-7362"
- }
- ],
- "doi:10.3390/educsci11030115": [
- {
- "family": "Bento",
- "given": "Fabio",
- "orcid": "0000-0002-9458-8380"
- },
- {
- "family": "Tagliabue",
- "given": "Marco",
- "orcid": "0000-0002-2438-6943"
- }
- ],
- "doi:10.3390/educsci11070353": [
- {
- "family": "Le Thi Thu",
- "given": "Huong",
- "orcid": "0000-0002-2417-4481"
- },
- {
- "family": "Tran",
- "given": "Trung",
- "orcid": "0000-0002-0459-7284"
- },
- {
- "family": "Trinh Thi Phuong",
- "given": "Thao",
- "orcid": "0000-0001-6277-4907"
- },
- {
- "family": "Le Thi Tuyet",
- "given": "Trinh",
- "orcid": "0000-0003-3970-9773"
- }
- ],
- "doi:10.3390/nu13061966": [
- {
- "family": "Gallo",
- "given": "Milagros",
- "orcid": "0000-0002-9712-6106"
- }
- ],
- "doi:10.3390/proteomes9020029": [
- {
- "family": "Sahu",
- "given": "Jagajjit",
- "orcid": "0000-0001-7468-5696"
- }
- ],
- "doi:10.1016/j.jenvman.2021.113382": [
- {
- "family": "Li",
- "given": "Jiayu",
- "orcid": "0000-0002-3698-7527"
- },
- {
- "family": "Zhang",
- "given": "Chen",
- "orcid": "0000-0002-3579-6980"
- }
- ],
- "doi:10.1186/s12936-021-03698-y": [
- {
- "family": "Huang",
- "given": "Jia-Yan",
- "orcid": "0000-0003-4166-6119"
- }
- ],
- "doi:10.3390/en14133852": [
- {
- "family": "Plörer",
- "given": "Daniel",
- "orcid": "0000-0002-0940-4533"
- },
- {
- "family": "Hammes",
- "given": "Sascha",
- "orcid": "0000-0001-5821-5053"
- },
- {
- "family": "Hauer",
- "given": "Martin",
- "orcid": "0000-0001-6876-2261"
- },
- {
- "family": "Van Karsbergen",
- "given": "Vincent",
- "orcid": "0000-0003-4320-6749"
- },
- {
- "family": "Pfluger",
- "given": "Rainer",
- "orcid": "0000-0002-1976-4305"
- }
- ],
- "doi:10.3390/en14133917": [
- {
- "family": "Vérez",
- "given": "David",
- "orcid": "0000-0003-2712-3206"
- },
- {
- "family": "Cabeza",
- "given": "Luisa F.",
- "orcid": "0000-0001-5086-872X"
- }
- ],
- "doi:10.1002/cjce.24089": [
- {
- "family": "Ortega",
- "given": "Carlos",
- "orcid": "0000-0003-1696-2389"
- },
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- }
- ],
- "doi:10.1002/cjce.24127": [
- {
- "family": "Wang",
- "given": "Xiao",
- "orcid": "0000-0003-1624-8230"
- },
- {
- "family": "Patience",
- "given": "Gregory S.",
- "orcid": "0000-0001-6593-7986"
- },
- {
- "family": "Seifitokaldani",
- "given": "Ali",
- "orcid": "0000-0002-7169-1537"
- }
- ],
- "doi:10.1007/s10661-020-08793-2": [
- {
- "family": "Mishra",
- "given": "Manoranjan",
- "orcid": "0000-0003-4545-7218"
- },
- {
- "family": "Sudarsan",
- "given": "Desul",
- "orcid": "0000-0003-4867-236X"
- },
- {
- "family": "Santos",
- "given": "Celso Augusto Guimarães",
- "orcid": "0000-0001-7927-9718"
- },
- {
- "family": "Mishra",
- "given": "Shailendra Kumar",
- "orcid": "0000-0002-1840-0374"
- },
- {
- "family": "Kar",
- "given": "Dipika",
- "orcid": "0000-0002-5805-4605"
- },
- {
- "family": "Baral",
- "given": "Kabita",
- "orcid": "0000-0003-0241-738X"
- },
- {
- "family": "Pattnaik",
- "given": "Namita",
- "orcid": "0000-0002-4067-0549"
- }
- ],
- "doi:10.1016/j.jclepro.2021.126622": [
- {
- "family": "Palumbo",
- "given": "Rocco",
- "orcid": "0000-0003-3700-9511"
- },
- {
- "family": "Pellegrini",
- "given": "Massimiliano Matteo",
- "orcid": "0000-0002-5722-2988"
- }
- ],
- "doi:10.1016/j.jclepro.2021.127627": [
- {
- "family": "Chistov",
- "given": "Valery",
- "orcid": "0000-0002-4582-8042"
- },
- {
- "family": "Aramburu",
- "given": "Nekane",
- "orcid": "0000-0002-6419-9894"
- },
- {
- "family": "Carrillo-Hermosilla",
- "given": "Javier",
- "orcid": "0000-0002-5566-8847"
- }
- ],
- "doi:10.1016/j.jclepro.2021.128009": [
- {
- "family": "Ranjbari",
- "given": "Meisam",
- "orcid": "0000-0002-2666-9154"
- },
- {
- "family": "Saidani",
- "given": "Michael",
- "orcid": "0000-0002-8269-4477"
- },
- {
- "family": "Shams Esfandabadi",
- "given": "Zahra",
- "orcid": "0000-0001-9320-4712"
- },
- {
- "family": "Lam",
- "given": "Su Shiung",
- "orcid": "0000-0002-5318-1760"
- },
- {
- "family": "Quatraro",
- "given": "Francesco",
- "orcid": "0000-0001-5746-2239"
- }
- ],
- "doi:10.1007/s11356-021-13094-3": [
- {
- "family": "Fathollahi-Fard",
- "given": "Amir M.",
- "orcid": "0000-0002-5939-9795"
- }
- ],
- "doi:10.3390/ijfs9030035": [
- {
- "family": "Mata",
- "given": "Mário Nuno",
- "orcid": "0000-0003-1765-4273"
- },
- {
- "family": "Raza",
- "given": "Ali",
- "orcid": "0000-0001-8566-7303"
- },
- {
- "family": "Dantas",
- "given": "Rui Miguel",
- "orcid": "0000-0001-5912-3871"
- },
- {
- "family": "Correia",
- "given": "Anabela Batista",
- "orcid": "0000-0001-5037-6485"
- }
- ],
- "doi:10.1007/s13748-021-00252-4": [
- {
- "family": "Ghosal",
- "given": "Sayani",
- "orcid": "0000-0002-0979-0788"
- }
- ],
- "doi:10.1080/21645515.2021.1910000": [
- {
- "family": "Ahmad",
- "given": "Tauseef",
- "orcid": "0000-0001-8793-273X"
- },
- {
- "family": "Baig",
- "given": "Mukhtiar",
- "orcid": "0000-0003-0058-2031"
- },
- {
- "family": "Harapan",
- "given": "Harapan",
- "orcid": "0000-0001-7630-8413"
- }
- ],
- "doi:10.1177/1069031x211004234": [
- {
- "family": "Lim",
- "given": "Weng Marc",
- "orcid": "0000-0001-7196-1923"
- }
- ],
- "doi:10.3390/polym13121957": [
- {
- "family": "Ahmad",
- "given": "Rafiq",
- "orcid": "0000-0001-9353-3380"
- }
- ],
- "doi:10.1007/978-3-030-58799-4_49": [
- {
- "family": "Ribeiro",
- "given": "Renato Carauta",
- "orcid": "0000-0003-4595-7407"
- },
- {
- "family": "Canedo",
- "given": "Edna Dias",
- "orcid": "0000-0002-2159-339X"
- }
- ],
- "doi:10.1177/1745691620927674": [
- {
- "family": "Brewin",
- "given": "Chris R.",
- "orcid": "0000-0002-7462-4460"
- }
- ],
- "doi:10.1007/978-3-030-53036-5_30": [
- {
- "family": "Ramalho",
- "given": "A.",
- "orcid": "0000-0002-8099-3043"
- },
- {
- "family": "Souza",
- "given": "J.",
- "orcid": "0000-0002-8576-1903"
- },
- {
- "family": "Freitas",
- "given": "A.",
- "orcid": "0000-0003-2113-9653"
- }
- ],
- "doi:10.1177/0037549720944483": [
- {
- "family": "Yousefi",
- "given": "Milad",
- "orcid": "0000-0003-1416-4279"
- }
- ],
- "doi:10.1017/sjp.2020.40": [
- {
- "family": "Gutiérrez",
- "given": "Oscar Iván",
- "orcid": "0000-0002-7640-9473"
- },
- {
- "family": "Polo",
- "given": "Jean David",
- "orcid": "0000-0001-7267-0140"
- },
- {
- "family": "Zambrano",
- "given": "Milton José",
- "orcid": "0000-0001-5054-4506"
- },
- {
- "family": "Molina",
- "given": "Diana Carolina",
- "orcid": "0000-0002-7736-6532"
- }
- ],
- "doi:10.1007/s40200-020-00606-0": [
- {
- "family": "Shamsi",
- "given": "Amrollah",
- "orcid": "0000-0001-6528-9341"
- },
- {
- "family": "Mansourzadeh",
- "given": "Mohammad Javad",
- "orcid": "0000-0002-0666-7928"
- },
- {
- "family": "Ghazbani",
- "given": "Arash",
- "orcid": "0000-0002-5569-7330"
- },
- {
- "family": "Khalagi",
- "given": "Kazem",
- "orcid": "0000-0002-0890-6232"
- },
- {
- "family": "Fahimfar",
- "given": "Noushin",
- "orcid": "0000-0001-6205-9794"
- },
- {
- "family": "Ostovar",
- "given": "Afshin",
- "orcid": "0000-0001-8670-5797"
- }
- ],
- "doi:10.1007/s00521-020-05395-4": [
- {
- "family": "Ezugwu",
- "given": "Absalom E.",
- "orcid": "0000-0002-3721-3400"
- }
- ],
- "doi:10.1007/s11695-020-05058-2": [
- {
- "family": "Toro-Huamanchumo",
- "given": "Carlos J.",
- "orcid": "0000-0002-4664-2856"
- }
- ],
- "doi:10.1002/sres.2731": [
- {
- "family": "Iandolo",
- "given": "Francesca",
- "orcid": "0000-0002-2366-4892"
- },
- {
- "family": "Vito",
- "given": "Pietro",
- "orcid": "0000-0003-2063-3561"
- },
- {
- "family": "Loia",
- "given": "Francesca",
- "orcid": "0000-0003-1755-968X"
- },
- {
- "family": "Fulco",
- "given": "Irene",
- "orcid": "0000-0003-0907-6450"
- },
- {
- "family": "Calabrese",
- "given": "Mario",
- "orcid": "0000-0001-5204-2112"
- }
- ],
- "doi:10.1108/jic-02-2020-0054": [
- {
- "family": "Crupi",
- "given": "Antonio",
- "orcid": "0000-0002-7406-8150"
- },
- {
- "family": "Cesaroni",
- "given": "Fabrizio",
- "orcid": "0000-0002-2345-6225"
- }
- ],
- "doi:10.1108/jic-05-2020-0142": [
- {
- "family": "Pereira",
- "given": "Vijay",
- "orcid": "0000-0001-6755-0793"
- }
- ],
- "doi:10.3897/neotropical.15.e52905": [
- {
- "family": "Da Frota",
- "given": "Angélica Vilas Boas",
- "orcid": "0000-0003-3693-4756"
- },
- {
- "family": "Vitorino",
- "given": "Breno Dias",
- "orcid": "0000-0002-5293-8581"
- }
- ],
- "doi:10.3390/admsci10030057": [
- {
- "family": "Palumbo",
- "given": "Rocco",
- "orcid": "0000-0003-3700-9511"
- },
- {
- "family": "Manesh",
- "given": "Mohammad Fakhar",
- "orcid": "0000-0001-7821-4533"
- },
- {
- "family": "Pellegrini",
- "given": "Massimiliano M.",
- "orcid": "0000-0002-5722-2988"
- }
- ],
- "doi:10.3390/admsci10030069": [
- {
- "family": "Tiberius",
- "given": "Victor",
- "orcid": "0000-0002-6492-0872"
- },
- {
- "family": "Bouncken",
- "given": "Ricarda",
- "orcid": "0000-0003-0510-7491"
- }
- ],
- "doi:10.1101/19001305": [
- {
- "family": "Moulin",
- "given": "Thiago C.",
- "orcid": "0000-0001-7811-5383"
- },
- {
- "family": "Amaral",
- "given": "Olavo B.",
- "orcid": "0000-0002-4299-8978"
- }
- ],
- "doi:10.1186/s12888-020-02825-4": [
- {
- "family": "Lund",
- "given": "Ingunn Olea",
- "orcid": "0000-0001-7412-4776"
- }
- ],
- "doi:10.1080/00472778.2020.1776578": [
- {
- "family": "Cancino",
- "given": "Christian A.",
- "orcid": "0000-0002-8981-0338"
- },
- {
- "family": "Merigó",
- "given": "José M.",
- "orcid": "0000-0002-4672-6961"
- },
- {
- "family": "Urbano",
- "given": "David",
- "orcid": "0000-0001-7600-8656"
- },
- {
- "family": "Amorós",
- "given": "J. Ernesto",
- "orcid": "0000-0001-9601-0892"
- }
- ],
- "doi:10.1007/s11301-020-00196-4": [
- {
- "family": "Simao",
- "given": "Lurdes Barroso",
- "orcid": "0000-0002-9703-1481"
- },
- {
- "family": "Carvalho",
- "given": "LuÃsa Cagica",
- "orcid": "0000-0002-9804-7813"
- },
- {
- "family": "Madeira",
- "given": "Maria José",
- "orcid": "0000-0003-1722-6148"
- }
- ],
- "doi:10.1080/08989621.2020.1836620": [
- {
- "family": "Ali",
- "given": "Imran",
- "orcid": "0000-0002-8912-5760"
- }
- ]
- },
- "venues_id": {
- "doi:10.1162/qss_a_00023": [
- "issn:2641-3337"
- ],
- "doi:10.1007/s11192-019-03217-6": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03311-9": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1038/sdata.2016.18": [
- "issn:2052-4463"
- ],
- "doi:10.1371/journal.pbio.3000385": [
- "issn:1545-7885"
- ],
- "doi:10.3233/ds-190016": [
- "issn:2451-8492",
- "issn:2451-8484"
- ],
- "doi:10.1007/s11192-020-03397-6": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1186/s13321-020-00448-1": [
- "issn:1758-2946"
- ],
- "doi:10.1007/978-3-030-61244-3_16": [
- "isbn:9783030612436",
- "isbn:9783030612443"
- ],
- "doi:10.1007/978-3-030-61244-3_6": [
- "isbn:9783030612436",
- "isbn:9783030612443"
- ],
- "doi:10.1007/978-3-030-54956-5_2": [
- "isbn:9783030549558",
- "isbn:9783030549565"
- ],
- "doi:10.1007/978-3-030-55814-7_15": [
- "isbn:9783030558130",
- "isbn:9783030558147"
- ],
- "doi:10.1007/s11192-020-03690-4": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/978-3-030-62466-8_28": [
- "isbn:9783030624651",
- "isbn:9783030624668"
- ],
- "doi:10.1038/s41597-020-00749-y": [
- "issn:2052-4463"
- ],
- "doi:10.1007/978-3-030-77385-4_37": [
- "isbn:9783030773847",
- "isbn:9783030773854"
- ],
- "doi:10.1007/s11192-021-04079-7": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1162/qss_a_00112": [
- "issn:2641-3337"
- ],
- "doi:10.7717/peerj-cs.421": [
- "issn:2376-5992"
- ],
- "doi:10.1007/s11192-021-04097-5": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/978-3-030-84825-5_11": [
- "isbn:9783030848248",
- "isbn:9783030848255"
- ],
- "doi:10.3989/arbor.2021.799007": [
- "issn:1988-303X",
- "issn:0210-1963"
- ],
- "doi:10.1162/qss_a_00146": [
- "issn:2641-3337"
- ],
- "doi:10.1080/19386389.2021.1999156": [
- "issn:1938-6389",
- "issn:1937-5034"
- ],
- "doi:10.3390/app11219997": [
- "issn:2076-3417"
- ],
- "doi:10.3145/thinkepi.2021.e15e04": [
- "issn:2564-8837"
- ],
- "doi:10.1007/978-3-030-16187-3_20": [
- "isbn:9783030161866",
- "isbn:9783030161873"
- ],
- "doi:10.1017/s0269888920000065": [
- "issn:0269-8889",
- "issn:1469-8005"
- ],
- "doi:10.1002/asi.24301": [
- "issn:2330-1635",
- "issn:2330-1643"
- ],
- "doi:10.1007/978-3-030-59194-6_37": [
- "isbn:9783030591939",
- "isbn:9783030591946"
- ],
- "doi:10.1007/978-3-030-61244-3_7": [
- "isbn:9783030612436",
- "isbn:9783030612443"
- ],
- "doi:10.3897/biss.4.59126": [
- "issn:2535-0897"
- ],
- "doi:10.1007/978-3-030-54956-5_9": [
- "isbn:9783030549558",
- "isbn:9783030549565"
- ],
- "doi:10.1007/978-3-030-71903-6_32": [
- "isbn:9783030719029",
- "isbn:9783030719036"
- ],
- "doi:10.3897/bdj.9.e67671": [
- "issn:1314-2828",
- "issn:1314-2836"
- ],
- "doi:10.1007/978-3-030-91669-5_24": [
- "isbn:9783030916688",
- "isbn:9783030916695"
- ],
- "doi:10.1016/j.joi.2014.07.006": [
- "issn:1751-1577"
- ],
- "doi:10.1007/s11042-019-08000-6": [
- "issn:1380-7501",
- "issn:1573-7721"
- ],
- "doi:10.3233/ds-190017": [
- "issn:2451-8492",
- "issn:2451-8484"
- ],
- "doi:10.3233/ds-190023": [
- "issn:2451-8492",
- "issn:2451-8484"
- ],
- "doi:10.31263/voebm.v72i2.2808": [
- "issn:1022-2588"
- ],
- "doi:10.1007/s11192-016-1879-4": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-016-1971-9": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-016-2071-6": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-016-2132-x": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-016-2194-9": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-016-2215-8": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2436-5": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2449-0": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2452-5": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2481-0": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2538-0": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2604-7": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2616-3": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-017-2636-z": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2651-8": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2705-y": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2734-6": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2740-8": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2748-0": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2752-4": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2761-3": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2765-z": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2775-x": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2786-7": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2796-5": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2803-x": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2809-4": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2841-4": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2844-1": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2856-x": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2936-y": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2977-2": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-018-2990-5": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03047-6": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03057-4": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03087-y": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03116-w": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03201-0": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03213-w": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1080/13683500.2017.1408574": [
- "issn:1368-3500",
- "issn:1747-7603"
- ],
- "doi:10.1080/16549716.2018.1504398": [
- "issn:1654-9716",
- "issn:1654-9880"
- ],
- "doi:10.1007/s00210-019-01629-y": [
- "issn:0028-1298",
- "issn:1432-1912"
- ],
- "doi:10.1007/s10843-017-0213-4": [
- "issn:1570-7385",
- "issn:1573-7349"
- ],
- "doi:10.1080/2157930x.2018.1439293": [
- "issn:2157-930X",
- "issn:2157-9318"
- ],
- "doi:10.1002/leap.1114": [
- "issn:0953-1513"
- ],
- "doi:10.1080/23299460.2017.1387509": [
- "issn:2329-9460",
- "issn:2329-9037"
- ],
- "doi:10.3390/e21070694": [
- "issn:1099-4300"
- ],
- "doi:10.1177/1847979017751484": [
- "issn:1847-9790",
- "issn:1847-9790"
- ],
- "doi:10.1177/1937586719855336": [
- "issn:1937-5867",
- "issn:2167-5112"
- ],
- "doi:10.1177/1940082919854058": [
- "issn:1940-0829",
- "issn:1940-0829"
- ],
- "doi:10.1007/s11119-018-9569-2": [
- "issn:1385-2256",
- "issn:1573-1618"
- ],
- "doi:10.1007/s11135-017-0522-7": [
- "issn:0033-5177",
- "issn:1573-7845"
- ],
- "doi:10.1007/s11135-018-0811-9": [
- "issn:0033-5177",
- "issn:1573-7845"
- ],
- "doi:10.3390/smartcities2030027": [
- "issn:2624-6511"
- ],
- "doi:10.3390/su10030667": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su10030682": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su10041084": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su10124748": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su10124790": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su10124847": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11030745": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11030863": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11040988": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11051377": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11061677": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11092526": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11113049": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11133548": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11154019": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11164388": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su11174738": [
- "issn:2071-1050"
- ],
- "doi:10.1080/14767724.2019.1665988": [
- "issn:1476-7724",
- "issn:1476-7732"
- ],
- "doi:10.1080/14783363.2018.1468247": [
- "issn:1478-3363",
- "issn:1478-3371"
- ],
- "doi:10.1080/14783363.2019.1652091": [
- "issn:1478-3363",
- "issn:1478-3371"
- ],
- "doi:10.1186/s12961-018-0298-9": [
- "issn:1478-4505"
- ],
- "doi:10.1039/c8cs00117k": [
- "issn:0306-0012",
- "issn:1460-4744"
- ],
- "doi:10.3390/ijerph16183326": [
- "issn:1660-4601"
- ],
- "doi:10.1111/joes.12270": [
- "issn:0950-0804"
- ],
- "doi:10.1371/journal.pone.0216408": [
- "issn:1932-6203"
- ],
- "doi:10.1177/1354816618793762": [
- "issn:1354-8166",
- "issn:2044-0375"
- ],
- "doi:10.1186/s12889-019-6842-x": [
- "issn:1471-2458"
- ],
- "doi:10.1371/journal.pone.0170296": [
- "issn:1932-6203"
- ],
- "doi:10.1002/asi.23267": [
- "issn:2330-1635"
- ],
- "doi:10.1002/asi.23630": [
- "issn:2330-1635"
- ],
- "doi:10.1002/asi.23770": [
- "issn:2330-1635",
- "issn:2330-1643"
- ],
- "doi:10.1002/asi.24130": [
- "issn:2330-1635",
- "issn:2330-1643"
- ],
- "doi:10.1002/asi.24171": [
- "issn:2330-1635",
- "issn:2330-1643"
- ],
- "doi:10.1177/1534735419846401": [
- "issn:1534-7354",
- "issn:1552-695X"
- ],
- "doi:10.1108/bij-03-2016-0031": [
- "issn:1463-5771"
- ],
- "doi:10.1108/bij-05-2018-0133": [
- "issn:1463-5771"
- ],
- "doi:10.1108/dta-10-2017-0078": [
- "issn:2514-9288"
- ],
- "doi:10.1108/ecam-08-2018-0350": [
- "issn:0969-9988"
- ],
- "doi:10.1108/ecam-09-2018-0390": [
- "issn:0969-9988"
- ],
- "doi:10.4218/etrij.2018-0059": [
- "issn:1225-6463"
- ],
- "doi:10.1177/0013916519843126": [
- "issn:0013-9165",
- "issn:1552-390X"
- ],
- "doi:10.1088/1748-9326/aabf9b": [
- "issn:1748-9326"
- ],
- "doi:10.1080/09585192.2019.1661267": [
- "issn:0958-5192",
- "issn:1466-4399"
- ],
- "doi:10.1080/09637486.2019.1620184": [
- "issn:0963-7486",
- "issn:1465-3478"
- ],
- "doi:10.1080/09537325.2019.1645826": [
- "issn:0953-7325",
- "issn:1465-3990"
- ],
- "doi:10.1016/j.ssci.2019.07.036": [
- "issn:0925-7535"
- ],
- "doi:10.1016/j.omega.2020.102388": [
- "issn:0305-0483"
- ],
- "doi:10.1016/j.orp.2020.100164": [
- "issn:2214-7160"
- ],
- "doi:10.1016/j.outlook.2019.04.009": [
- "issn:0029-6554"
- ],
- "doi:10.1016/j.ssci.2015.09.004": [
- "issn:0925-7535"
- ],
- "doi:10.1016/j.jup.2018.06.003": [
- "issn:0957-1787"
- ],
- "doi:10.1016/j.joi.2016.09.006": [
- "issn:1751-1577"
- ],
- "doi:10.1016/j.joi.2019.01.002": [
- "issn:1751-1577"
- ],
- "doi:10.1016/j.joi.2020.101043": [
- "issn:1751-1577"
- ],
- "doi:10.1016/j.jpurol.2018.04.004": [
- "issn:1477-5131"
- ],
- "doi:10.1016/j.autcon.2019.01.010": [
- "issn:0926-5805"
- ],
- "doi:10.1016/j.jbusres.2018.12.002": [
- "issn:0148-2963"
- ],
- "doi:10.1016/j.jbusres.2019.02.050": [
- "issn:0148-2963"
- ],
- "doi:10.1016/j.jclepro.2020.122945": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.jclepro.2020.125760": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.iref.2019.04.004": [
- "issn:1059-0560"
- ],
- "doi:10.1016/j.irfa.2019.101418": [
- "issn:1057-5219"
- ],
- "doi:10.1007/s10668-020-01179-x": [
- "issn:1387-585X",
- "issn:1573-2975"
- ],
- "doi:10.1007/s10916-020-01691-7": [
- "issn:0148-5598",
- "issn:1573-689X"
- ],
- "doi:10.1007/s10997-020-09554-6": [
- "issn:1385-3457",
- "issn:1572-963X"
- ],
- "doi:10.1007/s11126-020-09858-8": [
- "issn:0033-2720",
- "issn:1573-6709"
- ],
- "doi:10.1007/s11356-020-11947-x": [
- "issn:0944-1344",
- "issn:1614-7499"
- ],
- "doi:10.1016/j.jot.2020.04.010": [
- "issn:2214-031X"
- ],
- "doi:10.1016/j.foodchem.2018.06.139": [
- "issn:0308-8146"
- ],
- "doi:10.1016/j.chb.2018.07.001": [
- "issn:0747-5632"
- ],
- "doi:10.1016/j.ssci.2020.104900": [
- "issn:0925-7535"
- ],
- "doi:10.1016/j.jbusres.2018.12.050": [
- "issn:0148-2963"
- ],
- "doi:10.1016/j.jflm.2019.07.002": [
- "issn:1752-928X"
- ],
- "doi:10.1016/j.jgar.2017.11.017": [
- "issn:2213-7165"
- ],
- "doi:10.1016/j.jhtm.2020.06.001": [
- "issn:1447-6770"
- ],
- "doi:10.1016/j.resconrec.2018.09.029": [
- "issn:0921-3449"
- ],
- "doi:10.1016/j.respol.2018.07.005": [
- "issn:0048-7333"
- ],
- "doi:10.1016/j.asoc.2020.106467": [
- "issn:1568-4946"
- ],
- "doi:10.1016/j.joi.2014.04.001": [
- "issn:1751-1577"
- ],
- "doi:10.1007/s11356-020-11643-w": [
- "issn:0944-1344",
- "issn:1614-7499"
- ],
- "doi:10.1007/s11846-020-00437-6": [
- "issn:1863-6683",
- "issn:1863-6691"
- ],
- "doi:10.1016/j.ecolind.2020.107102": [
- "issn:1470-160X"
- ],
- "doi:10.1016/j.ejor.2017.10.041": [
- "issn:0377-2217"
- ],
- "doi:10.1016/j.ejor.2018.10.028": [
- "issn:0377-2217"
- ],
- "doi:10.1016/j.cosrev.2020.100335": [
- "issn:1574-0137"
- ],
- "doi:10.1016/j.jdmm.2018.06.005": [
- "issn:2212-571X"
- ],
- "doi:10.1016/j.jclepro.2020.124033": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.jclepro.2020.125751": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.conbuildmat.2018.03.147": [
- "issn:0950-0618"
- ],
- "doi:10.1016/j.techfore.2020.120118": [
- "issn:0040-1625"
- ],
- "doi:10.1016/j.bjan.2020.02.003": [
- "issn:0034-7094"
- ],
- "doi:10.1016/j.techfore.2017.03.012": [
- "issn:0040-1625"
- ],
- "doi:10.1016/j.techfore.2018.07.028": [
- "issn:0040-1625"
- ],
- "doi:10.1016/j.techfore.2020.120377": [
- "issn:0040-1625"
- ],
- "doi:10.1016/j.tifs.2019.01.011": [
- "issn:0924-2244"
- ],
- "doi:10.7250/bjrbe.2020-15.470": [
- "issn:1822-427X",
- "issn:1822-4288"
- ],
- "doi:10.1007/s11192-020-03805-x": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1016/j.scitotenv.2019.135358": [
- "issn:0048-9697"
- ],
- "doi:10.1016/j.scitotenv.2020.141344": [
- "issn:0048-9697"
- ],
- "doi:10.1016/j.ssci.2019.01.029": [
- "issn:0925-7535"
- ],
- "doi:10.1016/j.joi.2016.05.002": [
- "issn:1751-1577"
- ],
- "doi:10.1016/j.joi.2016.07.008": [
- "issn:1751-1577"
- ],
- "doi:10.1016/j.joi.2019.100976": [
- "issn:1751-1577"
- ],
- "doi:10.1016/j.buildenv.2018.12.059": [
- "issn:0360-1323"
- ],
- "doi:10.1016/j.carbpol.2018.10.039": [
- "issn:0144-8617"
- ],
- "doi:10.1016/j.indmarman.2020.02.022": [
- "issn:0019-8501"
- ],
- "doi:10.1016/j.scitotenv.2020.141642": [
- "issn:0048-9697"
- ],
- "doi:10.1016/j.cmpb.2019.105075": [
- "issn:0169-2607"
- ],
- "doi:10.1016/j.aap.2018.06.010": [
- "issn:0001-4575"
- ],
- "doi:10.1016/j.aller.2020.01.001": [
- "issn:0301-0546"
- ],
- "doi:10.1016/j.scs.2020.102608": [
- "issn:2210-6707"
- ],
- "doi:10.1016/j.joi.2018.03.005": [
- "issn:1751-1577"
- ],
- "doi:10.1016/j.foodchem.2019.05.021": [
- "issn:0308-8146"
- ],
- "doi:10.1016/j.fss.2020.03.012": [
- "issn:0165-0114"
- ],
- "doi:10.1016/j.fuel.2019.116598": [
- "issn:0016-2361"
- ],
- "doi:10.1016/j.resconrec.2018.03.005": [
- "issn:0921-3449"
- ],
- "doi:10.1016/j.asoc.2018.03.041": [
- "issn:1568-4946"
- ],
- "doi:10.1016/j.autcon.2019.02.022": [
- "issn:0926-5805"
- ],
- "doi:10.1016/j.autcon.2020.103490": [
- "issn:0926-5805"
- ],
- "doi:10.1016/j.socscimed.2019.112552": [
- "issn:0277-9536"
- ],
- "doi:10.1016/j.solener.2020.02.013": [
- "issn:0038-092X"
- ],
- "doi:10.2147/jpr.s306594": [
- "issn:1178-7090"
- ],
- "doi:10.3390/ma14071745": [
- "issn:1996-1944"
- ],
- "doi:10.3390/plants10040768": [
- "issn:2223-7747"
- ],
- "doi:10.1155/2021/6634055": [
- "issn:2314-6141",
- "issn:2314-6133"
- ],
- "doi:10.1155/2021/6657167": [
- "issn:2314-6141",
- "issn:2314-6133"
- ],
- "doi:10.1007/s10551-021-04856-7": [
- "issn:0167-4544",
- "issn:1573-0697"
- ],
- "doi:10.1016/j.ijggc.2021.103309": [
- "issn:1750-5836"
- ],
- "doi:10.3390/en14144288": [
- "issn:1996-1073"
- ],
- "doi:10.1002/cjce.23913": [
- "issn:0008-4034",
- "issn:1939-019X"
- ],
- "doi:10.1002/cjce.24216": [
- "issn:0008-4034",
- "issn:1939-019X"
- ],
- "doi:10.1108/dta-08-2020-0179": [
- "issn:2514-9288"
- ],
- "doi:10.1007/s10660-021-09464-1": [
- "issn:1389-5753",
- "issn:1572-9362"
- ],
- "doi:10.1016/j.jclepro.2021.126277": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.jclepro.2021.127503": [
- "issn:0959-6526"
- ],
- "doi:10.3390/ijerph18147503": [
- "issn:1660-4601"
- ],
- "doi:10.1155/2021/5568219": [
- "issn:1741-4288",
- "issn:1741-427X"
- ],
- "doi:10.1080/13032917.2021.1954042": [
- "issn:1303-2917",
- "issn:2156-6909"
- ],
- "doi:10.1007/s43538-021-00016-7": [
- "issn:0370-0046",
- "issn:2454-9983"
- ],
- "doi:10.2196/31097": [
- "issn:2291-5222"
- ],
- "doi:10.3390/app11062767": [
- "issn:2076-3417"
- ],
- "doi:10.3390/app11073015": [
- "issn:2076-3417"
- ],
- "doi:10.1590/1678-987320287607": [
- "issn:1678-9873",
- "issn:0104-4478"
- ],
- "doi:10.1007/s12144-021-01947-6": [
- "issn:1046-1310",
- "issn:1936-4733"
- ],
- "doi:10.1007/s11270-021-05224-x": [
- "issn:0049-6979",
- "issn:1573-2932"
- ],
- "doi:10.1371/journal.pone.0253847": [
- "issn:1932-6203"
- ],
- "doi:10.1016/j.geoderma.2021.115076": [
- "issn:0016-7061"
- ],
- "doi:10.1111/ejed.12446": [
- "issn:0141-8211",
- "issn:1465-3435"
- ],
- "doi:10.1080/00038628.2021.1910480": [
- "issn:0003-8628",
- "issn:1758-9622"
- ],
- "doi:10.1002/agj2.20628": [
- "issn:0002-1962",
- "issn:1435-0645"
- ],
- "doi:10.22394/2410-132x-2021-7-1-66-84": [
- "issn:2410-132X"
- ],
- "doi:10.1016/j.heliyon.2021.e07154": [
- "issn:2405-8440"
- ],
- "doi:10.3390/ijerph18084234": [
- "issn:1660-4601"
- ],
- "doi:10.3390/molecules26133882": [
- "issn:1420-3049"
- ],
- "doi:10.1016/j.jbusres.2021.06.045": [
- "issn:0148-2963"
- ],
- "doi:10.1590/1984-92302021v28n9604pt": [
- "issn:1984-9230",
- "issn:1413-585X"
- ],
- "doi:10.1177/1548051821997406": [
- "issn:1548-0518",
- "issn:1939-7089"
- ],
- "doi:10.3145/epi.2021.may.05": [
- "issn:1386-6710",
- "issn:1699-2407"
- ],
- "doi:10.1038/s41545-021-00131-4": [
- "issn:2059-7037"
- ],
- "doi:10.1080/0194262x.2021.1937772": [
- "issn:0194-262X",
- "issn:1541-1109"
- ],
- "doi:10.3390/agronomy11081504": [
- "issn:2073-4395"
- ],
- "doi:10.3390/agronomy11081557": [
- "issn:2073-4395"
- ],
- "doi:10.3390/ijerph18105143": [
- "issn:1660-4601"
- ],
- "doi:10.3390/ijerph18115851": [
- "issn:1660-4601"
- ],
- "doi:10.3390/ijerph18115985": [
- "issn:1660-4601"
- ],
- "doi:10.1080/10978526.2021.1930551": [
- "issn:1097-8526",
- "issn:1528-6932"
- ],
- "doi:10.3390/educsci11040184": [
- "issn:2227-7102"
- ],
- "doi:10.3390/ijerph18147358": [
- "issn:1660-4601"
- ],
- "doi:10.3390/recycling6020034": [
- "issn:2313-4321"
- ],
- "doi:10.1016/j.jenvman.2021.112335": [
- "issn:0301-4797"
- ],
- "doi:10.1186/s12906-021-03354-7": [
- "issn:2662-7671"
- ],
- "doi:10.1016/j.ijdrr.2021.102141": [
- "issn:2212-4209"
- ],
- "doi:10.1080/09537325.2020.1865530": [
- "issn:0953-7325",
- "issn:1465-3990"
- ],
- "doi:10.1111/1758-5899.12912": [
- "issn:1758-5880",
- "issn:1758-5899"
- ],
- "doi:10.1111/jpim.12562": [
- "issn:0737-6782",
- "issn:1540-5885"
- ],
- "doi:10.3390/ijerph18116135": [
- "issn:1660-4601"
- ],
- "doi:10.1007/s11192-019-03222-9": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03230-9": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03234-5": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s11192-019-03238-1": [
- "issn:0138-9130",
- "issn:1588-2861"
- ],
- "doi:10.1007/s10098-018-1624-1": [
- "issn:1618-954X",
- "issn:1618-9558"
- ],
- "doi:10.1155/2018/2607618": [
- "issn:1687-7047",
- "issn:1687-7055"
- ],
- "doi:10.1093/reseval/rvz015": [
- "issn:0958-2029",
- "issn:1471-5449"
- ],
- "doi:10.1007/s10961-017-9637-1": [
- "issn:0892-9912",
- "issn:1573-7047"
- ],
- "doi:10.1111/pirs.12291": [
- "issn:1056-8190"
- ],
- "doi:10.1111/rec.12899": [
- "issn:1061-2971"
- ],
- "doi:10.1080/08874417.2019.1601538": [
- "issn:0887-4417",
- "issn:2380-2057"
- ],
- "doi:10.1177/0165551519837182": [
- "issn:0165-5515",
- "issn:1741-6485"
- ],
- "doi:10.12688/f1000research.12314.1": [
- "issn:2046-1402"
- ],
- "doi:10.1017/s003329171800363x": [
- "issn:0033-2917",
- "issn:1469-8978"
- ],
- "doi:10.7717/peerj.2567": [
- "issn:2167-8359"
- ],
- "doi:10.1002/pri.1760": [
- "issn:1358-2267",
- "issn:1471-2865"
- ],
- "doi:10.1007/s10457-017-0107-4": [
- "issn:0167-4366",
- "issn:1572-9680"
- ],
- "doi:10.1007/s10457-018-0231-9": [
- "issn:0167-4366",
- "issn:1572-9680"
- ],
- "doi:10.1177/2059204318811786": [
- "issn:2059-2043",
- "issn:2059-2043"
- ],
- "doi:10.1007/s12053-016-9470-7": [
- "issn:1570-646X",
- "issn:1570-6478"
- ],
- "doi:10.1007/s12078-018-9243-0": [
- "issn:1936-5802",
- "issn:1936-5810"
- ],
- "doi:10.1007/s12145-019-00408-w": [
- "issn:1865-0473",
- "issn:1865-0481"
- ],
- "doi:10.1007/978-3-319-91473-2_1": [
- "isbn:9783319914725",
- "isbn:9783319914732"
- ],
- "doi:10.3390/en11071894": [
- "issn:1996-1073"
- ],
- "doi:10.3390/en12081414": [
- "issn:1996-1073"
- ],
- "doi:10.3390/en12081539": [
- "issn:1996-1073"
- ],
- "doi:10.3390/f10010072": [
- "issn:1999-4907"
- ],
- "doi:10.3390/f9040223": [
- "issn:1999-4907"
- ],
- "doi:10.1002/cjce.23344": [
- "issn:0008-4034"
- ],
- "doi:10.1002/cjce.23346": [
- "issn:0008-4034"
- ],
- "doi:10.1002/cjce.23466": [
- "issn:0008-4034",
- "issn:1939-019X"
- ],
- "doi:10.1002/cjce.23530": [
- "issn:0008-4034",
- "issn:1939-019X"
- ],
- "doi:10.1080/23311975.2019.1632569": [
- "issn:2331-1975"
- ],
- "doi:10.1111/jan.13868": [
- "issn:0309-2402",
- "issn:1365-2648"
- ],
- "doi:10.1007/s10995-019-02772-x": [
- "issn:1092-7875",
- "issn:1573-6628"
- ],
- "doi:10.1371/journal.pone.0196549": [
- "issn:1932-6203"
- ],
- "doi:10.1371/journal.pone.0200929": [
- "issn:1932-6203"
- ],
- "doi:10.3390/admsci8030034": [
- "issn:2076-3387"
- ],
- "doi:10.1007/s10902-018-0022-z": [
- "issn:1389-4978",
- "issn:1573-7780"
- ],
- "doi:10.1177/0002764218766581": [
- "issn:0002-7642",
- "issn:1552-3381"
- ],
- "doi:10.1007/s00170-018-2617-2": [
- "issn:0268-3768",
- "issn:1433-3015"
- ],
- "doi:10.1002/sdr.1628": [
- "issn:0883-7066",
- "issn:1099-1727"
- ],
- "doi:10.1002/sd.1927": [
- "issn:0968-0802"
- ],
- "doi:10.1017/dmp.2015.58": [
- "issn:1935-7893",
- "issn:1938-744X"
- ],
- "doi:10.1007/s10669-018-9687-4": [
- "issn:2194-5403",
- "issn:2194-5411"
- ],
- "doi:10.1007/s10676-018-9457-5": [
- "issn:1388-1957",
- "issn:1572-8439"
- ],
- "doi:10.1080/1540496x.2018.1433658": [
- "issn:1540-496X",
- "issn:1558-0938"
- ],
- "doi:10.1080/15440478.2019.1636742": [
- "issn:1544-0478",
- "issn:1544-046X"
- ],
- "doi:10.1007/s11575-016-0308-5": [
- "issn:0938-8249",
- "issn:1861-8901"
- ],
- "doi:10.3390/nu11061357": [
- "issn:2072-6643"
- ],
- "doi:10.1186/s11671-019-2994-y": [
- "issn:1931-7573",
- "issn:1556-276X"
- ],
- "doi:10.1080/07294360.2019.1654438": [
- "issn:0729-4360",
- "issn:1469-8366"
- ],
- "doi:10.1007/s00217-019-03321-0": [
- "issn:1438-2377",
- "issn:1438-2385"
- ],
- "doi:10.1186/s41182-017-0073-6": [
- "issn:1349-4147"
- ],
- "doi:10.1186/s41205-017-0012-5": [
- "issn:2365-6271"
- ],
- "doi:10.1186/s41239-018-0101-6": [
- "issn:2365-9440"
- ],
- "doi:10.1186/s41239-018-0103-4": [
- "issn:2365-9440"
- ],
- "doi:10.1186/s42238-019-0004-y": [
- "issn:2522-5782"
- ],
- "doi:10.1057/s41599-018-0175-8": [
- "issn:2055-1045"
- ],
- "doi:10.1061/(asce)co.1943-7862.0001492": [
- "issn:0733-9364",
- "issn:1943-7862"
- ],
- "doi:10.1061/(asce)co.1943-7862.0001682": [
- "issn:0733-9364",
- "issn:1943-7862"
- ],
- "doi:10.1061/(asce)ei.1943-5541.0000425": [
- "issn:1052-3928",
- "issn:1943-5541"
- ],
- "doi:10.1061/(asce)me.1943-5479.0000722": [
- "issn:0742-597X",
- "issn:1943-5479"
- ],
- "doi:10.1007/s11301-018-0140-z": [
- "issn:2198-1620",
- "issn:2198-1639"
- ],
- "doi:10.1007/s11301-019-00172-7": [
- "issn:2198-1620",
- "issn:2198-1639"
- ],
- "doi:10.3390/antibiotics7040102": [
- "issn:2079-6382"
- ],
- "doi:10.1177/1477153519857788": [
- "issn:1477-1535",
- "issn:1477-0938"
- ],
- "doi:10.1590/2318-08892018000300001": [
- "issn:2318-0889",
- "issn:0103-3786"
- ],
- "doi:10.1590/2318-0889201931e190027": [
- "issn:2318-0889",
- "issn:0103-3786"
- ],
- "doi:10.3897/rio.2.e9841": [
- "issn:2367-7163"
- ],
- "doi:10.3897/rio.5.e35820": [
- "issn:2367-7163"
- ],
- "doi:10.1007/s00484-019-01695-0": [
- "issn:0020-7128",
- "issn:1432-1254"
- ],
- "doi:10.1007/s00500-018-3168-z": [
- "issn:1432-7643",
- "issn:1433-7479"
- ],
- "doi:10.1002/csr.1792": [
- "issn:1535-3958",
- "issn:1535-3966"
- ],
- "doi:10.1002/rra.3431": [
- "issn:1535-1459",
- "issn:1535-1467"
- ],
- "doi:10.1111/petr.12933": [
- "issn:1397-3142"
- ],
- "doi:10.2196/12625": [
- "issn:1438-8871"
- ],
- "doi:10.2196/14401": [
- "issn:2291-9694"
- ],
- "doi:10.1080/10941665.2019.1567564": [
- "issn:1094-1665",
- "issn:1741-6507"
- ],
- "doi:10.1080/10963758.2019.1655433": [
- "issn:1096-3758",
- "issn:2325-6540"
- ],
- "doi:10.1080/00131911.2019.1566212": [
- "issn:0013-1911",
- "issn:1465-3397"
- ],
- "doi:10.3390/ijerph16010029": [
- "issn:1660-4601"
- ],
- "doi:10.3390/ijerph16111928": [
- "issn:1660-4601"
- ],
- "doi:10.3390/ijerph16152788": [
- "issn:1660-4601"
- ],
- "doi:10.1007/s41233-021-00047-4": [
- "issn:2366-0139",
- "issn:2366-0147"
- ],
- "doi:10.1108/ecam-04-2021-0287": [
- "issn:0969-9988"
- ],
- "doi:10.3390/agriculture11090889": [
- "issn:2077-0472"
- ],
- "doi:10.1155/2021/9274918": [
- "issn:1687-8094",
- "issn:1687-8086"
- ],
- "doi:10.1007/s00296-021-04988-z": [
- "issn:0172-8172",
- "issn:1437-160X"
- ],
- "doi:10.1021/acs.analchem.9b05454": [
- "issn:0003-2700",
- "issn:1520-6882"
- ],
- "doi:10.1002/adom.202100519": [
- "issn:2195-1071",
- "issn:2195-1071"
- ],
- "doi:10.1016/j.jpurol.2021.08.003": [
- "issn:1477-5131"
- ],
- "doi:10.3390/economies9030110": [
- "issn:2227-7099"
- ],
- "doi:10.3390/su13168997": [
- "issn:2071-1050"
- ],
- "doi:10.1080/14778238.2021.1943553": [
- "issn:1477-8238",
- "issn:1477-8246"
- ],
- "doi:10.1111/sms.14019": [
- "issn:0905-7188",
- "issn:1600-0838"
- ],
- "doi:10.1136/bmjspcare-2021-002982": [
- "issn:2045-435X",
- "issn:2045-4368"
- ],
- "doi:10.3390/membranes11080600": [
- "issn:2077-0375"
- ],
- "doi:10.1002/jclp.23227": [
- "issn:0021-9762",
- "issn:1097-4679"
- ],
- "doi:10.1007/978-981-16-4760-4_1": [
- "isbn:9789811647598",
- "isbn:9789811647604"
- ],
- "doi:10.1186/s12302-021-00552-5": [
- "issn:2190-4707",
- "issn:2190-4715"
- ],
- "doi:10.3390/su131810094": [
- "issn:2071-1050"
- ],
- "doi:10.1016/j.techsoc.2021.101738": [
- "issn:0160-791X"
- ],
- "doi:10.3390/en14164919": [
- "issn:1996-1073"
- ],
- "doi:10.1080/03088839.2021.1969460": [
- "issn:0308-8839",
- "issn:1464-5254"
- ],
- "doi:10.2147/cmar.s324284": [
- "issn:1179-1322"
- ],
- "doi:10.1007/s10639-021-10720-y": [
- "issn:1360-2357",
- "issn:1573-7608"
- ],
- "doi:10.1007/s11274-021-03123-1": [
- "issn:0959-3993",
- "issn:1573-0972"
- ],
- "doi:10.1007/s11356-021-15939-3": [
- "issn:0944-1344",
- "issn:1614-7499"
- ],
- "doi:10.1080/00472778.2021.1955122": [
- "issn:0047-2778",
- "issn:1540-627X"
- ],
- "doi:10.1186/s12992-021-00754-9": [
- "issn:1744-8603"
- ],
- "doi:10.1002/mabi.202100103": [
- "issn:1616-5187",
- "issn:1616-5195"
- ],
- "doi:10.1016/j.iref.2021.08.002": [
- "issn:1059-0560"
- ],
- "doi:10.1108/ecam-03-2021-0232": [
- "issn:0969-9988"
- ],
- "doi:10.3390/brainsci11081077": [
- "issn:2076-3425"
- ],
- "doi:10.3390/jtaer16060116": [
- "issn:0718-1876"
- ],
- "doi:10.1080/15440478.2021.1952139": [
- "issn:1544-0478",
- "issn:1544-046X"
- ],
- "doi:10.17533/udea.le.n95a344139": [
- "issn:2323-0622",
- "issn:0120-2596"
- ],
- "doi:10.1016/j.techfore.2021.121026": [
- "issn:0040-1625"
- ],
- "doi:10.1177/03128962211035470": [
- "issn:0312-8962",
- "issn:1327-2020"
- ],
- "doi:10.1111/and.14206": [
- "issn:0303-4569",
- "issn:1439-0272"
- ],
- "doi:10.1007/s11356-021-15787-1": [
- "issn:0944-1344",
- "issn:1614-7499"
- ],
- "doi:10.1002/ece3.7980": [
- "issn:2045-7758",
- "issn:2045-7758"
- ],
- "doi:10.1007/978-981-16-6128-0_25": [
- "isbn:9789811661273",
- "isbn:9789811661280"
- ],
- "doi:10.1021/acs.iecr.8b00936": [
- "issn:0888-5885",
- "issn:1520-5045"
- ],
- "doi:10.3390/life11090970": [
- "issn:2075-1729"
- ],
- "doi:10.3390/su13179780": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su13179631": [
- "issn:2071-1050"
- ],
- "doi:10.1007/978-3-030-75722-9_7": [
- "isbn:9783030757212",
- "isbn:9783030757229"
- ],
- "doi:10.3390/jrfm14090427": [
- "issn:1911-8074"
- ],
- "doi:10.3390/su13179981": [
- "issn:2071-1050"
- ],
- "doi:10.3390/systems9030067": [
- "issn:2079-8954"
- ],
- "doi:10.1108/jsma-01-2021-0002": [
- "issn:1755-425X"
- ],
- "doi:10.1080/03088839.2021.1972486": [
- "issn:0308-8839",
- "issn:1464-5254"
- ],
- "doi:10.3233/wor-213576": [
- "issn:1051-9815",
- "issn:1875-9270"
- ],
- "doi:10.3390/en14185711": [
- "issn:1996-1073"
- ],
- "doi:10.1007/s42690-021-00616-2": [
- "issn:1742-7592"
- ],
- "doi:10.1002/bbb.2290": [
- "issn:1932-104X",
- "issn:1932-1031"
- ],
- "doi:10.3390/ijerph18179396": [
- "issn:1660-4601"
- ],
- "doi:10.1016/j.tifs.2021.08.032": [
- "issn:0924-2244"
- ],
- "doi:10.1186/s40066-021-00315-8": [
- "issn:2048-7010"
- ],
- "doi:10.1016/j.techfore.2021.121179": [
- "issn:0040-1625"
- ],
- "doi:10.1108/jdqs-08-2021-0020": [
- "issn:1229-988X",
- "issn:2713-6647"
- ],
- "doi:10.1016/j.egyr.2021.06.084": [
- "issn:2352-4847"
- ],
- "doi:10.1016/j.jsr.2021.09.002": [
- "issn:0022-4375"
- ],
- "doi:10.1007/978-3-030-78570-3_4": [
- "isbn:9783030785697",
- "isbn:9783030785703"
- ],
- "doi:10.1007/s11540-021-09521-0": [
- "issn:0014-3065",
- "issn:1871-4528"
- ],
- "doi:10.1108/jfmm-02-2021-0046": [
- "issn:1361-2026"
- ],
- "doi:10.3390/su13179582": [
- "issn:2071-1050"
- ],
- "doi:10.3390/ijerph18126187": [
- "issn:1660-4601"
- ],
- "doi:10.3390/su13020791": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su13031275": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su13042126": [
- "issn:2071-1050"
- ],
- "doi:10.1007/s13132-021-00803-z": [
- "issn:1868-7865",
- "issn:1868-7873"
- ],
- "doi:10.1155/2021/5547530": [
- "issn:1563-5147",
- "issn:1024-123X"
- ],
- "doi:10.3390/catal11080913": [
- "issn:2073-4344"
- ],
- "doi:10.1002/kpm.1658": [
- "issn:1092-4604",
- "issn:1099-1441"
- ],
- "doi:10.3390/ijerph18041764": [
- "issn:1660-4601"
- ],
- "doi:10.3390/molecules26144334": [
- "issn:1420-3049"
- ],
- "doi:10.1162/qss_a_00109": [
- "issn:2641-3337"
- ],
- "doi:10.15561/20755279.2021.0301": [
- "issn:2308-7250",
- "issn:2075-5279"
- ],
- "doi:10.1016/j.spc.2021.03.030": [
- "issn:2352-5509"
- ],
- "doi:10.1016/j.compind.2021.103458": [
- "issn:0166-3615"
- ],
- "doi:10.3390/su13116225": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su13126562": [
- "issn:2071-1050"
- ],
- "doi:10.3390/su13158261": [
- "issn:2071-1050"
- ],
- "doi:10.1016/j.envres.2021.111087": [
- "issn:0013-9351"
- ],
- "doi:10.3390/infrastructures6020021": [
- "issn:2412-3811"
- ],
- "doi:10.3846/jcem.2021.15260": [
- "issn:1392-3730",
- "issn:1822-3605"
- ],
- "doi:10.1177/15533506211026411": [
- "issn:1553-3506",
- "issn:1553-3514"
- ],
- "doi:10.1108/wjemsd-06-2020-0068": [
- "issn:2042-5961"
- ],
- "doi:10.1177/10963480211011540": [
- "issn:1096-3480",
- "issn:1557-7554"
- ],
- "doi:10.1007/s11270-021-05247-4": [
- "issn:0049-6979",
- "issn:1573-2932"
- ],
- "doi:10.1177/19322968211005500": [
- "issn:1932-2968",
- "issn:1932-2968"
- ],
- "doi:10.3390/jmse9020218": [
- "issn:2077-1312"
- ],
- "doi:10.3390/jmse9030266": [
- "issn:2077-1312"
- ],
- "doi:10.1007/s11301-021-00214-z": [
- "issn:2198-1620",
- "issn:2198-1639"
- ],
- "doi:10.1016/j.jhazmat.2020.125028": [
- "issn:0304-3894"
- ],
- "doi:10.1016/j.jhazmat.2021.126361": [
- "issn:0304-3894"
- ],
- "doi:10.1111/cobi.13726": [
- "issn:0888-8892",
- "issn:1523-1739"
- ],
- "doi:10.1002/hfm.20889": [
- "issn:1090-8471",
- "issn:1520-6564"
- ],
- "doi:10.1007/s10668-021-01293-4": [
- "issn:1387-585X",
- "issn:1573-2975"
- ],
- "doi:10.1016/j.jhtm.2021.04.005": [
- "issn:1447-6770"
- ],
- "doi:10.1080/00207543.2021.1919333": [
- "issn:0020-7543",
- "issn:1366-588X"
- ],
- "doi:10.1590/1806-9649-2021v28e5171": [
- "issn:1806-9649",
- "issn:0104-530X"
- ],
- "doi:10.3390/su13031136": [
- "issn:2071-1050"
- ],
- "doi:10.1007/s12210-021-01003-2": [
- "issn:2037-4631",
- "issn:1720-0776"
- ],
- "doi:10.1080/13504509.2021.1881651": [
- "issn:1350-4509",
- "issn:1745-2627"
- ],
- "doi:10.2147/cmar.s270099": [
- "issn:1179-1322"
- ],
- "doi:10.3390/educsci11030115": [
- "issn:2227-7102"
- ],
- "doi:10.3390/educsci11070353": [
- "issn:2227-7102"
- ],
- "doi:10.3390/nu13061966": [
- "issn:2072-6643"
- ],
- "doi:10.3390/proteomes9020029": [
- "issn:2227-7382"
- ],
- "doi:10.1016/j.jenvman.2021.113382": [
- "issn:0301-4797"
- ],
- "doi:10.1186/s12936-021-03698-y": [
- "issn:1475-2875"
- ],
- "doi:10.3390/en14133852": [
- "issn:1996-1073"
- ],
- "doi:10.3390/en14133917": [
- "issn:1996-1073"
- ],
- "doi:10.1002/cjce.24089": [
- "issn:0008-4034",
- "issn:1939-019X"
- ],
- "doi:10.1002/cjce.24127": [
- "issn:0008-4034",
- "issn:1939-019X"
- ],
- "doi:10.1007/s10661-020-08793-2": [
- "issn:0167-6369",
- "issn:1573-2959"
- ],
- "doi:10.1016/j.jclepro.2021.126622": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.jclepro.2021.127627": [
- "issn:0959-6526"
- ],
- "doi:10.1016/j.jclepro.2021.128009": [
- "issn:0959-6526"
- ],
- "doi:10.1007/s11356-021-13094-3": [
- "issn:0944-1344",
- "issn:1614-7499"
- ],
- "doi:10.3390/ijfs9030035": [
- "issn:2227-7072"
- ],
- "doi:10.1007/s13748-021-00252-4": [
- "issn:2192-6352",
- "issn:2192-6360"
- ],
- "doi:10.1080/21645515.2021.1910000": [
- "issn:2164-5515",
- "issn:2164-554X"
- ],
- "doi:10.1177/1069031x211004234": [
- "issn:1069-031X",
- "issn:1547-7215"
- ],
- "doi:10.3390/polym13121957": [
- "issn:2073-4360"
- ],
- "doi:10.1007/978-3-030-58799-4_49": [
- "isbn:9783030587987",
- "isbn:9783030587994"
- ],
- "doi:10.1177/1745691620927674": [
- "issn:1745-6916",
- "issn:1745-6924"
- ],
- "doi:10.1007/978-3-030-53036-5_30": [
- "isbn:9783030530358",
- "isbn:9783030530365"
- ],
- "doi:10.1177/0037549720944483": [
- "issn:0037-5497",
- "issn:1741-3133"
- ],
- "doi:10.1017/sjp.2020.40": [
- "issn:1138-7416",
- "issn:1988-2904"
- ],
- "doi:10.1007/s40200-020-00606-0": [
- "issn:2251-6581"
- ],
- "doi:10.1007/s00521-020-05395-4": [
- "issn:0941-0643",
- "issn:1433-3058"
- ],
- "doi:10.1007/s11695-020-05058-2": [
- "issn:0960-8923",
- "issn:1708-0428"
- ],
- "doi:10.1002/sres.2731": [
- "issn:1092-7026",
- "issn:1099-1743"
- ],
- "doi:10.1108/jic-02-2020-0054": [
- "issn:1469-1930"
- ],
- "doi:10.1108/jic-05-2020-0142": [
- "issn:1469-1930"
- ],
- "doi:10.3897/neotropical.15.e52905": [
- "issn:2236-3777"
- ],
- "doi:10.3390/admsci10030057": [
- "issn:2076-3387"
- ],
- "doi:10.3390/admsci10030069": [
- "issn:2076-3387"
- ],
- "doi:10.1186/s12888-020-02825-4": [
- "issn:1471-244X"
- ],
- "doi:10.1080/00472778.2020.1776578": [
- "issn:0047-2778",
- "issn:1540-627X"
- ],
- "doi:10.1007/s11301-020-00196-4": [
- "issn:2198-1620",
- "issn:2198-1639"
- ],
- "doi:10.1080/08989621.2020.1836620": [
- "issn:0898-9621",
- "issn:1545-5815"
- ]
- },
- "references": {
- "doi:10.1162/qss_a_00023": [
- "doi:10.1007/s11192-019-03217-6",
- "doi:10.1007/s11192-019-03311-9",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1371/journal.pbio.3000385",
- "doi:10.3233/ds-190016"
- ],
- "doi:10.1007/s11192-019-03217-6": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.3233/ds-190016"
- ],
- "doi:10.1007/s11192-019-03311-9": [
- "doi:10.1007/s11192-019-03217-6"
- ],
- "doi:10.1038/sdata.2016.18": [],
- "doi:10.1371/journal.pbio.3000385": [],
- "doi:10.3233/ds-190016": [],
- "doi:10.1007/s11192-020-03397-6": [
- "doi:10.1007/s11192-019-03311-9",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1186/s13321-020-00448-1": [
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1007/978-3-030-61244-3_16": [
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1007/978-3-030-61244-3_6": [
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1007/978-3-030-54956-5_2": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1007/978-3-030-55814-7_15": [
- "doi:10.1038/sdata.2016.18",
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1007/s11192-020-03690-4": [
- "doi:10.1007/s11192-019-03217-6",
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1007/978-3-030-62466-8_28": [
- "doi:10.1007/s11192-019-03217-6",
- "doi:10.1038/sdata.2016.18",
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1038/s41597-020-00749-y": [
- "doi:10.1162/qss_a_00023",
- "doi:10.1371/journal.pbio.3000385"
- ],
- "doi:10.1007/978-3-030-77385-4_37": [
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1007/s11192-021-04079-7": [
- "doi:10.1162/qss_a_00023",
- "doi:10.1162/qss_a_00112"
- ],
- "doi:10.1162/qss_a_00112": [
- "doi:10.1162/qss_a_00023",
- "doi:10.1007/s11192-019-03217-6"
- ],
- "doi:10.7717/peerj-cs.421": [
- "doi:10.1007/s11192-019-03217-6",
- "doi:10.1162/qss_a_00023",
- "doi:10.1007/s11192-019-03311-9"
- ],
- "doi:10.1007/s11192-021-04097-5": [
- "doi:10.1162/qss_a_00023",
- "doi:10.1007/978-3-030-62466-8_28",
- "doi:10.1007/s11192-019-03217-6"
- ],
- "doi:10.1007/978-3-030-84825-5_11": [
- "doi:10.1162/qss_a_00023",
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.3989/arbor.2021.799007": [
- "doi:10.1371/journal.pbio.3000385",
- "doi:10.1007/s11192-019-03217-6",
- "doi:10.1007/s11192-020-03690-4",
- "doi:10.1162/qss_a_00023",
- "doi:10.1162/qss_a_00112"
- ],
- "doi:10.1162/qss_a_00146": [
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.1080/19386389.2021.1999156": [
- "doi:10.1162/qss_a_00023",
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.3390/app11219997": [
- "doi:10.1162/qss_a_00023"
- ],
- "doi:10.3145/thinkepi.2021.e15e04": [
- "doi:10.1007/s11192-020-03690-4",
- "doi:10.1162/qss_a_00023",
- "doi:10.1007/s11192-019-03217-6",
- "doi:10.1371/journal.pbio.3000385"
- ],
- "doi:10.1007/978-3-030-16187-3_20": [],
- "doi:10.1017/s0269888920000065": [],
- "doi:10.1002/asi.24301": [],
- "doi:10.1007/978-3-030-59194-6_37": [
- "doi:10.1007/978-3-030-16187-3_20"
- ],
- "doi:10.1007/978-3-030-61244-3_7": [],
- "doi:10.3897/biss.4.59126": [],
- "doi:10.1007/978-3-030-54956-5_9": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1007/978-3-030-71903-6_32": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.3897/bdj.9.e67671": [
- "doi:10.3897/biss.4.59126"
- ],
- "doi:10.1007/978-3-030-91669-5_24": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1016/j.joi.2014.07.006": [],
- "doi:10.1007/s11042-019-08000-6": [],
- "doi:10.3233/ds-190017": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.3233/ds-190023": [],
- "doi:10.31263/voebm.v72i2.2808": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.1007/s11192-016-1879-4": [],
- "doi:10.1007/s11192-016-1971-9": [],
- "doi:10.1007/s11192-016-2071-6": [],
- "doi:10.1007/s11192-016-2132-x": [],
- "doi:10.1007/s11192-016-2194-9": [],
- "doi:10.1007/s11192-016-2215-8": [
- "doi:10.1016/j.joi.2014.07.006"
- ],
- "doi:10.1007/s11192-017-2436-5": [],
- "doi:10.1007/s11192-017-2449-0": [],
- "doi:10.1007/s11192-017-2452-5": [],
- "doi:10.1007/s11192-017-2481-0": [],
- "doi:10.1007/s11192-017-2538-0": [],
- "doi:10.1007/s11192-017-2604-7": [],
- "doi:10.1007/s11192-017-2616-3": [],
- "doi:10.1007/s11192-017-2636-z": [],
- "doi:10.1007/s11192-018-2651-8": [],
- "doi:10.1007/s11192-018-2705-y": [],
- "doi:10.1007/s11192-018-2734-6": [],
- "doi:10.1007/s11192-018-2740-8": [],
- "doi:10.1007/s11192-018-2748-0": [],
- "doi:10.1007/s11192-018-2752-4": [],
- "doi:10.1007/s11192-018-2761-3": [],
- "doi:10.1007/s11192-018-2765-z": [],
- "doi:10.1007/s11192-018-2775-x": [
- "doi:10.1016/j.joi.2014.04.001"
- ],
- "doi:10.1007/s11192-018-2786-7": [],
- "doi:10.1007/s11192-018-2796-5": [],
- "doi:10.1007/s11192-018-2803-x": [],
- "doi:10.1007/s11192-018-2809-4": [],
- "doi:10.1007/s11192-018-2841-4": [],
- "doi:10.1007/s11192-018-2844-1": [
- "doi:10.1016/j.joi.2018.03.005"
- ],
- "doi:10.1007/s11192-018-2856-x": [],
- "doi:10.1007/s11192-018-2936-y": [
- "doi:10.1007/s11192-017-2452-5"
- ],
- "doi:10.1007/s11192-018-2977-2": [],
- "doi:10.1007/s11192-018-2990-5": [],
- "doi:10.1007/s11192-019-03047-6": [],
- "doi:10.1007/s11192-019-03057-4": [],
- "doi:10.1007/s11192-019-03087-y": [],
- "doi:10.1007/s11192-019-03116-w": [
- "doi:10.1007/s10961-017-9637-1"
- ],
- "doi:10.1007/s11192-019-03201-0": [],
- "doi:10.1007/s11192-019-03213-w": [],
- "doi:10.1080/13683500.2017.1408574": [],
- "doi:10.1080/16549716.2018.1504398": [],
- "doi:10.1007/s00210-019-01629-y": [
- "doi:10.1007/s12078-018-9243-0"
- ],
- "doi:10.1007/s10843-017-0213-4": [],
- "doi:10.1080/2157930x.2018.1439293": [],
- "doi:10.1002/leap.1114": [],
- "doi:10.1080/23299460.2017.1387509": [],
- "doi:10.3390/e21070694": [
- "doi:10.1002/asi.23770",
- "doi:10.1016/j.resconrec.2018.03.005",
- "doi:10.3390/su11040988"
- ],
- "doi:10.1177/1847979017751484": [],
- "doi:10.1177/1937586719855336": [],
- "doi:10.1177/1940082919854058": [],
- "doi:10.1007/s11119-018-9569-2": [],
- "doi:10.1007/s11135-017-0522-7": [],
- "doi:10.1007/s11135-018-0811-9": [],
- "doi:10.3390/smartcities2030027": [],
- "doi:10.3390/su10030667": [
- "doi:10.1007/s11192-017-2538-0"
- ],
- "doi:10.3390/su10030682": [],
- "doi:10.3390/su10041084": [],
- "doi:10.3390/su10124748": [],
- "doi:10.3390/su10124790": [],
- "doi:10.3390/su10124847": [],
- "doi:10.3390/su11030745": [],
- "doi:10.3390/su11030863": [],
- "doi:10.3390/su11040988": [],
- "doi:10.3390/su11051377": [],
- "doi:10.3390/su11061677": [],
- "doi:10.3390/su11092526": [
- "doi:10.1016/j.techfore.2018.07.028"
- ],
- "doi:10.3390/su11113049": [
- "doi:10.1186/s41239-018-0103-4",
- "doi:10.3390/en11071894"
- ],
- "doi:10.3390/su11133548": [
- "doi:10.1016/j.resconrec.2018.09.029"
- ],
- "doi:10.3390/su11154019": [
- "doi:10.1016/j.tifs.2019.01.011"
- ],
- "doi:10.3390/su11164388": [],
- "doi:10.3390/su11174738": [
- "doi:10.1016/j.joi.2014.07.006"
- ],
- "doi:10.1080/14767724.2019.1665988": [],
- "doi:10.1080/14783363.2018.1468247": [],
- "doi:10.1080/14783363.2019.1652091": [],
- "doi:10.1186/s12961-018-0298-9": [],
- "doi:10.1039/c8cs00117k": [],
- "doi:10.3390/ijerph16183326": [],
- "doi:10.1111/joes.12270": [],
- "doi:10.1371/journal.pone.0216408": [],
- "doi:10.1177/1354816618793762": [],
- "doi:10.1186/s12889-019-6842-x": [],
- "doi:10.1371/journal.pone.0170296": [],
- "doi:10.1002/asi.23267": [],
- "doi:10.1002/asi.23630": [],
- "doi:10.1002/asi.23770": [],
- "doi:10.1002/asi.24130": [],
- "doi:10.1002/asi.24171": [],
- "doi:10.1177/1534735419846401": [],
- "doi:10.1108/bij-03-2016-0031": [],
- "doi:10.1108/bij-05-2018-0133": [],
- "doi:10.1108/dta-10-2017-0078": [],
- "doi:10.1108/ecam-08-2018-0350": [
- "doi:10.1016/j.conbuildmat.2018.03.147"
- ],
- "doi:10.1108/ecam-09-2018-0390": [],
- "doi:10.4218/etrij.2018-0059": [],
- "doi:10.1177/0013916519843126": [],
- "doi:10.1088/1748-9326/aabf9b": [],
- "doi:10.1080/09585192.2019.1661267": [],
- "doi:10.1080/09637486.2019.1620184": [
- "doi:10.1007/s12078-018-9243-0",
- "doi:10.1016/j.foodchem.2018.06.139"
- ],
- "doi:10.1080/09537325.2019.1645826": [],
- "doi:10.1016/j.ssci.2019.07.036": [],
- "doi:10.1016/j.omega.2020.102388": [
- "doi:10.1016/j.joi.2014.07.006",
- "doi:10.1016/j.ssci.2019.01.029"
- ],
- "doi:10.1016/j.orp.2020.100164": [],
- "doi:10.1016/j.outlook.2019.04.009": [],
- "doi:10.1016/j.ssci.2015.09.004": [],
- "doi:10.1016/j.jup.2018.06.003": [],
- "doi:10.1016/j.joi.2016.09.006": [],
- "doi:10.1016/j.joi.2019.01.002": [],
- "doi:10.1016/j.joi.2020.101043": [],
- "doi:10.1016/j.jpurol.2018.04.004": [],
- "doi:10.1016/j.autcon.2019.01.010": [
- "doi:10.1061/(asce)co.1943-7862.0001492"
- ],
- "doi:10.1016/j.jbusres.2018.12.002": [],
- "doi:10.1016/j.jbusres.2019.02.050": [],
- "doi:10.1016/j.jclepro.2020.122945": [],
- "doi:10.1016/j.jclepro.2020.125760": [],
- "doi:10.1016/j.iref.2019.04.004": [
- "doi:10.1080/1540496x.2018.1433658"
- ],
- "doi:10.1016/j.irfa.2019.101418": [
- "doi:10.1080/1540496x.2018.1433658",
- "doi:10.1016/j.iref.2019.04.004"
- ],
- "doi:10.1007/s10668-020-01179-x": [
- "doi:10.1007/978-3-319-91473-2_1"
- ],
- "doi:10.1007/s10916-020-01691-7": [],
- "doi:10.1007/s10997-020-09554-6": [],
- "doi:10.1007/s11126-020-09858-8": [],
- "doi:10.1007/s11356-020-11947-x": [],
- "doi:10.1016/j.jot.2020.04.010": [],
- "doi:10.1016/j.foodchem.2018.06.139": [
- "doi:10.1007/s12078-018-9243-0"
- ],
- "doi:10.1016/j.chb.2018.07.001": [],
- "doi:10.1016/j.ssci.2020.104900": [],
- "doi:10.1016/j.jbusres.2018.12.050": [],
- "doi:10.1016/j.jflm.2019.07.002": [],
- "doi:10.1016/j.jgar.2017.11.017": [],
- "doi:10.1016/j.jhtm.2020.06.001": [],
- "doi:10.1016/j.resconrec.2018.09.029": [
- "doi:10.1016/j.conbuildmat.2018.03.147"
- ],
- "doi:10.1016/j.respol.2018.07.005": [],
- "doi:10.1016/j.asoc.2020.106467": [],
- "doi:10.1016/j.joi.2014.04.001": [],
- "doi:10.1007/s11356-020-11643-w": [],
- "doi:10.1007/s11846-020-00437-6": [],
- "doi:10.1016/j.ecolind.2020.107102": [
- "doi:10.1016/j.scitotenv.2020.141642"
- ],
- "doi:10.1016/j.ejor.2017.10.041": [],
- "doi:10.1016/j.ejor.2018.10.028": [],
- "doi:10.1016/j.cosrev.2020.100335": [
- "doi:10.1007/s11192-019-03213-w"
- ],
- "doi:10.1016/j.jdmm.2018.06.005": [],
- "doi:10.1016/j.jclepro.2020.124033": [
- "doi:10.1007/s11192-018-2809-4"
- ],
- "doi:10.1016/j.jclepro.2020.125751": [
- "doi:10.1016/j.buildenv.2018.12.059"
- ],
- "doi:10.1016/j.conbuildmat.2018.03.147": [],
- "doi:10.1016/j.techfore.2020.120118": [],
- "doi:10.1016/j.bjan.2020.02.003": [],
- "doi:10.1016/j.techfore.2017.03.012": [],
- "doi:10.1016/j.techfore.2018.07.028": [],
- "doi:10.1016/j.techfore.2020.120377": [],
- "doi:10.1016/j.tifs.2019.01.011": [
- "doi:10.1007/s11192-017-2604-7"
- ],
- "doi:10.7250/bjrbe.2020-15.470": [],
- "doi:10.1007/s11192-020-03805-x": [],
- "doi:10.1016/j.scitotenv.2019.135358": [],
- "doi:10.1016/j.scitotenv.2020.141344": [],
- "doi:10.1016/j.ssci.2019.01.029": [
- "doi:10.1016/j.ssci.2015.09.004"
- ],
- "doi:10.1016/j.joi.2016.05.002": [],
- "doi:10.1016/j.joi.2016.07.008": [],
- "doi:10.1016/j.joi.2019.100976": [],
- "doi:10.1016/j.buildenv.2018.12.059": [
- "doi:10.1061/(asce)co.1943-7862.0001492"
- ],
- "doi:10.1016/j.carbpol.2018.10.039": [],
- "doi:10.1016/j.indmarman.2020.02.022": [],
- "doi:10.1016/j.scitotenv.2020.141642": [],
- "doi:10.1016/j.cmpb.2019.105075": [],
- "doi:10.1016/j.aap.2018.06.010": [],
- "doi:10.1016/j.aller.2020.01.001": [],
- "doi:10.1016/j.scs.2020.102608": [
- "doi:10.1016/j.scitotenv.2020.141344"
- ],
- "doi:10.1016/j.joi.2018.03.005": [],
- "doi:10.1016/j.foodchem.2019.05.021": [
- "doi:10.1016/j.asoc.2018.03.041",
- "doi:10.1016/j.ssci.2019.01.029"
- ],
- "doi:10.1016/j.fss.2020.03.012": [
- "doi:10.1007/s00500-018-3168-z",
- "doi:10.1016/j.asoc.2018.03.041"
- ],
- "doi:10.1016/j.fuel.2019.116598": [],
- "doi:10.1016/j.resconrec.2018.03.005": [],
- "doi:10.1016/j.asoc.2018.03.041": [],
- "doi:10.1016/j.autcon.2019.02.022": [],
- "doi:10.1016/j.autcon.2020.103490": [],
- "doi:10.1016/j.socscimed.2019.112552": [],
- "doi:10.1016/j.solener.2020.02.013": [
- "doi:10.3390/su11133548",
- "doi:10.1016/j.foodchem.2019.05.021"
- ],
- "doi:10.2147/jpr.s306594": [],
- "doi:10.3390/ma14071745": [
- "doi:10.1016/j.buildenv.2018.12.059",
- "doi:10.1016/j.conbuildmat.2018.03.147"
- ],
- "doi:10.3390/plants10040768": [
- "doi:10.1016/j.scitotenv.2020.141344"
- ],
- "doi:10.1155/2021/6634055": [],
- "doi:10.1155/2021/6657167": [],
- "doi:10.1007/s10551-021-04856-7": [],
- "doi:10.1016/j.ijggc.2021.103309": [],
- "doi:10.3390/en14144288": [],
- "doi:10.1002/cjce.23913": [
- "doi:10.1002/cjce.23466"
- ],
- "doi:10.1002/cjce.24216": [
- "doi:10.1002/cjce.23913"
- ],
- "doi:10.1108/dta-08-2020-0179": [
- "doi:10.1016/j.joi.2014.07.006"
- ],
- "doi:10.1007/s10660-021-09464-1": [
- "doi:10.1177/1354816618793762"
- ],
- "doi:10.1016/j.jclepro.2021.126277": [],
- "doi:10.1016/j.jclepro.2021.127503": [
- "doi:10.1016/j.jclepro.2020.125751"
- ],
- "doi:10.3390/ijerph18147503": [],
- "doi:10.1155/2021/5568219": [],
- "doi:10.1080/13032917.2021.1954042": [],
- "doi:10.1007/s43538-021-00016-7": [],
- "doi:10.2196/31097": [],
- "doi:10.3390/app11062767": [],
- "doi:10.3390/app11073015": [
- "doi:10.1016/j.solener.2020.02.013"
- ],
- "doi:10.1590/1678-987320287607": [],
- "doi:10.1007/s12144-021-01947-6": [
- "doi:10.1007/s10961-017-9637-1",
- "doi:10.3390/su11092526"
- ],
- "doi:10.4018/978-1-7998-7452-2.ch016": [],
- "doi:10.1007/s11270-021-05224-x": [
- "doi:10.1016/j.jclepro.2020.124033"
- ],
- "doi:10.1371/journal.pone.0253847": [
- "doi:10.1016/j.joi.2014.07.006"
- ],
- "doi:10.1016/j.geoderma.2021.115076": [],
- "doi:10.1111/ejed.12446": [
- "doi:10.1080/07294360.2019.1654438"
- ],
- "doi:10.1080/00038628.2021.1910480": [],
- "doi:10.1002/agj2.20628": [
- "doi:10.3390/su10041084"
- ],
- "doi:10.22394/2410-132x-2021-7-1-66-84": [],
- "doi:10.1016/j.heliyon.2021.e07154": [],
- "doi:10.3390/ijerph18084234": [
- "doi:10.1186/s12961-018-0298-9"
- ],
- "doi:10.3390/molecules26133882": [],
- "doi:10.1016/j.jbusres.2021.06.045": [
- "doi:10.1016/j.jbusres.2019.02.050",
- "doi:10.1016/j.joi.2014.07.006"
- ],
- "doi:10.1590/1984-92302021v28n9604pt": [],
- "doi:10.1177/1548051821997406": [],
- "doi:10.3145/epi.2021.may.05": [],
- "doi:10.1038/s41545-021-00131-4": [
- "doi:10.1057/s41599-018-0175-8"
- ],
- "doi:10.1080/0194262x.2021.1937772": [],
- "doi:10.3390/agronomy11081504": [],
- "doi:10.3390/agronomy11081557": [
- "doi:10.1007/s11119-018-9569-2",
- "doi:10.1016/j.jclepro.2020.124033"
- ],
- "doi:10.3390/ijerph18105143": [],
- "doi:10.3390/ijerph18115851": [
- "doi:10.1007/s11192-019-03238-1",
- "doi:10.3390/ijerph16111928"
- ],
- "doi:10.3390/ijerph18115985": [
- "doi:10.1016/j.ssci.2019.07.036",
- "doi:10.1016/j.aap.2018.06.010",
- "doi:10.1016/j.resconrec.2018.03.005",
- "doi:10.1016/j.scitotenv.2020.141344",
- "doi:10.1016/j.ssci.2019.01.029"
- ],
- "doi:10.1080/10978526.2021.1930551": [
- "doi:10.1007/s11192-019-03201-0"
- ],
- "doi:10.3390/educsci11040184": [],
- "doi:10.3390/ijerph18147358": [
- "doi:10.1016/j.joi.2018.03.005"
- ],
- "doi:10.3390/recycling6020034": [
- "doi:10.1016/j.resconrec.2018.09.029"
- ],
- "doi:10.1016/j.jenvman.2021.112335": [],
- "doi:10.1186/s12906-021-03354-7": [
- "doi:10.1177/1534735419846401"
- ],
- "doi:10.1016/j.ijdrr.2021.102141": [
- "doi:10.1016/j.ssci.2019.01.029",
- "doi:10.1007/s10098-018-1624-1"
- ],
- "doi:10.1080/09537325.2020.1865530": [],
- "doi:10.1111/1758-5899.12912": [],
- "doi:10.1111/jpim.12562": [],
- "doi:10.3390/ijerph18116135": [
- "doi:10.1016/j.joi.2014.07.006",
- "doi:10.1108/ecam-08-2018-0350",
- "doi:10.1016/j.autcon.2019.01.010"
- ],
- "doi:10.1007/s11192-019-03222-9": [],
- "doi:10.1007/s11192-019-03230-9": [],
- "doi:10.1007/s11192-019-03234-5": [
- "doi:10.1016/j.ssci.2015.09.004",
- "doi:10.1186/s12961-018-0298-9"
- ],
- "doi:10.1007/s11192-019-03238-1": [],
- "doi:10.1007/s10098-018-1624-1": [],
- "doi:10.1155/2018/2607618": [],
- "doi:10.1093/reseval/rvz015": [],
- "doi:10.1007/s10961-017-9637-1": [],
- "doi:10.1111/pirs.12291": [],
- "doi:10.1111/rec.12899": [],
- "doi:10.1080/08874417.2019.1601538": [],
- "doi:10.1177/0165551519837182": [
- "doi:10.1038/sdata.2016.18"
- ],
- "doi:10.12688/f1000research.12314.1": [],
- "doi:10.1017/s003329171800363x": [],
- "doi:10.7717/peerj.2567": [],
- "doi:10.1002/pri.1760": [],
- "doi:10.1007/s10457-017-0107-4": [],
- "doi:10.1007/s10457-018-0231-9": [],
- "doi:10.1177/2059204318811786": [],
- "doi:10.1007/s12053-016-9470-7": [],
- "doi:10.1007/s12078-018-9243-0": [],
- "doi:10.1007/s12145-019-00408-w": [],
- "doi:10.1007/978-3-319-91473-2_1": [],
- "doi:10.3390/en11071894": [],
- "doi:10.3390/en12081414": [],
- "doi:10.3390/en12081539": [],
- "doi:10.3390/f10010072": [],
- "doi:10.3390/f9040223": [],
- "doi:10.1002/cjce.23344": [],
- "doi:10.1002/cjce.23346": [],
- "doi:10.1002/cjce.23466": [],
- "doi:10.1002/cjce.23530": [],
- "doi:10.1080/23311975.2019.1632569": [],
- "doi:10.1111/jan.13868": [],
- "doi:10.1007/s10995-019-02772-x": [],
- "doi:10.1371/journal.pone.0196549": [],
- "doi:10.1371/journal.pone.0200929": [],
- "doi:10.3390/admsci8030034": [],
- "doi:10.1007/s10902-018-0022-z": [],
- "doi:10.1177/0002764218766581": [],
- "doi:10.1007/s00170-018-2617-2": [],
- "doi:10.1002/sdr.1628": [],
- "doi:10.1002/sd.1927": [],
- "doi:10.1017/dmp.2015.58": [],
- "doi:10.1007/s10669-018-9687-4": [
- "doi:10.1007/s11119-018-9569-2"
- ],
- "doi:10.1007/s10676-018-9457-5": [],
- "doi:10.1080/1540496x.2018.1433658": [],
- "doi:10.1080/15440478.2019.1636742": [
- "doi:10.1007/s11192-018-2990-5"
- ],
- "doi:10.1007/s11575-016-0308-5": [],
- "doi:10.3390/nu11061357": [],
- "doi:10.1186/s11671-019-2994-y": [],
- "doi:10.1080/07294360.2019.1654438": [
- "doi:10.1007/s11192-017-2452-5"
- ],
- "doi:10.1007/s00217-019-03321-0": [],
- "doi:10.1186/s41182-017-0073-6": [
- "doi:10.1016/j.joi.2016.05.002"
- ],
- "doi:10.1186/s41205-017-0012-5": [],
- "doi:10.1186/s41239-018-0101-6": [],
- "doi:10.1186/s41239-018-0103-4": [],
- "doi:10.1186/s42238-019-0004-y": [
- "doi:10.1016/j.foodchem.2018.06.139"
- ],
- "doi:10.1057/s41599-018-0175-8": [],
- "doi:10.1061/(asce)co.1943-7862.0001492": [],
- "doi:10.1061/(asce)co.1943-7862.0001682": [
- "doi:10.1016/j.resconrec.2018.09.029"
- ],
- "doi:10.1061/(asce)ei.1943-5541.0000425": [],
- "doi:10.1061/(asce)me.1943-5479.0000722": [],
- "doi:10.1007/s11301-018-0140-z": [],
- "doi:10.1007/s11301-019-00172-7": [],
- "doi:10.3390/antibiotics7040102": [
- "doi:10.1016/j.jgar.2017.11.017"
- ],
- "doi:10.1177/1477153519857788": [
- "doi:10.1177/0013916519843126",
- "doi:10.1016/j.asoc.2018.03.041",
- "doi:10.1016/j.ssci.2019.01.029"
- ],
- "doi:10.1590/2318-08892018000300001": [],
- "doi:10.1590/2318-0889201931e190027": [],
- "doi:10.3897/rio.2.e9841": [],
- "doi:10.3897/rio.5.e35820": [],
- "doi:10.1007/s00484-019-01695-0": [],
- "doi:10.1007/s00500-018-3168-z": [],
- "doi:10.1002/csr.1792": [],
- "doi:10.1002/rra.3431": [],
- "doi:10.1111/petr.12933": [],
- "doi:10.2196/12625": [],
- "doi:10.2196/14401": [],
- "doi:10.1080/10941665.2019.1567564": [],
- "doi:10.1080/10963758.2019.1655433": [],
- "doi:10.1080/00131911.2019.1566212": [],
- "doi:10.3390/ijerph16010029": [
- "doi:10.1016/j.joi.2014.07.006"
- ],
- "doi:10.3390/ijerph16111928": [],
- "doi:10.3390/ijerph16152788": [
- "doi:10.3390/su11040988",
- "doi:10.1016/j.aap.2018.06.010",
- "doi:10.1016/j.resconrec.2018.03.005"
- ],
- "doi:10.1007/s41233-021-00047-4": [],
- "doi:10.1108/ecam-04-2021-0287": [],
- "doi:10.3390/agriculture11090889": [],
- "doi:10.1155/2021/9274918": [],
- "doi:10.1007/s00296-021-04988-z": [],
- "doi:10.1021/acs.analchem.9b05454": [],
- "doi:10.1002/adom.202100519": [],
- "doi:10.1016/j.jpurol.2021.08.003": [
- "doi:10.1016/j.jpurol.2018.04.004"
- ],
- "doi:10.3390/economies9030110": [
- "doi:10.1080/16549716.2018.1504398",
- "doi:10.1016/j.jclepro.2020.122945"
- ],
- "doi:10.3390/su13168997": [],
- "doi:10.1080/14778238.2021.1943553": [],
- "doi:10.1111/sms.14019": [],
- "doi:10.1136/bmjspcare-2021-002982": [
- "doi:10.1177/1534735419846401"
- ],
- "doi:10.3390/membranes11080600": [],
- "doi:10.1002/jclp.23227": [],
- "doi:10.1007/978-981-16-4760-4_1": [],
- "doi:10.1186/s12302-021-00552-5": [],
- "doi:10.3390/su131810094": [
- "doi:10.1016/j.socscimed.2019.112552"
- ],
- "doi:10.1016/j.techsoc.2021.101738": [
- "doi:10.1016/j.jclepro.2020.124033"
- ],
- "doi:10.3390/en14164919": [],
- "doi:10.1080/03088839.2021.1969460": [],
- "doi:10.2147/cmar.s324284": [],
- "doi:10.1007/s10639-021-10720-y": [],
- "doi:10.1007/s11274-021-03123-1": [],
- "doi:10.1007/s11356-021-15939-3": [],
- "doi:10.1080/00472778.2021.1955122": [],
- "doi:10.1186/s12992-021-00754-9": [],
- "doi:10.1002/mabi.202100103": [],
- "doi:10.1016/j.iref.2021.08.002": [
- "doi:10.1007/s11192-019-03087-y"
- ],
- "doi:10.1108/ecam-03-2021-0232": [],
- "doi:10.3390/brainsci11081077": [
- "doi:10.1016/j.joi.2014.07.006"
- ],
- "doi:10.3390/jtaer16060116": [],
- "doi:10.1080/15440478.2021.1952139": [
- "doi:10.3390/su10041084",
- "doi:10.1002/agj2.20628",
- "doi:10.1080/15440478.2019.1636742"
- ],
- "doi:10.17533/udea.le.n95a344139": [],
- "doi:10.1016/j.techfore.2021.121026": [],
- "doi:10.1177/03128962211035470": [],
- "doi:10.1111/and.14206": [],
- "doi:10.1007/s11356-021-15787-1": [],
- "doi:10.1002/ece3.7980": [],
- "doi:10.1007/978-981-16-6128-0_25": [],
- "doi:10.1021/acs.iecr.8b00936": [],
- "doi:10.3390/life11090970": [],
- "doi:10.3390/su13179780": [],
- "doi:10.3390/su13179631": [
- "doi:10.1007/s40200-020-00606-0",
- "doi:10.1016/j.aap.2018.06.010"
- ],
- "doi:10.1007/978-3-030-75722-9_7": [],
- "doi:10.3390/jrfm14090427": [
- "doi:10.1080/1540496x.2018.1433658"
- ],
- "doi:10.3390/su13179981": [
- "doi:10.1108/ecam-09-2018-0390"
- ],
- "doi:10.3390/systems9030067": [],
- "doi:10.1108/jsma-01-2021-0002": [
- "doi:10.1007/978-3-319-91473-2_1"
- ],
- "doi:10.1080/03088839.2021.1972486": [],
- "doi:10.3233/wor-213576": [
- "doi:10.1016/j.ssci.2015.09.004",
- "doi:10.1007/s10961-017-9637-1",
- "doi:10.1007/s11192-019-03234-5"
- ],
- "doi:10.3390/en14185711": [],
- "doi:10.1007/s42690-021-00616-2": [],
- "doi:10.1002/bbb.2290": [],
- "doi:10.3390/ijerph18179396": [],
- "doi:10.1016/j.tifs.2021.08.032": [],
- "doi:10.1186/s40066-021-00315-8": [],
- "doi:10.1016/j.techfore.2021.121179": [],
- "doi:10.1108/jdqs-08-2021-0020": [
- "doi:10.1007/s10660-021-09464-1"
- ],
- "doi:10.1016/j.egyr.2021.06.084": [
- "doi:10.1016/j.fuel.2019.116598"
- ],
- "doi:10.1016/j.jsr.2021.09.002": [],
- "doi:10.1007/978-3-030-78570-3_4": [],
- "doi:10.1007/s11540-021-09521-0": [
- "doi:10.1002/agj2.20628",
- "doi:10.1080/15440478.2019.1636742"
- ],
- "doi:10.1108/jfmm-02-2021-0046": [],
- "doi:10.3390/su13179582": [
- "doi:10.1016/j.ecolind.2020.107102"
- ],
- "doi:10.3390/ijerph18126187": [],
- "doi:10.3390/su13020791": [],
- "doi:10.3390/su13031275": [],
- "doi:10.3390/su13042126": [],
- "doi:10.1007/s13132-021-00803-z": [
- "doi:10.1186/s12889-019-6842-x"
- ],
- "doi:10.1155/2021/5547530": [
- "doi:10.1016/j.aap.2018.06.010"
- ],
- "doi:10.3390/catal11080913": [
- "doi:10.1016/j.aap.2018.06.010"
- ],
- "doi:10.1002/kpm.1658": [],
- "doi:10.3390/ijerph18041764": [],
- "doi:10.3390/molecules26144334": [],
- "doi:10.1162/qss_a_00109": [],
- "doi:10.15561/20755279.2021.0301": [],
- "doi:10.1016/j.spc.2021.03.030": [],
- "doi:10.1016/j.compind.2021.103458": [],
- "doi:10.3390/su13116225": [
- "doi:10.1002/csr.1792"
- ],
- "doi:10.3390/su13126562": [
- "doi:10.1016/j.ecolind.2020.107102",
- "doi:10.1016/j.jclepro.2021.126277",
- "doi:10.3390/su11154019"
- ],
- "doi:10.3390/su13158261": [
- "doi:10.3390/f10010072"
- ],
- "doi:10.1016/j.envres.2021.111087": [],
- "doi:10.3390/infrastructures6020021": [],
- "doi:10.3846/jcem.2021.15260": [],
- "doi:10.1177/15533506211026411": [],
- "doi:10.1108/wjemsd-06-2020-0068": [],
- "doi:10.1177/10963480211011540": [],
- "doi:10.1007/s11270-021-05247-4": [],
- "doi:10.1177/19322968211005500": [],
- "doi:10.3390/jmse9020218": [],
- "doi:10.3390/jmse9030266": [],
- "doi:10.1007/s11301-021-00214-z": [],
- "doi:10.1016/j.jhazmat.2020.125028": [],
- "doi:10.1016/j.jhazmat.2021.126361": [],
- "doi:10.1111/cobi.13726": [],
- "doi:10.1002/hfm.20889": [],
- "doi:10.1007/s10668-021-01293-4": [],
- "doi:10.1016/j.jhtm.2021.04.005": [
- "doi:10.1007/s10660-021-09464-1",
- "doi:10.1007/s11192-018-2977-2"
- ],
- "doi:10.1080/00207543.2021.1919333": [],
- "doi:10.1590/1806-9649-2021v28e5171": [],
- "doi:10.3390/su13031136": [],
- "doi:10.4018/978-1-7998-5772-3.ch005": [],
- "doi:10.1007/s12210-021-01003-2": [],
- "doi:10.1080/13504509.2021.1881651": [
- "doi:10.1016/j.resconrec.2018.09.029"
- ],
- "doi:10.2147/cmar.s270099": [],
- "doi:10.3390/educsci11030115": [],
- "doi:10.3390/educsci11070353": [],
- "doi:10.3390/nu13061966": [],
- "doi:10.3390/proteomes9020029": [],
- "doi:10.1016/j.jenvman.2021.113382": [
- "doi:10.1016/j.fuel.2019.116598"
- ],
- "doi:10.1186/s12936-021-03698-y": [
- "doi:10.1016/j.foodchem.2019.05.021"
- ],
- "doi:10.3390/en14133852": [],
- "doi:10.3390/en14133917": [],
- "doi:10.1002/cjce.24089": [
- "doi:10.1002/cjce.23466"
- ],
- "doi:10.1002/cjce.24127": [],
- "doi:10.1007/s10661-020-08793-2": [],
- "doi:10.1016/j.jclepro.2021.126622": [
- "doi:10.1016/j.jclepro.2020.124033"
- ],
- "doi:10.1016/j.jclepro.2021.127627": [],
- "doi:10.1016/j.jclepro.2021.128009": [
- "doi:10.1016/j.resconrec.2018.09.029"
- ],
- "doi:10.1007/s11356-021-13094-3": [],
- "doi:10.3390/ijfs9030035": [
- "doi:10.1108/wjemsd-06-2020-0068"
- ],
- "doi:10.1007/s13748-021-00252-4": [],
- "doi:10.1080/21645515.2021.1910000": [],
- "doi:10.1177/1069031x211004234": [],
- "doi:10.3390/polym13121957": [
- "doi:10.1016/j.jclepro.2020.125751",
- "doi:10.1016/j.autcon.2019.01.010"
- ],
- "doi:10.1007/978-3-030-58799-4_49": [],
- "doi:10.1177/1745691620927674": [],
- "doi:10.1007/978-3-030-53036-5_30": [],
- "doi:10.1177/0037549720944483": [],
- "doi:10.1017/sjp.2020.40": [],
- "doi:10.1007/s40200-020-00606-0": [],
- "doi:10.1007/s00521-020-05395-4": [
- "doi:10.1007/s00500-018-3168-z",
- "doi:10.1016/j.asoc.2018.03.041",
- "doi:10.1016/j.cmpb.2019.105075"
- ],
- "doi:10.1007/s11695-020-05058-2": [],
- "doi:10.1002/sres.2731": [],
- "doi:10.1108/jic-02-2020-0054": [
- "doi:10.1007/s10961-017-9637-1"
- ],
- "doi:10.1108/jic-05-2020-0142": [],
- "doi:10.3897/neotropical.15.e52905": [],
- "doi:10.3390/admsci10030057": [],
- "doi:10.3390/admsci10030069": [],
- "doi:10.1186/s12888-020-02825-4": [],
- "doi:10.1080/00472778.2020.1776578": [],
- "doi:10.1007/s11301-020-00196-4": [],
- "doi:10.1080/08989621.2020.1836620": []
- },
- "publishers": {
- "crossref:6228": {
- "id": "crossref:6228",
- "name": "Codon Publications"
- },
- "crossref:4297": {
- "id": "crossref:4297",
- "name": "Riga Technical University"
- },
- "crossref:297": {
- "id": "crossref:297",
- "name": "Springer Science and Business Media LLC"
- },
- "crossref:98": {
- "id": "crossref:98",
- "name": "Hindawi Limited"
- },
- "crossref:530": {
- "id": "crossref:530",
- "name": "FapUNIFESP (SciELO)"
- },
- "crossref:9677": {
- "id": "crossref:9677",
- "name": "The Russian Presidential Academy of National Economy and Public Administration"
- },
- "crossref:2373": {
- "id": "crossref:2373",
- "name": "Editorial CSIC"
- },
- "crossref:179": {
- "id": "crossref:179",
- "name": "SAGE Publications"
- },
- "crossref:7132": {
- "id": "crossref:7132",
- "name": "Universidad de Antioquia"
- },
- "crossref:30": {
- "id": "crossref:30",
- "name": "American Society of Civil Engineers (ASCE)"
- },
- "crossref:311": {
- "id": "crossref:311",
- "name": "Wiley"
- },
- "crossref:2209": {
- "id": "crossref:2209",
- "name": "Vilnius Gediminas Technical University"
- },
- "crossref:316": {
- "id": "crossref:316",
- "name": "American Chemical Society (ACS)"
- },
- "crossref:281": {
- "id": "crossref:281",
- "name": "MIT Press - Journals"
- },
- "crossref:2560": {
- "id": "crossref:2560",
- "name": "F1000 Research Ltd"
- },
- "crossref:140": {
- "id": "crossref:140",
- "name": "Emerald"
- },
- "crossref:6188": {
- "id": "crossref:6188",
- "name": "Sergii Iermakov"
- },
- "crossref:1010": {
- "id": "crossref:1010",
- "name": "JMIR Publications Inc."
- },
- "crossref:340": {
- "id": "crossref:340",
- "name": "Public Library of Science (PLoS)"
- },
- "crossref:4443": {
- "id": "crossref:4443",
- "name": "PeerJ"
- },
- "crossref:16117": {
- "id": "crossref:16117",
- "name": "Association of Austrian Librarians"
- },
- "crossref:56": {
- "id": "crossref:56",
- "name": "Cambridge University Press (CUP)"
- },
- "crossref:78": {
- "id": "crossref:78",
- "name": "Elsevier BV"
- },
- "crossref:292": {
- "id": "crossref:292",
- "name": "Royal Society of Chemistry (RSC)"
- },
- "crossref:7437": {
- "id": "crossref:7437",
- "name": "IOS Press"
- },
- "crossref:286": {
- "id": "crossref:286",
- "name": "Oxford University Press (OUP)"
- },
- "crossref:2258": {
- "id": "crossref:2258",
- "name": "Pensoft Publishers"
- },
- "crossref:266": {
- "id": "crossref:266",
- "name": "IOP Publishing"
- },
- "crossref:239": {
- "id": "crossref:239",
- "name": "BMJ"
- },
- "crossref:1968": {
- "id": "crossref:1968",
- "name": "MDPI AG"
- },
- "crossref:1709": {
- "id": "crossref:1709",
- "name": "Ediciones Profesionales de la Informacion SL"
- },
- "crossref:301": {
- "id": "crossref:301",
- "name": "Informa UK Limited"
- }
- }
-}
\ No newline at end of file
diff --git a/ogData/relational_publications.csv b/ogData/relational_publications.csv
deleted file mode 100644
index 18edb35..0000000
--- a/ogData/relational_publications.csv
+++ /dev/null
@@ -1,501 +0,0 @@
-id,title,type,publication_year,issue,volume,chapter,publication_venue,venue_type,publisher,event
-doi:10.1162/qss_a_00023,"Opencitations, An Infrastructure Organization For Open Scholarship",journal-article,2020,1,1,,Quantitative Science Studies,journal,crossref:281,
-doi:10.1007/s11192-019-03217-6,"Software Review: Coci, The Opencitations Index Of Crossref Open Doi-To-Doi Citations",journal-article,2019,2,121,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03311-9,Nine Million Book Items And Eleven Million Citations: A Study Of Book-Based Scholarly Communication Using Opencitations,journal-article,2019,2,122,,Scientometrics,journal,crossref:297,
-doi:10.1038/sdata.2016.18,The Fair Guiding Principles For Scientific Data Management And Stewardship,journal-article,2016,1,3,,Scientific Data,journal,crossref:297,
-doi:10.1371/journal.pbio.3000385,"The Nih Open Citation Collection: A Public Access, Broad Coverage Resource",journal-article,2019,10,17,,Plos Biology,journal,crossref:340,
-doi:10.3233/ds-190016,Enabling Text Search On Sparql Endpoints Through Oscar,journal-article,2019,1-2,2,,Data Science,journal,crossref:7437,
-doi:10.1007/s11192-020-03397-6,The Practice Of Self-Citations: A Longitudinal Study,journal-article,2020,1,123,,Scientometrics,journal,crossref:297,
-doi:10.1186/s13321-020-00448-1,Adoption Of The Citation Typing Ontology By The Journal Of Cheminformatics,journal-article,2020,1,12,,Journal Of Cheminformatics,journal,crossref:297,
-doi:10.1007/978-3-030-61244-3_16,Researchflow: Understanding The Knowledge Flow Between Academia And Industry,book-chapter,2020,,,1,Lecture Notes In Computer Science - Knowledge Engineering And Knowledge Management,book,crossref:297,
-doi:10.1007/978-3-030-61244-3_6,Ontologies Supporting Research-Related Information Foraging Using Knowledge Graphs: Literature Survey And Holistic Model Mapping,book-chapter,2020,,,1,Lecture Notes In Computer Science - Knowledge Engineering And Knowledge Management,book,crossref:297,
-doi:10.1007/978-3-030-54956-5_2,Question Answering On Scholarly Knowledge Graphs,book-chapter,2020,,,1,Digital Libraries For Open Knowledge - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-55814-7_15,Dingo: An Ontology For Projects And Grants Linked Data,book-chapter,2020,,,1,"Adbis, Tpdl And Eda 2020 Common Workshops And Doctoral Consortium - Communications In Computer And Information Science",book,crossref:297,
-doi:10.1007/s11192-020-03690-4,"Google Scholar, Microsoft Academic, Scopus, Dimensions, Web Of Science, And Opencitations’ Coci: A Multidisciplinary Comparison Of Coverage Via Citations",journal-article,2020,1,126,,Scientometrics,journal,crossref:297,
-doi:10.1007/978-3-030-62466-8_28,The Opencitations Data Model,book-chapter,2020,,,1,Lecture Notes In Computer Science - The Semantic Web – Iswc 2020,book,crossref:297,
-doi:10.1038/s41597-020-00749-y,A Detailed Open Access Model Of The Pubmed Literature,journal-article,2020,1,7,,Scientific Data,journal,crossref:297,
-doi:10.1007/978-3-030-77385-4_37,Kgbench: A Collection Of Knowledge Graph Datasets For Evaluating Relational And Multimodal Machine Learning,book-chapter,2021,,,1,The Semantic Web - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/s11192-021-04079-7,Universal And Specific Features Of Ukrainian Economic Research: Publication Analysis Based On Crossref Data,journal-article,2021,9,126,,Scientometrics,journal,crossref:297,
-doi:10.1162/qss_a_00112,"Large-Scale Comparison Of Bibliographic Data Sources: Scopus, Web Of Science, Dimensions, Crossref, And Microsoft Academic",journal-article,2021,1,2,,Quantitative Science Studies,journal,crossref:281,
-doi:10.7717/peerj-cs.421,A Systematic Metadata Harvesting Workflow For Analysing Scientific Networks,journal-article,2021,,7,,Peerj Computer Science,journal,crossref:4443,
-doi:10.1007/s11192-021-04097-5,A Qualitative And Quantitative Analysis Of Open Citations To Retracted Articles: The Wakefield 1998 Et Al.'S Case,journal-article,2021,10,126,,Scientometrics,journal,crossref:297,
-doi:10.1007/978-3-030-84825-5_11,Lobd: Linked Data Dashboard For Marine Biodiversity,book-chapter,2021,,,1,"Communications In Computer And Information Science - Cloud Computing, Big Data & Emerging Topics",book,crossref:297,
-doi:10.3989/arbor.2021.799007,El Movimiento Open Citations Y Sus Implicaciones En La Transformación De La Evaluación CientÃfica,journal-article,2021,799,197,,Arbor,journal,crossref:2373,
-doi:10.1162/qss_a_00146,Scite: A Smart Citation Index That Displays The Context Of Citations And Classifies Their Intent Using Deep Learning,journal-article,2021,3,2,,Quantitative Science Studies,journal,crossref:281,
-doi:10.1080/19386389.2021.1999156,Roadmap To Fair Research Information In Open Infrastructures,journal-article,2021,1-2,21,,Journal Of Library Metadata,journal,crossref:301,
-doi:10.3390/app11219997,Classification Of Problem And Solution Strings In Scientific Texts: Evaluation Of The Effectiveness Of Machine Learning Classifiers And Deep Neural Networks,journal-article,2021,21,11,,Applied Sciences,journal,crossref:1968,
-doi:10.3145/thinkepi.2021.e15e04,La Cobertura De Los Ãndices De Citas Abiertos Se Acerca A La De Web Of Science Y Scopus,journal-article,2021,,,,Anuario Thinkepi,journal,crossref:1709,
-doi:10.1007/978-3-030-16187-3_20,Using The Spar Ontology Network To Represent The Scientific Production Of A University: A Case Study,book-chapter,2019,,,1,Advances In Intelligent Systems And Computing - New Knowledge In Information Systems And Technologies,book,crossref:297,
-doi:10.1017/s0269888920000065,"Ontology Engineering Methodologies For The Evolution Of Living And Reused Ontologies: Status, Trends, Findings And Recommendations",journal-article,2020,,35,,The Knowledge Engineering Review,journal,crossref:56,
-doi:10.1002/asi.24301,A Computational Analysis Of Art Historical Linked Data For Assessing Authoritativeness Of Attributions,journal-article,2019,7,71,,Journal Of The Association For Information Science And Technology,journal,crossref:311,
-doi:10.1007/978-3-030-59194-6_37,Construction And Leverage Scientific Knowledge Graphs By Means Of Semantic Technologies,book-chapter,2020,,,1,Systems And Information Sciences - Advances In Intelligent Systems And Computing,book,crossref:297,
-doi:10.1007/978-3-030-61244-3_7,A Unified Nanopublication Model For Effective And User-Friendly Access To The Elements Of Scientific Publishing,book-chapter,2020,,,1,Lecture Notes In Computer Science - Knowledge Engineering And Knowledge Management,book,crossref:297,
-doi:10.3897/biss.4.59126,Strategies For Assembling The Biodiversity Knowledge Graph,journal-article,2020,,4,,Biodiversity Information Science And Standards,journal,crossref:2258,
-doi:10.1007/978-3-030-54956-5_9,Ontology Design For Pharmaceutical Research Outcomes,book-chapter,2020,,,1,Digital Libraries For Open Knowledge - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1007/978-3-030-71903-6_32,A Linked Data Model For Data Scopes,book-chapter,2021,,,1,Metadata And Semantic Research - Communications In Computer And Information Science,book,crossref:297,
-doi:10.3897/bdj.9.e67671,Infrastructure And Population Of The Openbiodiv Biodiversity Knowledge Graph,journal-article,2021,,9,,Biodiversity Data Journal,journal,crossref:2258,
-doi:10.1007/978-3-030-91669-5_24,Federating Scholarly Infrastructures With Graphql,book-chapter,2021,,,1,Lecture Notes In Computer Science - Towards Open And Trustworthy Digital Societies,book,crossref:297,
-doi:10.1016/j.joi.2014.07.006,Citnetexplorer: A New Software Tool For Analyzing And Visualizing Citation Networks,journal-article,2014,4,8,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1007/s11042-019-08000-6,"Exploring Appinventory, A Visual Catalog Of Applications For Assisting Teachers And Students",journal-article,2019,23,78,,Multimedia Tools And Applications,journal,crossref:297,
-doi:10.3233/ds-190017,Towards A Scientific Data Framework To Support Scientific Model Development,journal-article,2019,1-2,2,,Data Science,journal,crossref:7437,
-doi:10.3233/ds-190023,"Editorial: Special Issue On Scholarly Data Analysis (Semantics, Analytics, Visualisation)",journal-article,2019,1-2,2,,Data Science,journal,crossref:7437,
-doi:10.31263/voebm.v72i2.2808,Open Science Und Die Bibliothek – Aktionsfelder Und Berufsbild,journal-article,2019,2,72,,Mitteilungen Der Vereinigung Österreichischer Bibliothekarinnen Und Bibliothekare,journal,crossref:16117,
-doi:10.1007/s11192-016-1879-4,A Bibliometric Analysis To Illustrate The Role Of An Embedded Research Capability In South African National Parks,journal-article,2016,1,107,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-016-1971-9,Quantifying The Changing Role Of Past Publications,journal-article,2016,2,108,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-016-2071-6,Mapping And Classification Of Agriculture In Web Of Science: Other Subject Categories And Research Fields May Benefit,journal-article,2016,2,109,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-016-2132-x,Measuring The Match Between Evaluators And Evaluees: Cognitive Distances Between Panel Members And Research Groups At The Journal Level,journal-article,2016,3,109,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-016-2194-9,Ruling Out Static Latent Homophily In Citation Networks,journal-article,2016,2,110,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-016-2215-8,Sleeping Beauties Cited In Patents: Is There Also A Dormitory Of Inventions?,journal-article,2017,3,110,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2436-5,Tracing The Knowledge-Building Dynamics In New Stem Cell Technologies Through Techno-Scientific Networks,journal-article,2017,3,112,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2449-0,"Mapping Patent Classifications: Portfolio And Statistical Analysis, And The Comparison Of Strengths And Weaknesses",journal-article,2017,3,112,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2452-5,Tracking The Emergence Of Synthetic Biology,journal-article,2017,3,112,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2481-0,Discovering Interdisciplinary Interactions Between Two Research Fields Using Citation Networks,journal-article,2017,1,113,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2538-0,An Overview Of The Web Of Science Record Of Scientific Publications (2004–2013) From Nepal: Focus On Disciplinary Diversity And International Collaboration,journal-article,2017,3,113,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2604-7,Identifying The “Ghost City†Of Domain Topics In A Keyword Semantic Space Combining Citations,journal-article,2017,3,114,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2616-3,Usage Pattern Comparison Of The Same Scholarly Articles Between Web Of Science (Wos) And Springer,journal-article,2017,1,115,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-017-2636-z,The Presence Of The Encyclicals In Web Of Science: A Bibliometric Approach,journal-article,2018,1,115,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2651-8,Bibliometric Analysis To Identify An Emerging Research Area: Public Relations Intelligence—A Challenge To Strengthen Technological Observatories In The Network Society,journal-article,2018,3,115,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2705-y,A Look Back Over The Past 40 Years Of Female Entrepreneurship: Mapping Knowledge Networks,journal-article,2018,2,115,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2734-6,Discontinuities In Citation Relations Among Journals: Self-Organized Criticality As A Model Of Scientific Revolutions And Change,journal-article,2018,1,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2740-8,An Eu Without The Uk: Mapping The Uk’S Changing Roles In The Eu Scientific Research,journal-article,2018,3,115,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2748-0,Mapping The Knowledge Domain And The Theme Evolution Of Appropriability Research Between 1986 And 2016: A Scientometric Review,journal-article,2018,1,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2752-4,Delayed Recognition Of Judah Folkman’S Hypothesis On Tumor Angiogenesis: When A Prince Awakens A Sleeping Beauty By Self-Citation,journal-article,2018,1,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2761-3,The Evolutions Of The Rich Get Richer And The Fit Get Richer Phenomena In Scholarly Networks: The Case Of The Strategic Management Journal,journal-article,2018,1,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2765-z,The Application Of Bibliometric Analysis: Disciplinary And User Aspects,journal-article,2018,1,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2775-x,A Comparison Of Cognitive And Organizational Classification Of Publications In The Social Sciences And Humanities,journal-article,2018,2,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2786-7,A Bibliometric Analysis Of Highly Cited Papers In The Field Of Economics And Business Based On The Essential Science Indicators Database,journal-article,2018,2,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2796-5,Accumulation Of Knowledge In Para-Scientific Areas: The Case Of Analytic Philosophy,journal-article,2018,2,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2803-x,Litstoryteller+: An Interactive System For Multi-Level Scientific Paper Visual Storytelling With A Supportive Text Mining Toolbox,journal-article,2018,3,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2809-4,Entrepreneurial Cognition And Socially Situated Approach: A Systematic And Bibliometric Analysis,journal-article,2018,3,116,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2841-4,Overlapping Thematic Structures Extraction With Mixed-Membership Stochastic Blockmodel,journal-article,2018,1,117,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2844-1,A Comparative Study Of Citations To Chemical Encyclopedias In Scholarly Articles: Kirk-Othmer Encyclopedia Of Chemical Technology And Ullmann’S Encyclopedia Of Industrial Chemistry,journal-article,2018,1,117,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2856-x,"Twenty Years Of Statistical Learning: From Language, Back To Machine Learning",journal-article,2018,1,117,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2936-y,Exploring The Common Denominator Between Microplastics And Microbiology: A Scientometric Approach,journal-article,2018,3,117,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2977-2,What’S In A Name? Exploring The Conceptual Structure Of Emerging Organizations,journal-article,2018,2,118,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-018-2990-5,"Digital Competences, Computer Skills And Information Literacy In Secondary Education: Mapping And Visualization Of Trends And Concepts",journal-article,2018,2,118,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03047-6,Research And Partnership In Studies Of Sugarcane Using Molecular Markers: A Scientometric Approach,journal-article,2019,1,119,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03057-4,A Research Framework To Explore Knowledge Evolution And Scholarly Quantification Of Collaborative Research,journal-article,2019,2,119,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03087-y,Bibliometric Analysis Of Publications From Post-Soviet Countries In Psychological Journals In 1992–2017,journal-article,2019,2,119,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03116-w,Opening The Black Box Of Academic Entrepreneurship: A Bibliometric Analysis,journal-article,2019,1,120,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03201-0,Innovation In Latin America Through The Lens Of Bibliometrics: Crammed And Fading Away,journal-article,2019,2,121,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03213-w,"Software Survey: Scientopy, A Scientometric Tool For Topics Trend Analysis In Scientific Publications",journal-article,2019,2,121,,Scientometrics,journal,crossref:297,
-doi:10.1080/13683500.2017.1408574,Bibliometric Visualisation: An Application In Tourism Crisis And Disaster Management Research,journal-article,2017,16,22,,Current Issues In Tourism,journal,crossref:301,
-doi:10.1080/16549716.2018.1504398,Ten-Years Trend Of Dengue Research In Indonesia And South-East Asian Countries: A Bibliometric Analysis,journal-article,2018,1,11,,Global Health Action,journal,crossref:301,
-doi:10.1007/s00210-019-01629-y,A Literature Analysis On Anti-Vascular Endothelial Growth Factor Therapy (Anti-Vegf) Using A Bibliometric Approach,journal-article,2019,4,392,,Naunyn-Schmiedeberg'S Archives Of Pharmacology,journal,crossref:297,
-doi:10.1007/s10843-017-0213-4,Exploring The Intellectual Structure Of Research On ‘Born Globals’ And Invs: A Literature Review Using Bibliometric Methods,journal-article,2017,,,,Journal Of International Entrepreneurship,journal,crossref:297,
-doi:10.1080/2157930x.2018.1439293,Innovation In Natural Resource-Based Industries: A Pathway To Development? Introduction To Special Issue,journal-article,2018,1,8,,Innovation And Development,journal,crossref:301,
-doi:10.1002/leap.1114,Open Access Publications In Sciences And Social Sciences: A Comparative Analysis,journal-article,2017,2,31,,Learned Publishing,journal,crossref:311,
-doi:10.1080/23299460.2017.1387509,Exploring Attitudes To Societal Relevance: The Effects Of Reflection On Research Practices Among Swedish Environmental Scientists,journal-article,2017,3,4,,Journal Of Responsible Innovation,journal,crossref:301,
-doi:10.3390/e21070694,Twenty Years Of Entropy Research: A Bibliometric Overview,journal-article,2019,7,21,,Entropy,journal,crossref:1968,
-doi:10.1177/1847979017751484,The Most Influential Countries In Market Orientation,journal-article,2018,,10,,International Journal Of Engineering Business Management,journal,crossref:179,
-doi:10.1177/1937586719855336,Layout Planning In Healthcare Facilities: A Systematic Review,journal-article,2019,3,12,,Herd: Health Environments Research & Design Journal,journal,crossref:179,
-doi:10.1177/1940082919854058,Species Distribution Modeling In Latin America: A 25-Year Retrospective Review,journal-article,2019,,12,,Tropical Conservation Science,journal,crossref:179,
-doi:10.1007/s11119-018-9569-2,"Science Mapping Approach To Analyze The Research Evolution On Precision Agriculture: World, Eu And Italian Situation",journal-article,2018,6,19,,Precision Agriculture,journal,crossref:297,
-doi:10.1007/s11135-017-0522-7,State Of The Art In Business Analytics: Themes And Collaborations,journal-article,2017,2,52,,Quality & Quantity,journal,crossref:297,
-doi:10.1007/s11135-018-0811-9,Subjective Well-Being Among The Elderly: A Bibliometric Analysis,journal-article,2018,3,53,,Quality & Quantity,journal,crossref:297,
-doi:10.3390/smartcities2030027,Application Of Decision-Making Methods In Smart City Projects: A Systematic Literature Review,journal-article,2019,3,2,,Smart Cities,journal,crossref:1968,
-doi:10.3390/su10030667,An Empirical Study On Visualizing The Intellectual Structure And Hotspots Of Big Data Research From A Sustainable Perspective,journal-article,2018,3,10,,Sustainability,journal,crossref:1968,
-doi:10.3390/su10030682,Visualizing The Academic Discipline Of Knowledge Management,journal-article,2018,3,10,,Sustainability,journal,crossref:1968,
-doi:10.3390/su10041084,Sustainable Water Use In Agriculture: A Review Of Worldwide Research,journal-article,2018,4,10,,Sustainability,journal,crossref:1968,
-doi:10.3390/su10124748,From Health Technology Assessment To Health Technology Sustainability,journal-article,2018,12,10,,Sustainability,journal,crossref:1968,
-doi:10.3390/su10124790,The Evolution Of International Scientific Collaboration In Fuel Cells During 1998–2017: A Social Network Perspective,journal-article,2018,12,10,,Sustainability,journal,crossref:1968,
-doi:10.3390/su10124847,Gentrification As An Emerging Source Of Environmental Research,journal-article,2018,12,10,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11030745,"Farmers’ Market Actors, Dynamics, And Attributes: A Bibliometric Study",journal-article,2019,3,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11030863,Biomass As Renewable Energy: Worldwide Research Trends,journal-article,2019,3,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11040988,Visualization And Analysis Of Mapping Knowledge Domain Of Urban Vitality Research,journal-article,2019,4,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11051377,Tourism Research On Sustainability: A Bibliometric Analysis,journal-article,2019,5,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11061677,"Adoption Of Systemic And Socio-Technical Perspectives In Waste Management, Weee And Elv Research",journal-article,2019,6,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11092526,A Bibliometric And Visualization Analysis Of Socially Responsible Funds,journal-article,2019,9,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11113049,The Role Of Smart Contracts In Sustainability: Worldwide Research Trends,journal-article,2019,11,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11133548,A Bibliometric Analysis Of Energy Performance Contracting Research From 2008 To 2018,journal-article,2019,13,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11154019,Human Factor In Food Label Design To Support Consumer Healthcare And Safety: A Systematic Literature Review,journal-article,2019,15,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11164388,"Bibliometric Review Of Research On Knowledge Management And Sustainability, 1994–2018",journal-article,2019,16,11,,Sustainability,journal,crossref:1968,
-doi:10.3390/su11174738,Science Mapping Of Tourist Mobility 1980–2019. Technological Advancements In The Collection Of The Data For Tourist Traceability,journal-article,2019,17,11,,Sustainability,journal,crossref:1968,
-doi:10.1080/14767724.2019.1665988,The Worldwide Spread Of Peace Education: Discursive Patterns In Publications And International Organisations,journal-article,2019,5,17,,"Globalisation, Societies And Education",journal,crossref:301,
-doi:10.1080/14783363.2018.1468247,"Knowledge Management And Total Quality Management: Foundations, Intellectual Structures, Insights Regarding Evolution Of The Literature",journal-article,2018,9-10,31,,Total Quality Management & Business Excellence,journal,crossref:301,
-doi:10.1080/14783363.2019.1652091,Six Sigma Literature: A Bibliometric Analysis,journal-article,2019,9-10,32,,Total Quality Management & Business Excellence,journal,crossref:301,
-doi:10.1186/s12961-018-0298-9,"A Bibliometric Analysis Of The Published Road Traffic Injuries Research In India, Post-1990",journal-article,2018,1,16,,Health Research Policy And Systems,journal,crossref:297,
-doi:10.1039/c8cs00117k,Catalysis For The Synthesis Of Methacrylic Acid And Methyl Methacrylate,journal-article,2018,20,47,,Chemical Society Reviews,journal,crossref:292,
-doi:10.3390/ijerph16183326,What Has Been The Focus Of Sugarcane Research? A Bibliometric Overview,journal-article,2019,18,16,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.1111/joes.12270,Productivity And Efficiency Analysis Software: An Exploratory Bibliographical Survey Of The Options,journal-article,2018,1,33,,Journal Of Economic Surveys,journal,crossref:311,
-doi:10.1371/journal.pone.0216408,Towards A Second Generation Of ‘Social Media Metrics’: Characterizing Twitter Communities Of Attention Around Science,journal-article,2019,5,14,,Plos One,journal,crossref:340,
-doi:10.1177/1354816618793762,Tourism And Its Economic Impact: A Literature Review Using Bibliometric Tools,journal-article,2018,1,25,,Tourism Economics,journal,crossref:179,
-doi:10.1186/s12889-019-6842-x,Scientific And Technological Contributions Of Latin America And Caribbean Countries To The Zika Virus Outbreak,journal-article,2019,1,19,,Bmc Public Health,journal,crossref:297,
-doi:10.1371/journal.pone.0170296,Analysing Institutions Interdisciplinarity By Extensive Use Of Rao-Stirling Diversity Index,journal-article,2017,1,12,,Plos One,journal,crossref:340,
-doi:10.1002/asi.23267,Can We Rank Scholarly Book Publishers? A Bibliometric Experiment With The Field Of History,journal-article,2014,7,66,,Journal Of The Association For Information Science And Technology,journal,crossref:311,
-doi:10.1002/asi.23630,Using Course-Subject Co-Occurrence (Csco) To Reveal The Structure Of An Academic Discipline: A Framework To Evaluate Different Inputs Of A Domain Map,journal-article,2016,1,68,,Journal Of The Association For Information Science And Technology,journal,crossref:311,
-doi:10.1002/asi.23770,How Many Ways To Use Citespace? A Study Of User Interactive Events Over 14 Months,journal-article,2017,5,68,,Journal Of The Association For Information Science And Technology,journal,crossref:311,
-doi:10.1002/asi.24130,Statistical Significance And Effect Sizes Of Differences Among Research Universities At The Level Of Nations And Worldwide Based On The Leiden Rankings,journal-article,2019,5,70,,Journal Of The Association For Information Science And Technology,journal,crossref:311,
-doi:10.1002/asi.24171,Paperpoles: Facilitating Adaptive Visual Exploration Of Scientific Publications By Citation Links,journal-article,2019,8,70,,Journal Of The Association For Information Science And Technology,journal,crossref:311,
-doi:10.1177/1534735419846401,"Production Trends, Collaboration, And Main Topics Of The Integrative And Complementary Oncology Research Area: A Bibliometric Analysis",journal-article,2019,,18,,Integrative Cancer Therapies,journal,crossref:179,
-doi:10.1108/bij-03-2016-0031,Benchmarking Of Best Practices: An Overview Of The Academic Literature,journal-article,2017,3,24,,Benchmarking: An International Journal,journal,crossref:140,
-doi:10.1108/bij-05-2018-0133,Marketing Communications Via Celebrity Endorsement: An Integrative Review,journal-article,2019,7,27,,Benchmarking: An International Journal,journal,crossref:140,
-doi:10.1108/dta-10-2017-0078,Performance Assessment And Major Trends In Open Government Data Research Based On Web Of Science Data,journal-article,2019,3,53,,Data Technologies And Applications,journal,crossref:140,
-doi:10.1108/ecam-08-2018-0350,Scientometric Analysis Of Bim-Based Research In Construction Engineering And Management,journal-article,2019,8,26,,"Engineering, Construction And Architectural Management",journal,crossref:140,
-doi:10.1108/ecam-09-2018-0390,Post-Occupancy Evaluation: A Review Of Literature,journal-article,2019,9,26,,"Engineering, Construction And Architectural Management",journal,crossref:140,
-doi:10.4218/etrij.2018-0059,Exploring The Dynamic Knowledge Structure Of Studies On The Internet Of Things: Keyword Analysis,journal-article,2018,6,40,,Etri Journal,journal,crossref:311,
-doi:10.1177/0013916519843126,Celebrating Half A Century Of Environment And Behavior: A Bibliometric Review,journal-article,2019,5,51,,Environment And Behavior,journal,crossref:179,
-doi:10.1088/1748-9326/aabf9b,Negative Emissions—Part 1: Research Landscape And Synthesis,journal-article,2018,6,13,,Environmental Research Letters,journal,crossref:266,
-doi:10.1080/09585192.2019.1661267,Mapping The Expatriate Literature: A Bibliometric Review Of The Field From 1998 To 2017 And Identification Of Current Research Fronts,journal-article,2019,22,32,,The International Journal Of Human Resource Management,journal,crossref:301,
-doi:10.1080/09637486.2019.1620184,Food Toxicology: Quantitative Analysis Of The Research Field Literature,journal-article,2019,1,71,,International Journal Of Food Sciences And Nutrition,journal,crossref:301,
-doi:10.1080/09537325.2019.1645826,A Predictive Filtering Approach For Clarifying Bibliometric Datasets: An Example On The Research Articles Related To Industry 4.0,journal-article,2019,2,32,,Technology Analysis & Strategic Management,journal,crossref:301,
-doi:10.1016/j.ssci.2019.07.036,Exploring The Role Of Building Information Modeling In Construction Safety Through Science Mapping,journal-article,2019,,120,,Safety Science,journal,crossref:78,
-doi:10.1016/j.omega.2020.102388,Learning From The Past To Shape The Future: A Comprehensive Text Mining Analysis Of Or/Ms Reviews,journal-article,2021,,100,,Omega,journal,crossref:78,
-doi:10.1016/j.orp.2020.100164,Operations Research Models And Methods For Safety Stock Determination: A Review,journal-article,2020,,7,,Operations Research Perspectives,journal,crossref:78,
-doi:10.1016/j.outlook.2019.04.009,"Historical, Descriptive And Exploratory Analysis Of Application Of Bibliometrics In Nursing Research",journal-article,2019,6,67,,Nursing Outlook,journal,crossref:78,
-doi:10.1016/j.ssci.2015.09.004,Output Distributions And Topic Maps Of Safety Related Journals,journal-article,2016,,82,,Safety Science,journal,crossref:78,
-doi:10.1016/j.jup.2018.06.003,Wire-Free Electricity: Insights From A Techno-Futuristic Exploration,journal-article,2018,,53,,Utilities Policy,journal,crossref:78,
-doi:10.1016/j.joi.2016.09.006,A Hybrid Similarity Measure Method For Patent Portfolio Analysis,journal-article,2016,4,10,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1016/j.joi.2019.01.002,Peer And Neighborhood Effects: Citation Analysis Using A Spatial Autoregressive Model And Pseudo-Spatial Data,journal-article,2019,1,13,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1016/j.joi.2020.101043,Bibliometrics And Systematic Reviews: A Comparison Between The Proknow-C And The Methodi Ordinatio,journal-article,2020,3,14,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1016/j.jpurol.2018.04.004,"Historical Bibliometric Analysis Of The Top Cited Articles On Vesicoureteral Reflux 1950–2016, And Incorporation Of A Novel Impact Index",journal-article,2018,5,14,,Journal Of Pediatric Urology,journal,crossref:78,
-doi:10.1016/j.autcon.2019.01.010,Building Information Modelling For Off-Site Construction: Review And Future Directions,journal-article,2019,,101,,Automation In Construction,journal,crossref:78,
-doi:10.1016/j.jbusres.2018.12.002,"A Bibliometric Research In The Tourism, Leisure And Hospitality Fields",journal-article,2019,,101,,Journal Of Business Research,journal,crossref:78,
-doi:10.1016/j.jbusres.2019.02.050,Ethics And Entrepreneurship: A Bibliometric Study And Literature Review,journal-article,2019,,99,,Journal Of Business Research,journal,crossref:78,
-doi:10.1016/j.jclepro.2020.122945,Agricultural Co-Operatives In The Western World: A Bibliometric Analysis,journal-article,2020,,273,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.jclepro.2020.125760,Understanding China’S Largest Sustainability Experiment: Atmospheric And Climate Governance In The Yangtze River Economic Belt As A Lens,journal-article,2021,,290,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.iref.2019.04.004,A Bibliometric Review Of Sukuk Literature,journal-article,2019,,,,International Review Of Economics & Finance,journal,crossref:78,
-doi:10.1016/j.irfa.2019.101418,"Sovereign Wealth Funds: Past, Present And Future",journal-article,2020,,67,,International Review Of Financial Analysis,journal,crossref:78,
-doi:10.1007/s10668-020-01179-x,"Household Energy Consumption: State Of The Art, Research Gaps, And Future Prospects",journal-article,2021,8,23,,"Environment, Development And Sustainability",journal,crossref:297,
-doi:10.1007/s10916-020-01691-7,The Potential Of Big Data Research In Healthcare For Medical Doctors’ Learning,journal-article,2021,1,45,,Journal Of Medical Systems,journal,crossref:297,
-doi:10.1007/s10997-020-09554-6,Corporate Governance And Sustainability: A Review Of The Existing Literature,journal-article,2021,,,,Journal Of Management And Governance,journal,crossref:297,
-doi:10.1007/s11126-020-09858-8,Suicide Mortality Rate As A Sustainable Development Goal (Sdg): A Bibliometric Analysis,journal-article,2020,,,,Psychiatric Quarterly,journal,crossref:297,
-doi:10.1007/s11356-020-11947-x,A Bibliometric Analysis Of Comparative Research On The Evolution Of International And Chinese Green Supply Chain Research Hotspots And Frontiers,journal-article,2021,6,28,,Environmental Science And Pollution Research,journal,crossref:297,
-doi:10.1016/j.jot.2020.04.010,Progress Of Orthopaedic Research In China Over The Last Decade,journal-article,2020,,24,,Journal Of Orthopaedic Translation,journal,crossref:78,
-doi:10.1016/j.foodchem.2018.06.139,Let Food Be Thy Medicine And Medicine Be Thy Food: A Bibliometric Analysis Of The Most Cited Papers Focusing On Nutraceuticals And Functional Foods,journal-article,2018,,269,,Food Chemistry,journal,crossref:78,
-doi:10.1016/j.chb.2018.07.001,Mapping Diversity And Inclusion In Student Societies: A Social Network Perspective,journal-article,2018,,88,,Computers In Human Behavior,journal,crossref:78,
-doi:10.1016/j.ssci.2020.104900,Machine Learning In Occupational Accident Analysis: A Review Using Science Mapping Approach With Citation Network Analysis,journal-article,2020,,131,,Safety Science,journal,crossref:78,
-doi:10.1016/j.jbusres.2018.12.050,Unveiling The Intellectual Structure And Evolution Of External Resource Management Research: Insights From A Bibliometric Study,journal-article,2019,,97,,Journal Of Business Research,journal,crossref:78,
-doi:10.1016/j.jflm.2019.07.002,Bibliometric Analysis Of Medical Malpractice Literature In Legal Medicine From 1975 To 2018: Web Of Science Review,journal-article,2019,,66,,Journal Of Forensic And Legal Medicine,journal,crossref:78,
-doi:10.1016/j.jgar.2017.11.017,Global Research Output In Antimicrobial Resistance Among Uropathogens: A Bibliometric Analysis (2002–2016),journal-article,2018,,13,,Journal Of Global Antimicrobial Resistance,journal,crossref:78,
-doi:10.1016/j.jhtm.2020.06.001,A Systematic Review Of The Sex Trafficking-Related Literature: Lessons For Tourism And Hospitality Research,journal-article,2020,,45,,Journal Of Hospitality And Tourism Management,journal,crossref:78,
-doi:10.1016/j.resconrec.2018.09.029,Science Mapping Approach To Assisting The Review Of Construction And Demolition Waste Management Research Published Between 2009 And 2018,journal-article,2019,,140,,"Resources, Conservation And Recycling",journal,crossref:78,
-doi:10.1016/j.respol.2018.07.005,Institutional Shaping Of Research Priorities: A Case Study On Avian Influenza,journal-article,2018,10,47,,Research Policy,journal,crossref:78,
-doi:10.1016/j.asoc.2020.106467,Bibliometric Analysis Of Rough Sets Research,journal-article,2020,,94,,Applied Soft Computing,journal,crossref:78,
-doi:10.1016/j.joi.2014.04.001,Including Cited Non-Source Items In A Large-Scale Map Of Science: What Difference Does It Make?,journal-article,2014,3,8,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1007/s11356-020-11643-w,Uncovering The Dynamics In Global Carbon Dioxide Utilization Research: A Bibliometric Analysis (1995–2019),journal-article,2020,11,28,,Environmental Science And Pollution Research,journal,crossref:297,
-doi:10.1007/s11846-020-00437-6,Entrepreneurial Ecosystems And Networks: A Literature Review And Research Agenda,journal-article,2021,1,16,,Review Of Managerial Science,journal,crossref:297,
-doi:10.1016/j.ecolind.2020.107102,Urban Sustainability Assessment: An Overview And Bibliometric Analysis,journal-article,2021,,121,,Ecological Indicators,journal,crossref:78,
-doi:10.1016/j.ejor.2017.10.041,Applications Of Agent-Based Modelling And Simulation In The Agri-Food Supply Chains,journal-article,2018,3,269,,European Journal Of Operational Research,journal,crossref:78,
-doi:10.1016/j.ejor.2018.10.028,The Human Factor In Supply Chain Forecasting: A Systematic Review,journal-article,2019,2,274,,European Journal Of Operational Research,journal,crossref:78,
-doi:10.1016/j.cosrev.2020.100335,A Systematic Mapping Review Of Context-Aware Analysis And Its Approach To Mobile Learning And Ubiquitous Learning Processes,journal-article,2021,,39,,Computer Science Review,journal,crossref:78,
-doi:10.1016/j.jdmm.2018.06.005,"Changes In The Structures And Directions Of Destination Management And Marketing Research: A Bibliometric Mapping Study, 2005–2016",journal-article,2018,,10,,Journal Of Destination Marketing & Management,journal,crossref:78,
-doi:10.1016/j.jclepro.2020.124033,Management Research And The Un Sustainable Development Goals (Sdgs): A Bibliometric Investigation And Systematic Review,journal-article,2020,,276,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.jclepro.2020.125751,Micro-Electromechanical Systems-Based Technologies For Leak Detection And Localization In Water Supply Networks: A Bibliometric And Systematic Review,journal-article,2021,,289,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.conbuildmat.2018.03.147,A Holistic Review Of Cement Composites Reinforced With Graphene Oxide,journal-article,2018,,171,,Construction And Building Materials,journal,crossref:78,
-doi:10.1016/j.techfore.2020.120118,Digital Academic Entrepreneurship: A Structured Literature Review And Avenue For A Research Agenda,journal-article,2020,,157,,Technological Forecasting And Social Change,journal,crossref:78,
-doi:10.1016/j.bjan.2020.02.003,Análise Bibliométrica No Campo Da Anestesiologia No PerÃodo De 2009â€2018,journal-article,2020,2,70,,Brazilian Journal Of Anesthesiology,journal,crossref:78,
-doi:10.1016/j.techfore.2017.03.012,"‘Shaken, But Not Stirred’: Sixty Years Of Defining Social Innovation",journal-article,2017,,119,,Technological Forecasting And Social Change,journal,crossref:78,
-doi:10.1016/j.techfore.2018.07.028,"Participatory Energy: Research, Imaginaries And Practices On People' Contribute To Energy Systems In The Smart City",journal-article,2019,,142,,Technological Forecasting And Social Change,journal,crossref:78,
-doi:10.1016/j.techfore.2020.120377,Bridging Fields: A Comparative Study Of The Presence Of Think Tanks,journal-article,2021,,162,,Technological Forecasting And Social Change,journal,crossref:78,
-doi:10.1016/j.tifs.2019.01.011,Global Research Trends In Food Safety In Agriculture And Industry From 1991 To 2018: A Data-Driven Analysis,journal-article,2019,,85,,Trends In Food Science & Technology,journal,crossref:78,
-doi:10.7250/bjrbe.2020-15.470,The Knowledge Domain Of The Baltic Journal Of Road And Bridge Engineering Between 2006 And 2019,journal-article,2020,2,15,,The Baltic Journal Of Road And Bridge Engineering,journal,crossref:4297,
-doi:10.1007/s11192-020-03805-x,"Mapping The Research History, Collaborations And Trends Of Remote Sensing In Fire Ecology",journal-article,2021,2,126,,Scientometrics,journal,crossref:297,
-doi:10.1016/j.scitotenv.2019.135358,Human Health–Environment Interaction Science: An Emerging Research Paradigm,journal-article,2020,,704,,Science Of The Total Environment,journal,crossref:78,
-doi:10.1016/j.scitotenv.2020.141344,Alpine Vegetation In The Context Of Climate Change: A Global Review Of Past Research And Future Directions,journal-article,2020,,748,,Science Of The Total Environment,journal,crossref:78,
-doi:10.1016/j.ssci.2019.01.029,Forty Years Of Safety Science: A Bibliometric Overview,journal-article,2019,,115,,Safety Science,journal,crossref:78,
-doi:10.1016/j.joi.2016.05.002,Automating Bibliometric Analyses Using Taverna Scientific Workflows: A Tutorial On Integrating Web Services,journal-article,2016,3,10,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1016/j.joi.2016.07.008,Construction Of A Pragmatic Base Line For Journal Classifications And Maps Based On Aggregated Journal-Journal Citation Relations,journal-article,2016,4,10,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1016/j.joi.2019.100976,Coping With Methods For Delineating Emerging Fields: Nanoscience And Nanotechnology As A Case Study,journal-article,2019,4,13,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1016/j.buildenv.2018.12.059,A Scientometric Analysis And Visualization Of Global Green Building Research,journal-article,2019,,149,,Building And Environment,journal,crossref:78,
-doi:10.1016/j.carbpol.2018.10.039,Polysaccharides For Tissue Engineering: Current Landscape And Future Prospects,journal-article,2019,,205,,Carbohydrate Polymers,journal,crossref:78,
-doi:10.1016/j.indmarman.2020.02.022,Charting The Reach And Contribution Of Imp Literature In Other Disciplines: A Bibliometric Analysis,journal-article,2020,,87,,Industrial Marketing Management,journal,crossref:78,
-doi:10.1016/j.scitotenv.2020.141642,Co-Benefits And Synergies Between Urban Climate Change Mitigation And Adaptation Measures: A Literature Review,journal-article,2021,,750,,Science Of The Total Environment,journal,crossref:78,
-doi:10.1016/j.cmpb.2019.105075,Half A Century Of Computer Methods And Programs In Biomedicine: A Bibliometric Analysis From 1970 To 2017,journal-article,2020,,183,,Computer Methods And Programs In Biomedicine,journal,crossref:78,
-doi:10.1016/j.aap.2018.06.010,Visualization And Analysis Of Mapping Knowledge Domain Of Road Safety Studies,journal-article,2018,,118,,Accident Analysis & Prevention,journal,crossref:78,
-doi:10.1016/j.aller.2020.01.001,Bibliometric Analysis Of Publications On House Dust Mites During 1980–2018,journal-article,2020,4,48,,Allergologia Et Immunopathologia,journal,crossref:6228,
-doi:10.1016/j.scs.2020.102608,Trends And Gaps In Global Research Of Greenery Systems Through A Bibliometric Analysis,journal-article,2021,,65,,Sustainable Cities And Society,journal,crossref:78,
-doi:10.1016/j.joi.2018.03.005,"Examining The Usage, Citation, And Diffusion Patterns Of Bibliometric Mapping Software: A Comparative Study Of Three Tools",journal-article,2018,2,12,,Journal Of Informetrics,journal,crossref:78,
-doi:10.1016/j.foodchem.2019.05.021,Research Trends In Food Chemistry: A Bibliometric Review Of Its 40 Years Anniversary (1976–2016),journal-article,2019,,294,,Food Chemistry,journal,crossref:78,
-doi:10.1016/j.fss.2020.03.012,Forty Years Of Fuzzy Sets And Systems: A Bibliometric Analysis,journal-article,2021,,402,,Fuzzy Sets And Systems,journal,crossref:78,
-doi:10.1016/j.fuel.2019.116598,Visualization And Analysis Of Mapping Knowledge Domains For Spontaneous Combustion Studies,journal-article,2020,,262,,Fuel,journal,crossref:78,
-doi:10.1016/j.resconrec.2018.03.005,The Evolution Of Resources Conservation And Recycling Over The Past 30 Years: A Bibliometric Overview,journal-article,2018,,134,,"Resources, Conservation And Recycling",journal,crossref:78,
-doi:10.1016/j.asoc.2018.03.041,Applied Soft Computing: A Bibliometric Analysis Of The Publications And Citations During (2004–2016),journal-article,2018,,69,,Applied Soft Computing,journal,crossref:78,
-doi:10.1016/j.autcon.2019.02.022,Informetric Analysis And Review Of Literature On The Role Of Bim In Sustainable Construction,journal-article,2019,,103,,Automation In Construction,journal,crossref:78,
-doi:10.1016/j.autcon.2020.103490,Risk Assessment And Management Of Excavation System Based On Fuzzy Set Theory And Machine Learning Methods,journal-article,2021,,122,,Automation In Construction,journal,crossref:78,
-doi:10.1016/j.socscimed.2019.112552,Systematic Literature Review On The Spread Of Health-Related Misinformation On Social Media,journal-article,2019,,240,,Social Science & Medicine,journal,crossref:78,
-doi:10.1016/j.solener.2020.02.013,A Bibliometric Analysis Of Trends In Solar Cooling Technology,journal-article,2020,,199,,Solar Energy,journal,crossref:78,
-doi:10.2147/jpr.s306594,A Bibliometric Analysis Of Research Trends Of Acupuncture Therapy In The Treatment Of Migraine From 2000 To 2020,journal-article,2021,,Volume 14,,Journal Of Pain Research,journal,crossref:301,
-doi:10.3390/ma14071745,Effect Of Short Fiber Reinforcements On Fracture Performance Of Cement-Based Materials: A Systematic Review Approach,journal-article,2021,7,14,,Materials,journal,crossref:1968,
-doi:10.3390/plants10040768,Seeds And Seedlings In A Changing World: A Systematic Review And Meta-Analysis From High Altitude And High Latitude Ecosystems,journal-article,2021,4,10,,Plants,journal,crossref:1968,
-doi:10.1155/2021/6634055,Scientometric Analysis Of Dental Implant Research Over The Past 10 Years And Future Research Trends,journal-article,2021,,2021,,Biomed Research International,journal,crossref:98,
-doi:10.1155/2021/6657167,Endodontic Microbiology: A Bibliometric Analysis Of The Top 50 Classics,journal-article,2021,,2021,,Biomed Research International,journal,crossref:98,
-doi:10.1007/s10551-021-04856-7,"Religiosity, Spirituality And Work: A Systematic Literature Review And Research Directions",journal-article,2021,,,,Journal Of Business Ethics,journal,crossref:297,
-doi:10.1016/j.ijggc.2021.103309,Life Cycle Assessment Of Carbon Capture And Storage/Utilization: From Current State To Future Research Directions And Opportunities,journal-article,2021,,108,,International Journal Of Greenhouse Gas Control,journal,crossref:78,
-doi:10.3390/en14144288,Smart City: A Bibliometric Analysis Of Conceptual Dimensions And Areas,journal-article,2021,14,14,,Energies,journal,crossref:1968,
-doi:10.1002/cjce.23913,Experimental Methods In Chemical Engineering: Temperature Programmed Surface Reaction Spectroscopy— Tpsr,journal-article,2021,2,99,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1002/cjce.24216,Experimental Methods In Chemical Engineering: Mössbauer Spectroscopy,journal-article,2021,10,99,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1108/dta-08-2020-0179,Knowledge Discovery In Research On Domestic Violence: An Overview Of The Last Fifty Years,journal-article,2021,4,55,,Data Technologies And Applications,journal,crossref:140,
-doi:10.1007/s10660-021-09464-1,20 Years Of Electronic Commerce Research,journal-article,2021,1,21,,Electronic Commerce Research,journal,crossref:297,
-doi:10.1016/j.jclepro.2021.126277,Environmental Entrepreneurship – Bibliometric And Content Analysis Of The Subject Literature Based On H-Core,journal-article,2021,,295,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.jclepro.2021.127503,Modelling In Off-Site Construction Supply Chain Management: A Review And Future Directions For Sustainable Modular Integrated Construction,journal-article,2021,,310,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.3390/ijerph18147503,Theme Trends And Knowledge-Relationship In Lifestyle Research: A Bibliometric Analysis,journal-article,2021,14,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.1155/2021/5568219,Association Of Traditional Chinese Medicine Body Constitution And Health-Related Quality Of Life In Female Patients With Systemic Lupus Erythematosus: A Cross-Sectional Study,journal-article,2021,,2021,,Evidence-Based Complementary And Alternative Medicine,journal,crossref:98,
-doi:10.1080/13032917.2021.1954042,A Bibliometric Study Of Medical Tourism,journal-article,2021,,,,Anatolia,journal,crossref:301,
-doi:10.1007/s43538-021-00016-7,Decision Support Systems Based On Scientific Evidence: Bibliometric Networks Of Invasive Lantana Camara,journal-article,2021,1,87,,Proceedings Of The Indian National Science Academy,journal,crossref:297,
-doi:10.2196/31097,Exploring The Shift In International Trends In Mobile Health Research From 2000 To 2020: Bibliometric Analysis,journal-article,2021,9,9,,Jmir Mhealth And Uhealth,journal,crossref:1010,
-doi:10.3390/app11062767,Is Digital Twin Technology Supporting Safety Management? A Bibliometric And Systematic Review,journal-article,2021,6,11,,Applied Sciences,journal,crossref:1968,
-doi:10.3390/app11073015,Quo Vadis Solar Energy Research?,journal-article,2021,7,11,,Applied Sciences,journal,crossref:1968,
-doi:10.1590/1678-987320287607,Disseram Que Eu Voltei Americanizada: A História Temática Da Revista De Sociologia E PolÃtica,journal-article,2020,76,28,,Revista De Sociologia E PolÃtica,journal,crossref:530,
-doi:10.1007/s12144-021-01947-6,A Bibliometric Analysis Of Executive Functions In Autism Spectrum Disorder,journal-article,2021,,,,Current Psychology,journal,crossref:297,
-doi:10.4018/978-1-7998-7452-2.ch016,Analysis Of Research On Knowledge Management In Universities,book-chapter,2021,,,0,,,,
-doi:10.1007/s11270-021-05224-x,Waste-To-Energy Technologies Towards Circular Economy: A Systematic Literature Review And Bibliometric Analysis,journal-article,2021,7,232,,"Water, Air, & Soil Pollution",journal,crossref:297,
-doi:10.1371/journal.pone.0253847,Teamtree Analysis: A New Approach To Evaluate Scientific Production,journal-article,2021,7,16,,Plos One,journal,crossref:340,
-doi:10.1016/j.geoderma.2021.115076,The Ecosystem Services Of Urban Soils: A Review,journal-article,2021,,395,,Geoderma,journal,crossref:78,
-doi:10.1111/ejed.12446,An Internationalised Europe And Regionally Focused Americas: A Network Analysis Of Higher Education Studies,journal-article,2021,2,56,,European Journal Of Education,journal,crossref:311,
-doi:10.1080/00038628.2021.1910480,A Scientometric Analysis And Review Of Spatial Cognition Studies Within The Framework Of Neuroscience And Architecture,journal-article,2021,4,64,,Architectural Science Review,journal,crossref:301,
-doi:10.1002/agj2.20628,Trend And Research Status Of Agronomy Based On The Essential Science Indicators During 2009–2019,journal-article,2021,2,113,,Agronomy Journal,journal,crossref:311,
-doi:10.22394/2410-132x-2021-7-1-66-84,International Scientific Research On Venture Capital: A Bibliometric And Mapping Analysis From The Period 1978–2020,journal-article,2021,1,7,,The Economics Of Science,journal,crossref:9677,
-doi:10.1016/j.heliyon.2021.e07154,Bibliographic Mapping Of Post-Consumer Plastic Waste Based On Hierarchical Circular Principles Across The System Perspective,journal-article,2021,6,7,,Heliyon,journal,crossref:78,
-doi:10.3390/ijerph18084234,Mapping Trends In Drowning Research: A Bibliometric Analysis 1995–2020,journal-article,2021,8,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/molecules26133882,Antiviral Activity Of Metabolites From Peruvian Plants Against Sars-Cov-2: An In Silico Approach,journal-article,2021,13,26,,Molecules,journal,crossref:1968,
-doi:10.1016/j.jbusres.2021.06.045,The Development Of Business Model Research: A Bibliometric Review,journal-article,2021,,135,,Journal Of Business Research,journal,crossref:78,
-doi:10.1590/1984-92302021v28n9604pt,Análise Da Produção CientÃfica Sobre Transformative Consumer Research E Transformative Service Research,journal-article,2021,96,28,,Organizações & Sociedade,journal,crossref:530,
-doi:10.1177/1548051821997406,New Kids On The Block? A Bibliometric Analysis Of Emerging Covid-19—Trends In Leadership Research,journal-article,2021,,,,Journal Of Leadership & Organizational Studies,journal,crossref:179,
-doi:10.3145/epi.2021.may.05,Redes De CoautorÃas De La Investigación Española Y Latinoamericana En Comunicación (2000-2019): Cohesión Interna Y Aislamiento Transcontinental,journal-article,2021,,,,El Profesional De La Información,journal,crossref:1709,
-doi:10.1038/s41545-021-00131-4,A Bibliometric Study On Biomimetic And Bioinspired Membranes For Water Filtration,journal-article,2021,1,4,,Npj Clean Water,journal,crossref:297,
-doi:10.1080/0194262x.2021.1937772,Characteristics And Inter-Citation Network Of 100 Most Influential Studies On Ocean Acidification: A Bibliometric Analysis,journal-article,2021,1,41,,Science &Amp; Technology Libraries,journal,crossref:301,
-doi:10.3390/agronomy11081504,Worldwide Research On The Ozone Influence In Plants,journal-article,2021,8,11,,Agronomy,journal,crossref:1968,
-doi:10.3390/agronomy11081557,Advances In Precision Coffee Growing Research: A Bibliometric Review,journal-article,2021,8,11,,Agronomy,journal,crossref:1968,
-doi:10.3390/ijerph18105143,Visualization And Analysis Of Mapping Knowledge Domains For Food Waste Studies,journal-article,2021,10,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/ijerph18115851,The Bibliometric Literature On Scopus And Wos: The Medicine And Environmental Sciences Categories As Case Of Study,journal-article,2021,11,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/ijerph18115985,A Bibliometric And Visualized Overview For The Evolution Of Process Safety And Environmental Protection,journal-article,2021,11,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.1080/10978526.2021.1930551,"Research On Innovation In China And Latin America: Bibliometric Insights In The Field Of Business, Management, And Decision Sciences",journal-article,2021,,,,Latin American Business Review,journal,crossref:301,
-doi:10.3390/educsci11040184,Visual Arts In The University Educational Ecosystem: Analysis Of Schools Of Knowledge,journal-article,2021,4,11,,Education Sciences,journal,crossref:1968,
-doi:10.3390/ijerph18147358,Changes In The Structures And Directions Of Heavy Metal-Contaminated Soil Remediation Research From 1999 To 2020: A Bibliometric & Scientometric Study,journal-article,2021,14,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/recycling6020034,A Systematic Review Of Construction And Demolition Waste Management In Australia: Current Practices And Challenges,journal-article,2021,2,6,,Recycling,journal,crossref:1968,
-doi:10.1016/j.jenvman.2021.112335,Reuse Assessment Of Weee: Systematic Review Of Emerging Themes And Research Directions,journal-article,2021,,287,,Journal Of Environmental Management,journal,crossref:78,
-doi:10.1186/s12906-021-03354-7,"Insight Into The Characteristics Of Research Published In Traditional, Complementary, Alternative, And Integrative Medicine Journals: A Bibliometric Analysis",journal-article,2021,1,21,,Bmc Complementary Medicine And Therapies,journal,crossref:297,
-doi:10.1016/j.ijdrr.2021.102141,Research Trends In Vulnerability Studies From 2000 To 2019: Findings From A Bibliometric Analysis,journal-article,2021,,56,,International Journal Of Disaster Risk Reduction,journal,crossref:78,
-doi:10.1080/09537325.2020.1865530,An Overview Of 42 Years Of Lean Production: Applying Bibliometric Analysis To Investigate Strategic Themes And Scientific Evolution Structure,journal-article,2021,9,33,,Technology Analysis & Strategic Management,journal,crossref:301,
-doi:10.1111/1758-5899.12912,Academic Research On The 2030 Agenda: Challenges Of A Transdisciplinary Field Of Study,journal-article,2021,3,12,,Global Policy,journal,crossref:311,
-doi:10.1111/jpim.12562,Digital Transformation And Innovation Management: A Synthesis Of Existing Research And An Agenda For Future Studies,journal-article,2021,1,38,,Journal Of Product Innovation Management,journal,crossref:311,
-doi:10.3390/ijerph18116135,"Digital Technologies In The Architecture, Engineering And Construction (Aec) Industry—A Bibliometric—Qualitative Literature Review Of Research Activities",journal-article,2021,11,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.1007/s11192-019-03222-9,Investigating The Applications Of Artificial Intelligence In Cyber Security,journal-article,2019,2,121,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03230-9,The Role Of South African Researchers In Intercontinental Collaboration,journal-article,2019,3,121,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03234-5,Bibliometric Analysis In Motorcycle Accident Research: A Global Overview,journal-article,2019,2,121,,Scientometrics,journal,crossref:297,
-doi:10.1007/s11192-019-03238-1,The Data Source Of This Study Is Web Of Science Core Collection? Not Enough,journal-article,2019,3,121,,Scientometrics,journal,crossref:297,
-doi:10.1007/s10098-018-1624-1,Research On Green Supply Chain: A Bibliometric Analysis,journal-article,2018,1,21,,Clean Technologies And Environmental Policy,journal,crossref:297,
-doi:10.1155/2018/2607618,Development Of A Gesture-Based Game Applying Participatory Design To Reflect Values Of Manual Wheelchair Users,journal-article,2018,,2018,,International Journal Of Computer Games Technology,journal,crossref:98,
-doi:10.1093/reseval/rvz015,"Can Topic Models Be Used In Research Evaluations? Reproducibility, Validity, And Reliability When Compared With Semantic Maps",journal-article,2019,3,28,,Research Evaluation,journal,crossref:286,
-doi:10.1007/s10961-017-9637-1,Mapping The Field: A Bibliometric Analysis Of The Literature On University–Industry Collaborations,journal-article,2017,3,44,,The Journal Of Technology Transfer,journal,crossref:297,
-doi:10.1111/pirs.12291,"On Clusters And Industrial Districts: A Literature Review Using Bibliometrics Methods, 2000-2015",journal-article,2017,4,97,,Papers In Regional Science,journal,crossref:311,
-doi:10.1111/rec.12899,Evolution Of The Field Of Ecological Restoration Over The Last Three Decades: A Bibliometric Analysis,journal-article,2018,3,27,,Restoration Ecology,journal,crossref:311,
-doi:10.1080/08874417.2019.1601538,Computer Science In Asean: A Ten-Year Bibliometric Analysis (2009–2018),journal-article,2019,3,61,,Journal Of Computer Information Systems,journal,crossref:301,
-doi:10.1177/0165551519837182,Understanding Data Search As A Socio-Technical Practice,journal-article,2019,4,46,,Journal Of Information Science,journal,crossref:179,
-doi:10.12688/f1000research.12314.1,A Bibliometric Analysis Of The Global Research On Sofosbuvir,journal-article,2017,,6,,F1000Research,journal,crossref:2560,
-doi:10.1017/s003329171800363x,Where Are The Breaks In Translation From Theory To Clinical Practice (And Back) In Addressing Depression? An Empirical Graph-Theoretic Approach,journal-article,2018,16,49,,Psychological Medicine,journal,crossref:56,
-doi:10.7717/peerj.2567,Systematic Review On The Conservation Genetics Of African Savannah Elephants,journal-article,2016,,4,,Peerj,journal,crossref:4443,
-doi:10.1002/pri.1760,Evolution Of Physiotherapy Scholarship: A Comparative Bibliometric Analysis Of Two Decades Of English Published Work,journal-article,2018,2,24,,Physiotherapy Research International,journal,crossref:311,
-doi:10.1007/s10457-017-0107-4,Smallholder Reforestation And Livelihoods In The Humid Tropics: A Systematic Mapping Study,journal-article,2017,6,92,,Agroforestry Systems,journal,crossref:297,
-doi:10.1007/s10457-018-0231-9,Is Research Supporting Sustainable Management In A Changing World? Insights From A Mediterranean Silvopastoral System,journal-article,2018,1,93,,Agroforestry Systems,journal,crossref:297,
-doi:10.1177/2059204318811786,"Visualizing Music Psychology: A Bibliometric Analysis Of Psychology Of Music, Music Perception, And Musicae Scientiae From 1973 To 2017",journal-article,2019,,2,,Music & Science,journal,crossref:179,
-doi:10.1007/s12053-016-9470-7,Mapping Energy-Efficient Technological Advances In Home Appliances,journal-article,2016,3,10,,Energy Efficiency,journal,crossref:297,
-doi:10.1007/s12078-018-9243-0,Bibliometric Study On Functional Magnetic Resonance Imaging Literature (1995–2017) Concerning Chemosensory Perception,journal-article,2018,1,11,,Chemosensory Perception,journal,crossref:297,
-doi:10.1007/s12145-019-00408-w,Ten Years Of Disaster Management And Use Of Ict: A Scientometric Analysis,journal-article,2019,1,13,,Earth Science Informatics,journal,crossref:297,
-doi:10.1007/978-3-319-91473-2_1,A Bibliometric Analysis Of The Explainable Artificial Intelligence Research Field,book-chapter,2018,,,1,Communications In Computer And Information Science - Information Processing And Management Of Uncertainty In Knowledge-Based Systems. Theory And Foundations,book,crossref:297,
-doi:10.3390/en11071894,The Electric Bicycle: Worldwide Research Trends,journal-article,2018,7,11,,Energies,journal,crossref:1968,
-doi:10.3390/en12081414,"A Healthy, Energy-Efficient And Comfortable Indoor Environment, A Review",journal-article,2019,8,12,,Energies,journal,crossref:1968,
-doi:10.3390/en12081539,Literature Review Of Net Zero And Resilience Research Of The Urban Environment: A Citation Analysis Using Big Data,journal-article,2019,8,12,,Energies,journal,crossref:1968,
-doi:10.3390/f10010072,Forests’ First Decade: A Bibliometric Analysis Overview,journal-article,2019,1,10,,Forests,journal,crossref:1968,
-doi:10.3390/f9040223,Sustainable Forest Bioenergy Development Strategies In Indochina: Collaborative Effort To Establish Regional Policies,journal-article,2018,4,9,,Forests,journal,crossref:1968,
-doi:10.1002/cjce.23344,Experimental Methods In Chemical Engineering: Ultraviolet Visible Spectroscopy-Uv-Vis,journal-article,2018,12,96,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1002/cjce.23346,Experimental Methods In Chemical Engineering: Differential Scanning Calorimetry-Dsc,journal-article,2018,12,96,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1002/cjce.23466,Experimental Methods In Chemical Engineering: Mass Spectrometry—Ms,journal-article,2019,5,97,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1002/cjce.23530,Experimental Methods In Chemical Engineering: Xâ€Ray Photoelectron Spectroscopyâ€Xps,journal-article,2019,10,97,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1080/23311975.2019.1632569,Mapping Leading Universities In Strategy Research: Three Decades Of Collaborative Networks,journal-article,2019,1,6,,Cogent Business & Management,journal,crossref:301,
-doi:10.1111/jan.13868,"Bibliometric Analysis Of Six Nursing Journals From The Web Of Science, 2012–2017",journal-article,2018,3,75,,Journal Of Advanced Nursing,journal,crossref:311,
-doi:10.1007/s10995-019-02772-x,Analysis Of Publication Interest On Preterm Birth Over Two Decades,journal-article,2019,10,23,,Maternal And Child Health Journal,journal,crossref:297,
-doi:10.1371/journal.pone.0196549,The Influence Of Past Research On The Design Of Experiments With Dissolved Organic Matter And Engineered Nanoparticles,journal-article,2018,5,13,,Plos One,journal,crossref:340,
-doi:10.1371/journal.pone.0200929,From Systems To Biology: A Computational Analysis Of The Research Articles On Systems Biology From 1992 To 2013,journal-article,2018,7,13,,Plos One,journal,crossref:340,
-doi:10.3390/admsci8030034,A Research Agenda On Open Innovation And Entrepreneurship: A Co-Word Analysis,journal-article,2018,3,8,,Administrative Sciences,journal,crossref:1968,
-doi:10.1007/s10902-018-0022-z,The Economics Of Subjective Well-Being: A Bibliometric Analysis,journal-article,2018,6,20,,Journal Of Happiness Studies,journal,crossref:297,
-doi:10.1177/0002764218766581,The Intellectual Structure Of The American Behavioral Scientist: Five Decades Of Research,journal-article,2018,7,63,,American Behavioral Scientist,journal,crossref:179,
-doi:10.1007/s00170-018-2617-2,Internet Of Things Process Selection: Ahp Selection Method,journal-article,2018,9-12,99,,The International Journal Of Advanced Manufacturing Technology,journal,crossref:297,
-doi:10.1002/sdr.1628,"System Dynamics Review And Publications 1985–2017: Analysis, Synthesis And Contributions",journal-article,2019,2,35,,System Dynamics Review,journal,crossref:311,
-doi:10.1002/sd.1927,Green It And Sustainable Technology Development: Bibliometric Overview,journal-article,2019,4,27,,Sustainable Development,journal,crossref:311,
-doi:10.1017/dmp.2015.58,Dynamics Of A Global Zoonotic Research Network Over 33 Years (1980–2012),journal-article,2015,5,9,,Disaster Medicine And Public Health Preparedness,journal,crossref:56,
-doi:10.1007/s10669-018-9687-4,Bibliometric Analysis Of Climate Change Vulnerability Assessment Research,journal-article,2018,4,38,,Environment Systems And Decisions,journal,crossref:297,
-doi:10.1007/s10676-018-9457-5,From Dignity To Security Protocols: A Scientometric Analysis Of Digital Ethics,journal-article,2018,3,20,,Ethics And Information Technology,journal,crossref:297,
-doi:10.1080/1540496x.2018.1433658,Credit Risk Research: Review And Agenda,journal-article,2018,4,54,,Emerging Markets Finance And Trade,journal,crossref:301,
-doi:10.1080/15440478.2019.1636742,Cotton Fiber In Web Of Science And Scopus: Mapping And Visualization Of Research Topics And Publishing Patterns,journal-article,2019,4,18,,Journal Of Natural Fibers,journal,crossref:301,
-doi:10.1007/s11575-016-0308-5,Mapping The Intellectual Structure Of Research On ‘Born Global’ Firms And Invs: A Citation/Co-Citation Analysis,journal-article,2016,4,57,,Management International Review,journal,crossref:297,
-doi:10.3390/nu11061357,Role Of Diet In Chronic Obstructive Pulmonary Disease Prevention And Treatment,journal-article,2019,6,11,,Nutrients,journal,crossref:1968,
-doi:10.1186/s11671-019-2994-y,Publication Trends In Drug Delivery And Magnetic Nanoparticles,journal-article,2019,1,14,,Nanoscale Research Letters,journal,crossref:297,
-doi:10.1080/07294360.2019.1654438,International Comparisons Of Themes In Higher Education Research,journal-article,2019,7,38,,Higher Education Research & Development,journal,crossref:301,
-doi:10.1007/s00217-019-03321-0,Food Traceability: A Term Map Analysis Basic Review,journal-article,2019,10,245,,European Food Research And Technology,journal,crossref:297,
-doi:10.1186/s41182-017-0073-6,Spatiotemporal Analysis Of Tropical Disease Research Combining Europe Pmc And Affiliation Mapping Web Services,journal-article,2017,1,45,,Tropical Medicine And Health,journal,crossref:297,
-doi:10.1186/s41205-017-0012-5,Medical 3D Printing: Methods To Standardize Terminology And Report Trends,journal-article,2017,1,3,,3D Printing In Medicine,journal,crossref:297,
-doi:10.1186/s41239-018-0101-6,Higher Education Dominance And Siloed Knowledge: A Systematic Review Of Flipped Classroom Research,journal-article,2018,1,15,,International Journal Of Educational Technology In Higher Education,journal,crossref:297,
-doi:10.1186/s41239-018-0103-4,Categorization Of E-Learning As An Emerging Discipline In The World Publication System: A Bibliometric Study In Scopus,journal-article,2018,1,15,,International Journal Of Educational Technology In Higher Education,journal,crossref:297,
-doi:10.1186/s42238-019-0004-y,"Molecular Neuroscience At Its “Highâ€: Bibliometric Analysis Of The Most Cited Papers On Endocannabinoid System, Cannabis And Cannabinoids",journal-article,2019,1,1,,Journal Of Cannabis Research,journal,crossref:297,
-doi:10.1057/s41599-018-0175-8,A Bibliometric Analysis Of The Interdisciplinary Field Of Cultural Evolution,journal-article,2018,1,4,,Palgrave Communications,journal,crossref:297,
-doi:10.1061/(asce)co.1943-7862.0001492,Analysis Of Citation Networks In Building Information Modeling Research,journal-article,2018,8,144,,Journal Of Construction Engineering And Management,journal,crossref:30,
-doi:10.1061/(asce)co.1943-7862.0001682,Scientometric Review Of Articles Published In Asce’S Journal Of Construction Engineering And Management From 2000 To 2018,journal-article,2019,8,145,,Journal Of Construction Engineering And Management,journal,crossref:30,
-doi:10.1061/(asce)ei.1943-5541.0000425,Text Mining–Based Review Of Articles Published In The Journal Of Professional Issues In Engineering Education And Practice,journal-article,2019,4,145,,Journal Of Professional Issues In Engineering Education And Practice,journal,crossref:30,
-doi:10.1061/(asce)me.1943-5479.0000722,Tension Between Leadership Archetypes: Systematic Review To Inform Construction Research And Practice,journal-article,2020,1,36,,Journal Of Management In Engineering,journal,crossref:30,
-doi:10.1007/s11301-018-0140-z,Exploring The Landscape Of Corporate Venture Capital: A Systematic Review Of The Entrepreneurial And Finance Literature,journal-article,2018,3,68,,Management Review Quarterly,journal,crossref:297,
-doi:10.1007/s11301-019-00172-7,Research In Business Service Purchasing: Current Status And Directions For The Future,journal-article,2019,3,70,,Management Review Quarterly,journal,crossref:297,
-doi:10.3390/antibiotics7040102,Bibliometric Analysis Of Global Research On Clavulanic Acid,journal-article,2018,4,7,,Antibiotics,journal,crossref:1968,
-doi:10.1177/1477153519857788,Half A Century Of Lighting Research & Technology: A Bibliometric Review,journal-article,2019,4,52,,Lighting Research & Technology,journal,crossref:179,
-doi:10.1590/2318-08892018000300001,Análisis De Co-Palabras Aplicado A Los ArtÃculos Muy Citados En BiblioteconomÃa Y Ciencias De La Información (2007-2017),journal-article,2018,3,30,,Transinformação,journal,crossref:530,
-doi:10.1590/2318-0889201931e190027,Estudos Altmétricos No Brasil: Uma Análise A Partir Dos CurrÃculos Da Plataforma Lattes-Cnpq,journal-article,2019,,31,,Transinformação,journal,crossref:530,
-doi:10.3897/rio.2.e9841,Bibliometric Study To Assist Research Topic Selection: A Case From Research Design On Jakarta’S Groundwater (Part 1),journal-article,2016,,2,,Research Ideas And Outcomes,journal,crossref:2258,
-doi:10.3897/rio.5.e35820,Robustifying Scholia: Paving The Way For Knowledge Discovery And Research Assessment Through Wikidata,journal-article,2019,,5,,Research Ideas And Outcomes,journal,crossref:2258,
-doi:10.1007/s00484-019-01695-0,Short Communication: Trends In Biometeorology Publishing: A Case Study Of Climate And Human Health Commission Members,journal-article,2019,6,63,,International Journal Of Biometeorology,journal,crossref:297,
-doi:10.1007/s00500-018-3168-z,Twenty Years Of Soft Computing: A Bibliometric Overview,journal-article,2018,5,23,,Soft Computing,journal,crossref:297,
-doi:10.1002/csr.1792,Framing The Evolution Of Corporate Social Responsibility As A Discipline (1973–2018): A Largeâ€Scale Scientometric Analysis,journal-article,2019,1,27,,Corporate Social Responsibility And Environmental Management,journal,crossref:311,
-doi:10.1002/rra.3431,The Effects Of Dams On Macroinvertebrates: G Lobal Trends And Insights,journal-article,2019,,,,River Research And Applications,journal,crossref:311,
-doi:10.1111/petr.12933,Counting The Publications That Count,journal-article,2017,4,21,,Pediatric Transplantation,journal,crossref:311,
-doi:10.2196/12625,Detecting The Interdisciplinary Nature And Topic Hotspots Of Robotics In Surgery: Social Network Analysis And Bibliometric Study,journal-article,2019,3,21,,Journal Of Medical Internet Research,journal,crossref:1010,
-doi:10.2196/14401,Characterizing Artificial Intelligence Applications In Cancer Research: A Latent Dirichlet Allocation Analysis,journal-article,2019,4,7,,Jmir Medical Informatics,journal,crossref:1010,
-doi:10.1080/10941665.2019.1567564,The Global Dissemination Of Scholarly Tourism Outputs From 1976 To 2016: Evidence From Australia,journal-article,2019,5,24,,Asia Pacific Journal Of Tourism Research,journal,crossref:301,
-doi:10.1080/10963758.2019.1655433,Authorship Structures And Collaboration Networks In Tourism Journals,journal-article,2019,1,33,,Journal Of Hospitality & Tourism Education,journal,crossref:301,
-doi:10.1080/00131911.2019.1566212,Evolution Of Topics In Education Research: A Systematic Review Using Bibliometric Analysis,journal-article,2019,3,72,,Educational Review,journal,crossref:301,
-doi:10.3390/ijerph16010029,Emerging Trends And New Developments In Disaster Research After The 2008 Wenchuan Earthquake,journal-article,2018,1,16,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/ijerph16111928,Analysis Of Global Research On Malaria And Plasmodium Vivax,journal-article,2019,11,16,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/ijerph16152788,Application Of The Theory Of Planned Behavior In Environmental Science: A Comprehensive Bibliometric Analysis,journal-article,2019,15,16,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.1007/s41233-021-00047-4,"Mapping Experience Research Across Disciplines: Who, Where, When",journal-article,2021,1,6,,Quality And User Experience,journal,crossref:297,
-doi:10.1108/ecam-04-2021-0287,A Qualitative Conceptual Framework To Tackle Skill Shortages In Offsite Construction Industry: A Scientometric Approach,journal-article,2021,,,,"Engineering, Construction And Architectural Management",journal,crossref:140,
-doi:10.3390/agriculture11090889,"Metrology, Agriculture And Food: Literature Quantitative Analysis",journal-article,2021,9,11,,Agriculture,journal,crossref:1968,
-doi:10.1155/2021/9274918,Changes In The Structures And Directions Of Rock Excavation Research From 1999 To 2020: A Bibliometric Study,journal-article,2021,,2021,,Advances In Civil Engineering,journal,crossref:98,
-doi:10.1007/s00296-021-04988-z,Bibliometric Analysis Of Publication Activity In The Field Of Familial Mediterranean Fever In 2010–2019: A Scopus-Based Study,journal-article,2021,11,41,,Rheumatology International,journal,crossref:297,
-doi:10.1021/acs.analchem.9b05454,Ambient Ionization Mass Spectrometry Today And Tomorrow: Embracing Challenges And Opportunities,journal-article,2019,3,92,,Analytical Chemistry,journal,crossref:316,
-doi:10.1002/adom.202100519,Recent Advances In Block Copolymer Selfâ€Assembly For The Fabrication Of Photonic Films And Pigments,journal-article,2021,21,9,,Advanced Optical Materials,journal,crossref:311,
-doi:10.1016/j.jpurol.2021.08.003,The Top 100 Cited Articles In Pediatric Urology: A Bibliometric Analysis,journal-article,2021,5,17,,Journal Of Pediatric Urology,journal,crossref:78,
-doi:10.3390/economies9030110,A Bibliometric Mapping Of Cost-Benefit Analysis—Three Decades Of Studies,journal-article,2021,3,9,,Economies,journal,crossref:1968,
-doi:10.3390/su13168997,Leveraging Capabilities Of Technology Into A Circular Supply Chain To Build Circular Business Models: A State-Of-The-Art Systematic Review,journal-article,2021,16,13,,Sustainability,journal,crossref:1968,
-doi:10.1080/14778238.2021.1943553,"Counterintuitive, Yet Essential: Taking Stock Of Organizational Unlearning Research Through A Scientometric Analysis (1976-2019)",journal-article,2021,,,,Knowledge Management Research & Practice,journal,crossref:301,
-doi:10.1111/sms.14019,Studying Professional And Recreational Female Footballers: A Bibliometric Exercise,journal-article,2021,,,,Scandinavian Journal Of Medicine & Science In Sports,journal,crossref:311,
-doi:10.1136/bmjspcare-2021-002982,Global Palliative Care Research (2002-2020): Bibliometric Review And Mapping Analysis,journal-article,2021,,,,Bmj Supportive & Palliative Care,journal,crossref:239,
-doi:10.3390/membranes11080600,Research And Development Journey And Future Trends Of Hollow Fiber Membranes For Purification Applications (1970–2020): A Bibliometric Analysis,journal-article,2021,8,11,,Membranes,journal,crossref:1968,
-doi:10.1002/jclp.23227,A Bibliometric Analysis Of Covidâ€19 Publications In The Ten Psychologyâ€Related Web Of Science Categories In The Social Science Citation Index,journal-article,2021,12,77,,Journal Of Clinical Psychology,journal,crossref:311,
-doi:10.1007/978-981-16-4760-4_1,Assessing Eu'S Progress And Performance With Regard To Sdg-12 Targets And Indicators,book-chapter,2021,,,1,Industrial Ecology - Sustainable Production And Consumption Systems,book,crossref:297,
-doi:10.1186/s12302-021-00552-5,Handling Climate Change Education At Universities: An Overview,journal-article,2021,1,33,,Environmental Sciences Europe,journal,crossref:297,
-doi:10.3390/su131810094,Learning From Each Other—A Bibliometric Review Of Research On Information Disorders,journal-article,2021,18,13,,Sustainability,journal,crossref:1968,
-doi:10.1016/j.techsoc.2021.101738,Assessing The Impacts Of Digital Transformation On Internal Auditing: A Bibliometric Analysis,journal-article,2021,,67,,Technology In Society,journal,crossref:78,
-doi:10.3390/en14164919,How Digital Twin Concept Supports Internal Transport Systems?—Literature Review,journal-article,2021,16,14,,Energies,journal,crossref:1968,
-doi:10.1080/03088839.2021.1969460,State Of Play In Technology And Legal Framework Of Alternative Marine Fuels And Renewable Energy Systems: A Bibliometric Analysis,journal-article,2021,,,,Maritime Policy & Management,journal,crossref:301,
-doi:10.2147/cmar.s324284,Global Analysis Of Research Trends On Kidney Function After Nephron-Sparing Surgery: A Bibliometric And Visualised Study,journal-article,2021,,Volume 13,,Cancer Management And Research,journal,crossref:301,
-doi:10.1007/s10639-021-10720-y,A Meta-Analysis And Bibliographic Review Of The Effect Of Nine Factors On Online Learning Outcomes Across The World,journal-article,2021,,,,Education And Information Technologies,journal,crossref:297,
-doi:10.1007/s11274-021-03123-1,"A Review On The Removal Of Heavy Metals And Metalloids By Constructed Wetlands: Bibliometric, Removal Pathways, And Key Factors",journal-article,2021,9,37,,World Journal Of Microbiology And Biotechnology,journal,crossref:297,
-doi:10.1007/s11356-021-15939-3,Using Mendelian Randomization As The Cornerstone For Causal Inference In Epidemiology,journal-article,2021,4,29,,Environmental Science And Pollution Research,journal,crossref:297,
-doi:10.1080/00472778.2021.1955122,Corporate Social Responsibility In Family Firms: A Systematic Literature Review,journal-article,2021,,,,Journal Of Small Business Management,journal,crossref:301,
-doi:10.1186/s12992-021-00754-9,Global Research Publications On Irrational Use Of Antimicrobials: Call For More Research To Contain Antimicrobial Resistance,journal-article,2021,1,17,,Globalization And Health,journal,crossref:297,
-doi:10.1002/mabi.202100103,Antimicrobial Peptides: The Promising Therapeutics For Cutaneous Wound Healing,journal-article,2021,10,21,,Macromolecular Bioscience,journal,crossref:311,
-doi:10.1016/j.iref.2021.08.002,Twenty-Nine Years Of The Journal Of International Review Of Economics And Finance: A Scientometric Overview (1992–2020),journal-article,2021,,76,,International Review Of Economics & Finance,journal,crossref:78,
-doi:10.1108/ecam-03-2021-0232,"Residential Building Defects Investigation And Mitigation – A Comparative Review In Victoria, Australia, For Understanding The Way Forward",journal-article,2021,,,,"Engineering, Construction And Architectural Management",journal,crossref:140,
-doi:10.3390/brainsci11081077,"Inflammatory Biomarkers In Febrile Seizure: A Comprehensive Bibliometric, Review And Visualization Analysis",journal-article,2021,8,11,,Brain Sciences,journal,crossref:1968,
-doi:10.3390/jtaer16060116,Internet Of Things (Iot) Technology Research In Business And Management Literature: Results From A Co-Citation Analysis,journal-article,2021,6,16,,Journal Of Theoretical And Applied Electronic Commerce Research,journal,crossref:1968,
-doi:10.1080/15440478.2021.1952139,Bibliometric Analysis Of Cotton Research From Plant Sciences Category Based On Web Of Science,journal-article,2021,,,,Journal Of Natural Fibers,journal,crossref:301,
-doi:10.17533/udea.le.n95a344139,Dinámicas De La Producción CientÃfica Colombiana En EconomÃa,journal-article,2021,95,,,Lecturas De EconomÃa,journal,crossref:7132,
-doi:10.1016/j.techfore.2021.121026,Knowledge And Innovation In Start-Up Ventures: A Systematic Literature Review And Research Agenda,journal-article,2021,,172,,Technological Forecasting And Social Change,journal,crossref:78,
-doi:10.1177/03128962211035470,The Development Of Green Enterprises: A Literature Review Based On Vosviewer And Pajek,journal-article,2021,,,,Australian Journal Of Management,journal,crossref:179,
-doi:10.1111/and.14206,Research Trends Of Prostatitis Over Past 20 Years: A Bibliometric Analysis,journal-article,2021,10,53,,Andrologia,journal,crossref:311,
-doi:10.1007/s11356-021-15787-1,Bibliometric Analysis Of Global Research On White Rot Fungi Biotechnology For Environmental Application,journal-article,2021,1,29,,Environmental Science And Pollution Research,journal,crossref:297,
-doi:10.1002/ece3.7980,Human–Wildlife Conflict In The Roof Of The World: Understanding Multidimensional Perspectives Through A Systematic Review,journal-article,2021,17,11,,Ecology And Evolution,journal,crossref:311,
-doi:10.1007/978-981-16-6128-0_25,Fault Diagnosis In Industries: How To Improve The Health Assessment Of Rotating Machinery,book-chapter,2021,,,1,"Sustainable Design And Manufacturing - Smart Innovation, Systems And Technologies",book,crossref:297,
-doi:10.1021/acs.iecr.8b00936,A Bibliometric Review And Analysis Of Data-Driven Fault Detection And Diagnosis Methods For Process Systems,journal-article,2018,32,57,,Industrial & Engineering Chemistry Research,journal,crossref:316,
-doi:10.3390/life11090970,"Bee Products: A Representation Of Biodiversity, Sustainability, And Health",journal-article,2021,9,11,,Life,journal,crossref:1968,
-doi:10.3390/su13179780,Bibliometric Literature Analysis Of A Multi-Dimensional Sustainable Development Issue: Energy Poverty,journal-article,2021,17,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/su13179631,"Science Mapping Of The Global Knowledge Base On Management, Leadership, And Administration Related To Covid-19 For Promoting The Sustainability Of Scientific Research",journal-article,2021,17,13,,Sustainability,journal,crossref:1968,
-doi:10.1007/978-3-030-75722-9_7,"Computational Tools For Literature Review, Analysis, And Synthesis",book-chapter,2021,,,1,Literature Reviews,book,crossref:297,
-doi:10.3390/jrfm14090427,The Ascent Of Bitcoin: Bibliometric Analysis Of Bitcoin Research,journal-article,2021,9,14,,Journal Of Risk And Financial Management,journal,crossref:1968,
-doi:10.3390/su13179981,Delineating The Implications Of Dispersing Teams And Teleworking In An Agile Uk Construction Sector,journal-article,2021,17,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/systems9030067,Accounting Information Systems: Scientific Production And Trends In Research,journal-article,2021,3,9,,Systems,journal,crossref:1968,
-doi:10.1108/jsma-01-2021-0002,"Behavioral Strategy: Mapping The Trends, Sources And Intellectual Evolution",journal-article,2021,1,15,,Journal Of Strategy And Management,journal,crossref:140,
-doi:10.1080/03088839.2021.1972486,Life Cycle Assessment And Life Cycle Costing For Assessing Maritime Transport: A Comprehensive Literature Review,journal-article,2021,,,,Maritime Policy & Management,journal,crossref:301,
-doi:10.3233/wor-213576,Ergonomics 4.0: A Bibliometric Review Of Human Factors Research In Industrial Revolution 4.0 (Ir 4.0),journal-article,2021,1,70,,Work,journal,crossref:7437,
-doi:10.3390/en14185711,Compressor Degradation Management Strategies For Gas Turbine Aero-Engine Controller Design,journal-article,2021,18,14,,Energies,journal,crossref:1968,
-doi:10.1007/s42690-021-00616-2,The Period Of Insect Research In The Tropics: A Bibliometric Analysis,journal-article,2021,1,42,,International Journal Of Tropical Insect Science,journal,crossref:297,
-doi:10.1002/bbb.2290,A Bibliometric Analysis On Potential Uses Of Brewer'S Spent Grains In A Biorefinery For The Circular Economy Transition Of The Beer Industry,journal-article,2021,6,15,,"Biofuels, Bioproducts And Biorefining",journal,crossref:311,
-doi:10.3390/ijerph18179396,Worldwide Research Trends On Solar-Driven Water Disinfection,journal-article,2021,17,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.1016/j.tifs.2021.08.032,State Of The Art Review Of Big Data And Web-Based Decision Support Systems (Dss) For Food Safety Risk Assessment With Respect To Climate Change,journal-article,2021,,,,Trends In Food Science & Technology,journal,crossref:78,
-doi:10.1186/s40066-021-00315-8,A Bibliometric Analysis Of The Scientific Production Related To “Zero Hunger†As A Sustainable Development Goal: Trends Of The Pacific Alliance Towards 2030,journal-article,2021,1,10,,Agriculture & Food Security,journal,crossref:297,
-doi:10.1016/j.techfore.2021.121179,"Covid-19, Consumer Behavior, Technology, And Society: A Literature Review And Bibliometric Analysis",journal-article,2021,,173,,Technological Forecasting And Social Change,journal,crossref:78,
-doi:10.1108/jdqs-08-2021-0020,Thirty Years Of The Journal Of Derivatives And Quantitative Studies: A Bibliometric Analysis,journal-article,2021,4,29,,Journal Of Derivatives And Quantitative Studies: ì„ ë¬¼ì—°êµ¬,journal,crossref:140,
-doi:10.1016/j.egyr.2021.06.084,Sustainability And Challenges In Biodiesel Production From Waste Cooking Oil: An Advanced Bibliometric Analysis,journal-article,2021,,7,,Energy Reports,journal,crossref:78,
-doi:10.1016/j.jsr.2021.09.002,Structural Anatomy And Temporal Trends Of Road Accident Research: Full-Scope Analyses Of The Field,journal-article,2021,,79,,Journal Of Safety Research,journal,crossref:78,
-doi:10.1007/978-3-030-78570-3_4,Eco-Innovation And Digital Transformation Relationship: Circular Economy As A Focal Point,book-chapter,2021,,,1,Industrial Engineering And Operations Management - Springer Proceedings In Mathematics & Statistics,book,crossref:297,
-doi:10.1007/s11540-021-09521-0,Bibliometric Analysis Of Potato Research Publications From Agronomy Category Based On Web Of Science From 2000 To 2021,journal-article,2021,,,,Potato Research,journal,crossref:297,
-doi:10.1108/jfmm-02-2021-0046,"Past, Present And Future Of Luxury Brands: A Review And Bibliometric Analysis",journal-article,2021,,,,Journal Of Fashion Marketing And Management: An International Journal,journal,crossref:140,
-doi:10.3390/su13179582,The Analysis Of Research Hotspots In The Field Of Urban Quality,journal-article,2021,17,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/ijerph18126187,Physical Activity Participation And The Environment In Children And Adolescents: A Systematic Review And Meta-Analysis Protocol,journal-article,2021,12,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/su13020791,Living Labs: From Niche To Mainstream Innovation Management,journal-article,2021,2,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/su13031275,Responsible Production For Sustainability: Concept Analysis And Bibliometric Review,journal-article,2021,3,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/su13042126,Sustainable Development Goals And Education: A Bibliometric Mapping Analysis,journal-article,2021,4,13,,Sustainability,journal,crossref:1968,
-doi:10.1007/s13132-021-00803-z,Location Matters: A Novel Methodology For Patent’S National Phase Process,journal-article,2021,,,,Journal Of The Knowledge Economy,journal,crossref:297,
-doi:10.1155/2021/5547530,Application Of Blockchain For Internet Of Things: A Bibliometric Analysis,journal-article,2021,,2021,,Mathematical Problems In Engineering,journal,crossref:98,
-doi:10.3390/catal11080913,Bibliometric Analysis On The Papers Dedicated To Microplastics In Wastewater Treatments,journal-article,2021,8,11,,Catalysts,journal,crossref:1968,
-doi:10.1002/kpm.1658,The Relationship Between The Internet Of Things And Knowledge Management In Smart Ecosystem Development,journal-article,2021,2,28,,Knowledge And Process Management,journal,crossref:311,
-doi:10.3390/ijerph18041764,Mapping The Worldwide Trends On Energy Poverty Research: A Bibliometric Analysis (1999–2019),journal-article,2021,4,18,,International Journal Of Environmental Research And Public Health,journal,crossref:1968,
-doi:10.3390/molecules26144334,A Review Of Wine Authentication Using Spectroscopic Approaches In Combination With Chemometrics,journal-article,2021,14,26,,Molecules,journal,crossref:1968,
-doi:10.1162/qss_a_00109,A Multidimensional Framework For Characterizing The Citation Impact Of Scientific Publications,journal-article,2021,1,2,,Quantitative Science Studies,journal,crossref:281,
-doi:10.15561/20755279.2021.0301,Physical Activity In The Context Of The Covid-19 Pandemic: Research Profiling And Mapping,journal-article,2021,3,25,,Physical Education Of Students,journal,crossref:6188,
-doi:10.1016/j.spc.2021.03.030,The Role Of Product Design In Circular Business Models: An Analysis Of Challenges And Opportunities For Electric Vehicles And White Goods,journal-article,2021,,27,,Sustainable Production And Consumption,journal,crossref:78,
-doi:10.1016/j.compind.2021.103458,Systemic Formalisation Of Cyber-Physical-Social System (Cpss): A Systematic Literature Review,journal-article,2021,,129,,Computers In Industry,journal,crossref:78,
-doi:10.3390/su13116225,Corporate Social Responsibility And Corporate Tax Aggressiveness: A Scientometric Analysis Of The Existing Literature To Map The Future,journal-article,2021,11,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/su13126562,Towards Sustainability In Higher-Education Institutions: Analysis Of Contributing Factors And Appropriate Strategies,journal-article,2021,12,13,,Sustainability,journal,crossref:1968,
-doi:10.3390/su13158261,Forestry Research In The Middle East: A Bibliometric Analysis,journal-article,2021,15,13,,Sustainability,journal,crossref:1968,
-doi:10.1016/j.envres.2021.111087,Soil Erosion Modelling: A Bibliometric Analysis,journal-article,2021,,197,,Environmental Research,journal,crossref:78,
-doi:10.3390/infrastructures6020021,Dynamic Planning Of Construction Site For Linear Projects,journal-article,2021,2,6,,Infrastructures,journal,crossref:1968,
-doi:10.3846/jcem.2021.15260,Application Of Multiple Criteria Decision Making Methods In Construction: A Systematic Literature Review,journal-article,2021,6,27,,Journal Of Civil Engineering And Management,journal,crossref:2209,
-doi:10.1177/15533506211026411,A Bibliometric Analysis Of Overall And Top 100 Most-Cited Studies About Robotic Surgery Versus Open Surgery,journal-article,2021,,,,Surgical Innovation,journal,crossref:179,
-doi:10.1108/wjemsd-06-2020-0068,Twenty Years Of Green Innovation Research: Trends And Way Forward,journal-article,2021,ahead-of-print,ahead-of-print,,"World Journal Of Entrepreneurship, Management And Sustainable Development",journal,crossref:140,
-doi:10.1177/10963480211011540,Hospitality And Tourism Scholarship In Africa: A Literature-Based Agenda For Future Research,journal-article,2021,,,,Journal Of Hospitality & Tourism Research,journal,crossref:179,
-doi:10.1007/s11270-021-05247-4,A Bibliometric Study On The Application Of Advanced Oxidation Processes For Produced Water Treatment,journal-article,2021,7,232,,"Water, Air, & Soil Pollution",journal,crossref:297,
-doi:10.1177/19322968211005500,Two Decades Of Research In Artificial Pancreas: Insights From A Bibliometric Analysis,journal-article,2021,2,16,,Journal Of Diabetes Science And Technology,journal,crossref:179,
-doi:10.3390/jmse9020218,Evolution Trend Research Of Global Ocean Power Generation Based On A 45-Year Scientometric Analysis,journal-article,2021,2,9,,Journal Of Marine Science And Engineering,journal,crossref:1968,
-doi:10.3390/jmse9030266,"Rise, Fall, And Recovery Of Blockchains In The Maritime Technology Space",journal-article,2021,3,9,,Journal Of Marine Science And Engineering,journal,crossref:1968,
-doi:10.1007/s11301-021-00214-z,Establishing A Typology For Productive Intelligence: A Systematic Literature Mapping,journal-article,2021,,,,Management Review Quarterly,journal,crossref:297,
-doi:10.1016/j.jhazmat.2020.125028,The Antineoplastic Drugs Cyclophosphamide And Cisplatin In The Aquatic Environment – Review,journal-article,2021,,412,,Journal Of Hazardous Materials,journal,crossref:78,
-doi:10.1016/j.jhazmat.2021.126361,Per And Poly-Fluoroalkyl Substances (Pfas) As A Contaminant Of Emerging Concern In Surface Water: A Transboundary Review Of Their Occurrences And Toxicity Effects,journal-article,2021,,419,,Journal Of Hazardous Materials,journal,crossref:78,
-doi:10.1111/cobi.13726,Joining Forces Toward Proactive Elephant And Rhinoceros Conservation,journal-article,2021,1,36,,Conservation Biology,journal,crossref:311,
-doi:10.1002/hfm.20889,A Systematic Review On The Impacts Of Covidâ€19 On Work: Contributions And A Path Forward From The Perspectives Of Ergonomics And Psychodynamics Of Work,journal-article,2021,4,31,,Human Factors And Ergonomics In Manufacturing & Service Industries,journal,crossref:311,
-doi:10.1007/s10668-021-01293-4,A Green Intensity Index To Better Assess The Multiple Functions Of Urban Vegetation With An Application To Paris Metropolitan Area,journal-article,2021,10,23,,"Environment, Development And Sustainability",journal,crossref:297,
-doi:10.1016/j.jhtm.2021.04.005,A Bibliometric Overview Of The Journal Of Hospitality And Tourism Management: Research Contributions And Influence,journal-article,2021,,47,,Journal Of Hospitality And Tourism Management,journal,crossref:78,
-doi:10.1080/00207543.2021.1919333,Big Data Analytics In Manufacturing: A Bibliometric Analysis Of Research In The Field Of Business Management,journal-article,2021,,,,International Journal Of Production Research,journal,crossref:301,
-doi:10.1590/1806-9649-2021v28e5171,A Bibliometric Study On The Use Of Games In The Production Engineering Area,journal-article,2021,3,28,,Gestão & Produção,journal,crossref:530,
-doi:10.3390/su13031136,Open Innovation For Sustainability Or Not: Literature Reviews Of Global Research Trends,journal-article,2021,3,13,,Sustainability,journal,crossref:1968,
-doi:10.4018/978-1-7998-5772-3.ch005,Knowledge Management In Higher Education Institutions,book-chapter,2021,,,0,,,,
-doi:10.1007/s12210-021-01003-2,"Astragalus (Astragalus Membranaceus Bunge): Botanical, Geographical, And Historical Aspects To Pharmaceutical Components And Beneficial Role",journal-article,2021,3,32,,Rendiconti Lincei. Scienze Fisiche E Naturali,journal,crossref:297,
-doi:10.1080/13504509.2021.1881651,Towards A Common Future: Revising The Evolution Of University-Based Sustainability Research Literature,journal-article,2021,6,28,,International Journal Of Sustainable Development & World Ecology,journal,crossref:301,
-doi:10.2147/cmar.s270099,The Top 100 Most Frequently Cited Publications Concerning Anti-Pd-1/Pd-L1 Therapy For Lung Cancer: A Bibliometric Analysis,journal-article,2021,,Volume 13,,Cancer Management And Research,journal,crossref:301,
-doi:10.3390/educsci11030115,A Scoping Review Of Organizational Responses To The Covid-19 Pandemic In Schools: A Complex Systems Perspective,journal-article,2021,3,11,,Education Sciences,journal,crossref:1968,
-doi:10.3390/educsci11070353,Two Decades Of Stem Education Research In Middle School: A Bibliometrics Analysis In Scopus Database (2000–2020),journal-article,2021,7,11,,Education Sciences,journal,crossref:1968,
-doi:10.3390/nu13061966,A Systematic Review Of The Dietary Choline Impact On Cognition From A Psychobiological Approach: Insights From Animal Studies,journal-article,2021,6,13,,Nutrients,journal,crossref:1968,
-doi:10.3390/proteomes9020029,Mining Proteome Research Reports: A Bird’S Eye View,journal-article,2021,2,9,,Proteomes,journal,crossref:1968,
-doi:10.1016/j.jenvman.2021.113382,Global Evolution Of Research On Green Energy And Environmental Technologies:A Bibliometric Study,journal-article,2021,,297,,Journal Of Environmental Management,journal,crossref:78,
-doi:10.1186/s12936-021-03698-y,Research Supporting Malaria Control And Elimination In China Over Four Decades: A Bibliometric Analysis Of Academic Articles Published In Chinese From 1980 To 2019,journal-article,2021,1,20,,Malaria Journal,journal,crossref:297,
-doi:10.3390/en14133852,Control Strategies For Daylight And Artificial Lighting In Office Buildings—A Bibliometrically Assisted Review,journal-article,2021,13,14,,Energies,journal,crossref:1968,
-doi:10.3390/en14133917,Which Building Services Are Considered To Have Impact On Climate Change?,journal-article,2021,13,14,,Energies,journal,crossref:1968,
-doi:10.1002/cjce.24089,Experimental Methods In Chemical Engineering: High Throughput Catalyst Testing — Htct,journal-article,2021,6,99,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1002/cjce.24127,Experimental Methods In Chemical Engineering: Density Functional Theory,journal-article,2021,,,,The Canadian Journal Of Chemical Engineering,journal,crossref:311,
-doi:10.1007/s10661-020-08793-2,An Overview Of Research On Natural Resources And Indigenous Communities: A Bibliometric Analysis Based On Scopus Database (1979–2020),journal-article,2021,2,193,,Environmental Monitoring And Assessment,journal,crossref:297,
-doi:10.1016/j.jclepro.2021.126622,Organizing A Sustainable Smart Urban Ecosystem: Perspectives And Insights From A Bibliometric Analysis And Literature Review,journal-article,2021,,297,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.jclepro.2021.127627,Open Eco-Innovation: A Bibliometric Review Of Emerging Research,journal-article,2021,,311,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1016/j.jclepro.2021.128009,"Two Decades Of Research On Waste Management In The Circular Economy: Insights From Bibliometric, Text Mining, And Content Analyses",journal-article,2021,,314,,Journal Of Cleaner Production,journal,crossref:78,
-doi:10.1007/s11356-021-13094-3,"Blockchain In Supply Chain Management: A Review, Bibliometric, And Network Analysis",journal-article,2021,,,,Environmental Science And Pollution Research,journal,crossref:297,
-doi:10.3390/ijfs9030035,Intellectual Structure And Evolution Of Accounting Conservatism Research: Past Trends And Future Research Suggestions,journal-article,2021,3,9,,International Journal Of Financial Studies,journal,crossref:1968,
-doi:10.1007/s13748-021-00252-4,Armlowa: Aspect Rating Analysis With Multi-Layer Approach,journal-article,2021,4,10,,Progress In Artificial Intelligence,journal,crossref:297,
-doi:10.1080/21645515.2021.1910000,Research Trends In Rabies Vaccine In The Last Three Decades: A Bibliometric Analysis Of Global Perspective,journal-article,2021,9,17,,Human Vaccines & Immunotherapeutics,journal,crossref:301,
-doi:10.1177/1069031x211004234,"Research Constituents, Intellectual Structure, And Collaboration Patterns In Journal Of International Marketing: An Analytical Retrospective",journal-article,2021,2,29,,Journal Of International Marketing,journal,crossref:179,
-doi:10.3390/polym13121957,Scientometric Analysis And Systematic Review Of Multi-Material Additive Manufacturing Of Polymers,journal-article,2021,12,13,,Polymers,journal,crossref:1968,
-doi:10.1007/978-3-030-58799-4_49,Digital Signature In The Xades Standard As A Rest Service,book-chapter,2020,,,1,Computational Science And Its Applications – Iccsa 2020 - Lecture Notes In Computer Science,book,crossref:297,
-doi:10.1177/1745691620927674,Tilting At Windmills: Why Attacks On Repression Are Misguided,journal-article,2020,2,16,,Perspectives On Psychological Science,journal,crossref:179,
-doi:10.1007/978-3-030-53036-5_30,The Use Of Artificial Intelligence For Clinical Coding Automation: A Bibliometric Analysis,book-chapter,2020,,,1,"Advances In Intelligent Systems And Computing - Distributed Computing And Artificial Intelligence, 17Th International Conference",book,crossref:297,
-doi:10.1177/0037549720944483,Simulation-Based Optimization Methods Applied In Hospital Emergency Departments: A Systematic Review,journal-article,2020,10,96,,Simulation,journal,crossref:179,
-doi:10.1017/sjp.2020.40,Meta-Analysis And Scientific Mapping Of Well-Being And Job Performance,journal-article,2020,,23,,The Spanish Journal Of Psychology,journal,crossref:56,
-doi:10.1007/s40200-020-00606-0,Contribution Of Iran In Covid-19 Studies: A Bibliometrics Analysis,journal-article,2020,2,19,,Journal Of Diabetes & Metabolic Disorders,journal,crossref:297,
-doi:10.1007/s00521-020-05395-4,Automatic Clustering Algorithms: A Systematic Review And Bibliometric Analysis Of Relevant Literature,journal-article,2020,11,33,,Neural Computing And Applications,journal,crossref:297,
-doi:10.1007/s11695-020-05058-2,Latin American Research On Bariatric Surgery: A Bibliometric Study,journal-article,2020,4,31,,Obesity Surgery,journal,crossref:297,
-doi:10.1002/sres.2731,"Drilling Down The Viable System Theories In Business, Management And Accounting: A Bibliometric Review",journal-article,2020,6,38,,Systems Research And Behavioral Science,journal,crossref:311,
-doi:10.1108/jic-02-2020-0054,Understanding The Impact Of Intellectual Capital On Entrepreneurship: A Literature Review,journal-article,2020,3,22,,Journal Of Intellectual Capital,journal,crossref:140,
-doi:10.1108/jic-05-2020-0142,The Extent And Impact Of Intellectual Capital Research: A Two Decade Analysis,journal-article,2020,2,23,,Journal Of Intellectual Capital,journal,crossref:140,
-doi:10.3897/neotropical.15.e52905,Main Trends And Gaps In Studies For Bird Conservation In The Pantanal Wetland,journal-article,2020,4,15,,Neotropical Biology And Conservation,journal,crossref:2258,
-doi:10.3390/admsci10030057,Exploiting Inter-Organizational Relationships In Health Care: A Bibliometric Analysis And Literature Review,journal-article,2020,3,10,,Administrative Sciences,journal,crossref:1968,
-doi:10.3390/admsci10030069,Performance Analysis And Science Mapping Of Institutional Entrepreneurship Research,journal-article,2020,3,10,,Administrative Sciences,journal,crossref:1968,
-doi:10.1186/s12888-020-02825-4,"Mapping The Literature On Parents With Mental Illness, Across Psychiatric Sub-Disciplines: A Bibliometric Review",journal-article,2020,1,20,,Bmc Psychiatry,journal,crossref:297,
-doi:10.1080/00472778.2020.1776578,Evolution Of The Entrepreneurship And Innovation Research In Ibero-America Between 1986 And 2015,journal-article,2020,,,,Journal Of Small Business Management,journal,crossref:301,
-doi:10.1007/s11301-020-00196-4,Intellectual Structure Of Management Innovation: Bibliometric Analysis,journal-article,2020,3,71,,Management Review Quarterly,journal,crossref:297,
-doi:10.1080/08989621.2020.1836620,A Bibliometric Analysis Of Academic Misconduct Research In Higher Education: Current Status And Future Research Opportunities,journal-article,2020,6,28,,Accountability In Research,journal,crossref:301,
diff --git a/relationalData_Manager.py b/relationalData_Manager.py
index 58d0f6c..0b6d141 100644
--- a/relationalData_Manager.py
+++ b/relationalData_Manager.py
@@ -306,38 +306,3 @@ def getVenCitationCount(self):
result = cur.fetchall()
qrdb.commit()
return pd.DataFrame(data=result,columns=["doi","cited_doi","venue_name"])
-
-
-# ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
-
-
-# TEST AREA
-rel_path = "relational.db"
-rel_dp = RelationalDataProcessor()
-rel_dp.setDbPath(rel_path)
-rel_dp.uploadData("testData/new_relational_publications.csv")
-rel_dp.uploadData("testData/new_relational_other_data.json")
-
-# Checking the superclass is correct or not
-# print(rel_dp.__bases__)
-
-rel_qp = RelationalQueryProcessor()
-rel_qp.setDbPath(rel_path)
-
-""" q1 = rel_qp.getPublicationsPublishedInYear(2020)
-q2 = rel_qp.getPublicationsByAuthorId("0000-0003-0530-4305")
-q3 = rel_qp.getMostCitedPublication()
-q4 = rel_qp.getMostCitedVenue()
-q5 = rel_qp.getVenuesByPublisherId("crossref:301")
-q6 = rel_qp.getPublicationInVenue("issn:2641-3337")
-q7 = rel_qp.getJournalArticlesInIssue("10","126","issn:0138-9130")
-q8 = rel_qp.getJournalArticlesInVolume("126","issn:0138-9130")
-q9 = rel_qp.getJournalArticlesInJournal("issn:0138-9130")
-q10 = rel_qp.getProceedingsByEvent("arz")
-q11 = rel_qp.getPublicationAuthors("doi:10.1007/s11192-021-04097-5")
-q12 = rel_qp.getPublicationsByAuthorName("Per")
-q13 = rel_qp.getDistinctPublishersOfPublications(["doi:10.1007/978-3-030-61244-3_16","doi:10.1371/journal.pbio.3000385","doi:10.1007/s11192-018-2796-5"])
- """
-
-# Checking the superclass is correct or not
-# print(rel_qp.__bases__) """
\ No newline at end of file
diff --git a/testData/myupload.rar b/testData/myupload.rar
deleted file mode 100644
index e432653..0000000
Binary files a/testData/myupload.rar and /dev/null differ