Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • chetouae/open-research-data-monitor-back
  • mlarrieu/open-research-data-monitor-back
2 results
Show changes
Commits on Source (86)
Showing
with 12695 additions and 4655 deletions
...@@ -25,7 +25,7 @@ actualisation_dois: ...@@ -25,7 +25,7 @@ actualisation_dois:
- git config user.name "${GITLAB_USER_NAME}" - git config user.name "${GITLAB_USER_NAME}"
- git config user.email "${GITLAB_USER_EMAIL}" - git config user.email "${GITLAB_USER_EMAIL}"
- git remote set-url --push origin "https://PUSH_TOKEN:${ACCESS_TOKEN}@gricad-gitlab.univ-grenoble-alpes.fr/${CI_PROJECT_PATH}.git" - git remote set-url --push origin "https://PUSH_TOKEN:${ACCESS_TOKEN}@gricad-gitlab.univ-grenoble-alpes.fr/${CI_PROJECT_PATH}.git"
- git add -f dois-uga.csv 2-produce-graph/hist-evol-datasets-per-repo.png 2-produce-graph/hist-quantity-year-type.png 2-produce-graph/pie--datacite-client.png 2-produce-graph/pie--datacite-type.png 2-produce-graph/hist-last-datasets-by-client.png 1-enrich-with-datacite/all_datacite_clients_for_uga.csv 1-enrich-with-datacite/nb-dois.txt - git add -f dois-uga.csv dois-uga--last-500.csv 2-produce-graph/hist-evol-datasets-per-repo.png 2-produce-graph/hist-quantity-year-type.png 2-produce-graph/pie--datacite-client.png 2-produce-graph/pie--datacite-type.png 2-produce-graph/hist-last-datasets-by-client.png 1-enrich-with-datacite/all_datacite_clients_for_uga.csv 1-enrich-with-datacite/nb-dois.txt
- git commit -m "Execution du pipeline. Actualisation des dois et des graphes." - git commit -m "Execution du pipeline. Actualisation des dois et des graphes."
- git push origin HEAD:${CI_COMMIT_REF_NAME} - git push origin HEAD:${CI_COMMIT_REF_NAME}
...@@ -49,6 +49,7 @@ actualisation_dois: ...@@ -49,6 +49,7 @@ actualisation_dois:
# ajout des fichiers du dépôt qui ont été modifiés, au cas où un problème serait survenu dans "after_script" # ajout des fichiers du dépôt qui ont été modifiés, au cas où un problème serait survenu dans "after_script"
paths: paths:
- dois-uga.csv - dois-uga.csv
- dois-uga--last-500.csv
- 2-produce-graph/hist-evol-datasets-per-repo.png - 2-produce-graph/hist-evol-datasets-per-repo.png
- 2-produce-graph/hist-quantity-year-type.png - 2-produce-graph/hist-quantity-year-type.png
- 2-produce-graph/pie--datacite-client.png - 2-produce-graph/pie--datacite-client.png
......
...@@ -17,4 +17,18 @@ mbeligne ...@@ -17,4 +17,18 @@ mbeligne
acarbonnelle acarbonnelle
annegf annegf
tleduc tleduc
abey abey
\ No newline at end of file mbarletta
lmaritaud
jbeaureder
kboczon
llacoste
fcorsi
ecarlier
lvanbogaert
nrousselot
jlevy1
mflecheux
pbai
ymonnier
slecuyerchardevel
\ No newline at end of file
...@@ -22,15 +22,15 @@ urls = [ ...@@ -22,15 +22,15 @@ urls = [
'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=producerAffiliation%3AUGA', 'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=producerAffiliation%3AUGA',
'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=contributorAffiliation%3AUGA', 'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=contributorAffiliation%3AUGA',
'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=datasetContactAffiliation%3A(Grenoble AND Alpes)', 'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=datasetContactAffiliation%3A(Grenoble AND Alpes)',
'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=authorAffiliation%3AGrenoble(Grenoble AND Alpes)', 'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=authorAffiliation%3A(Grenoble AND Alpes)',
'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=producerAffiliation%3AGrenoble(Grenoble AND Alpes)', 'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=producerAffiliation%3A(Grenoble AND Alpes)',
'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=contributorAffiliation%3AGrenoble(Grenoble AND Alpes)' 'https://entrepot.recherche.data.gouv.fr/api/search?q=*&fq=contributorAffiliation%3A(Grenoble AND Alpes)'
# possiblilité d'ajouter d'autres requêtes # possiblilité d'ajouter d'autres requêtes
] ]
# on définit une fonction pour la lancer la requete avec chaque url pour les différentes affiliations # on définit une fonction pour la lancer la requete avec chaque url pour les différentes affiliations
def get_results(url): def get_results(url):
req = requests.get(url) req = requests.get(url+"&type=dataset")
#print(req.url) #print(req.url)
results = [req.json()] results = [req.json()]
...@@ -39,7 +39,7 @@ def get_results(url): ...@@ -39,7 +39,7 @@ def get_results(url):
count = nb_res count = nb_res
page = 1 page = 1
while(nb_res > 0): while(nb_res > 0):
newurl = url+"&start="+str(count) newurl = url+"&type=dataset"+"&start="+str(count)
req = requests.get(newurl) req = requests.get(newurl)
results.append(req.json()) results.append(req.json())
nb_res = results[page]["data"]["count_in_response"] nb_res = results[page]["data"]["count_in_response"]
...@@ -59,7 +59,7 @@ def get_dois(results): ...@@ -59,7 +59,7 @@ def get_dois(results):
nb_dois += len(num_dois) nb_dois += len(num_dois)
for item in num_dois : for item in num_dois :
dois.append(item["global_id"]) dois.append(item.get("global_id"))
print("\tnb DOIs\t\t" + str(nb_dois)) print("\tnb DOIs\t\t" + str(nb_dois))
return dois return dois
......
client,count,name,year,url client,count,name,year,url
cern.zenodo,730,Zenodo,2013,https://zenodo.org/ cern.zenodo,885,Zenodo,2013,https://zenodo.org/
inist.sshade,471,Solid Spectroscopy Hosting Architecture of Databases and Expertise,2019,https://www.sshade.eu/ inist.sshade,522,Solid Spectroscopy Hosting Architecture of Databases and Expertise,2019,https://www.sshade.eu/
inist.osug,238,Observatoire des Sciences de l'Univers de Grenoble,2014,http://doi.osug.fr figshare.ars,380,figshare Academic Research System,2016,http://figshare.com/
figshare.ars,232,figshare Academic Research System,2016,http://figshare.com/ inist.osug,275,Observatoire des Sciences de l'Univers de Grenoble,2014,http://doi.osug.fr
dryad.dryad,156,DRYAD,2018,https://datadryad.org dryad.dryad,168,DRYAD,2018,https://datadryad.org
inist.resif,79,Réseau sismologique et géodésique français,2014,https://www.resif.fr/ inist.resif,99,Réseau sismologique et géodésique français,2014,https://www.resif.fr/
inist.persyval,55,PERSYVAL-Lab : Pervasive Systems and Algorithms Lab,2016, rdg.prod,81,Recherche Data Gouv France,2022,https://recherche.data.gouv.fr/en
rdg.prod,43,Recherche Data Gouv France,2022,https://recherche.data.gouv.fr/en inist.humanum,75,NAKALA,2020,https://nakala.fr
inist.persyval,64,PERSYVAL-Lab : Pervasive Systems and Algorithms Lab,2016,
fmsh.prod,28,Fondation Maison des sciences de l'homme,2023, fmsh.prod,28,Fondation Maison des sciences de l'homme,2023,
inist.humanum,28,Huma-Num,2020,https://nakala.fr inist.ccj,22,Centre Camille Jullian – UMR 7299,2020,
figshare.sage,14,figshare SAGE Publications,2018, pangaea.repository,18,PANGAEA,2020,https://www.pangaea.de/
mcdy.dohrmi,12,dggv-e-publications,2020,https://www.dggv.de/publikationen/dggv-e-publikationen.html mcdy.dohrmi,14,dggv-e-publications,2020,https://www.dggv.de/publikationen/dggv-e-publikationen.html
tib.gfzbib,3,GFZpublic,2011,https://gfzpublic.gfz-potsdam.de inist.cirm,7,Centre International de Rencontres Mathématiques,2017,
figshare.sage,6,figshare SAGE Publications,2018,
iris.iris,5,NSF Seismological Facility for the Advancement of Geoscience (SAGE),2018,http://www.iris.edu/hq/
vqpf.dris,3,Direction des ressources et de l'information scientifique,2021, vqpf.dris,3,Direction des ressources et de l'information scientifique,2021,
tib.repod,3,RepOD,2015, tib.gfzbib,3,GFZpublic,2011,https://gfzpublic.gfz-potsdam.de
iris.iris,3,Incorporated Research Institutions for Seismology,2018,http://www.iris.edu/hq/ tib.repod,3,RepOD,2015,https://repod.icm.edu.pl/
ugraz.unipub,2,unipub,2019,http://unipub.uni-graz.at cnic.sciencedb,3,ScienceDB,2022,https://www.scidb.cn/en
inist.eost,2,Ecole et Observatoire des Sciences de la Terre,2017,https://eost.unistra.fr/en/
tib.gfz,2,GFZ Data Services,2011,https://dataservices.gfz-potsdam.de/portal/
bl.mendeley,2,Mendeley Data,2015,https://data.mendeley.com/
bl.nerc,2,NERC Environmental Data Service,2011,https://eds.ukri.org bl.nerc,2,NERC Environmental Data Service,2011,https://eds.ukri.org
crui.ingv,1,Istituto Nazionale di Geofisica e Vulcanologia (INGV),2013,http://data.ingv.it/ tug.openlib,2,TU Graz OPEN Library,2020,https://openlib.tugraz.at/
estdoi.ttu,1,TalTech,2019,https://digikogu.taltech.ee crui.ingv,2,Istituto Nazionale di Geofisica e Vulcanologia (INGV),2013,http://data.ingv.it/
ardcx.nci,1,National Computational Infrastructure,2020, ugraz.unipub,2,unipub,2019,http://unipub.uni-graz.at
umass.uma,1,University of Massachusetts (UMass) Amherst,2018,https://scholarworks.umass.edu/ ethz.sed,2,"Swiss Seismological Service, national earthquake monitoring and hazard center",2013,http://www.seismo.ethz.ch
bl.mendeley,1,Mendeley Data,2015,https://data.mendeley.com/
inist.eost,1,Ecole et Observatoire des Sciences de la Terre,2017,https://eost.unistra.fr/en/
bl.iita,1,International Institute of Tropical Agriculture datasets,2017,http://data.iita.org/
inist.opgc,1,Observatoire de Physique du Globe de Clermont-Ferrand,2017, inist.opgc,1,Observatoire de Physique du Globe de Clermont-Ferrand,2017,
ethz.da-rd,1,ETHZ Data Archive - Research Data,2013,http://data-archive.ethz.ch
ethz.zora,1,"Universität Zürich, ZORA",2013,https://www.zora.uzh.ch/
estdoi.ttu,1,TalTech,2019,https://digikogu.taltech.ee
repod.dbuw,1,University of Warsaw Research Data Repository,2023,https://danebadawcze.uw.edu.pl/
inist.ird,1,IRD,2016,
inist.omp,1,Observatoire Midi-Pyrénées,2011, inist.omp,1,Observatoire Midi-Pyrénées,2011,
tug.openlib,1,TU Graz OPEN Library,2020,https://openlib.tugraz.at/ umass.uma,1,University of Massachusetts (UMass) Amherst,2018,https://scholarworks.umass.edu/
tib.gfz,1,GFZ Data Services,2011,https://dataservices.gfz-potsdam.de/portal/
edi.edi,1,Environmental Data Initiative,2017,https://portal.edirepository.org/nis/home.jsp edi.edi,1,Environmental Data Initiative,2017,https://portal.edirepository.org/nis/home.jsp
bl.iita,1,International Institute of Tropical Agriculture datasets,2017,http://data.iita.org/
ardcx.nci,1,National Computational Infrastructure,2020,
ihumi.pub,1,IHU Méditerranée Infection,2020, ihumi.pub,1,IHU Méditerranée Infection,2020,
ethz.zora,1,"Universität Zürich, ZORA",2013,https://www.zora.uzh.ch/ inist.inrap,1,Institut national de recherches archéologiques préventives,2019,
inist.ird,1,IRD,2016, tib.mpdl,1,Max Planck Digital Library,2015,
tudublin.arrow,1,ARROW@TU Dublin,2020,https://arrow.dit.ie/
...@@ -56,6 +56,25 @@ for doi in dois : #[:300] ...@@ -56,6 +56,25 @@ for doi in dois : #[:300]
## if new datasets has been founded ## if new datasets has been founded
if temp_rows : if temp_rows :
df_fresh = pd.DataFrame(temp_rows) df_fresh = pd.DataFrame(temp_rows)
dois_added = list(df_old["doi"])
to_del = []
for i in range(0, len(df_fresh)):
result = my_functions.get_origin_version(df_fresh.loc[i, "doi"])
if result[0] not in dois_added:
dois_added.append(result[0])
df_fresh.loc[i, "doi"] = result[0]
if str(result[1]) != "[]": df_fresh.loc[i, "traveled_dois"] = str(result[1])
else: df_fresh.loc[i, "traveled_dois"] = ""
if str(result[2]) != "[]": df_fresh.loc[i, "all_relations"] = str(result[2])
else: df_fresh.loc[i, "all_relations"] = ""
else:
to_del.append(i)
df_fresh.drop(to_del, inplace=True)
print("Nombre de dois supprimés : " + str(len(to_del)))
print("Nb dois a garder : " + str(len(dois_added)))
df_concat = pd.concat([df_old, df_fresh], ignore_index=True) df_concat = pd.concat([df_old, df_fresh], ignore_index=True)
## remove not wanted datacite type & clients ## remove not wanted datacite type & clients
...@@ -68,10 +87,18 @@ if temp_rows : ...@@ -68,10 +87,18 @@ if temp_rows :
df_out.to_csv("../dois-uga.csv", index = False) df_out.to_csv("../dois-uga.csv", index = False)
print(f"\n\nnb of doi exported \t{len(df_out)}") print(f"\n\nnb of doi exported \t{len(df_out)}")
# write the number of dois found in a file to display on the website # write the number of dois found in a file to display on the website
with open("nb-dois.txt", 'w') as outf : with open("nb-dois.txt", 'w') as outf :
outf.write(str(len(df_out))) outf.write(str(len(df_out)))
## output last 500 DOIs to make it easier to open in web tools
df_last_dois = df_out.sort_values(by = "created", ascending = False, inplace = False)[:500]
df_last_dois["created"] = df_last_dois["created"].str[:10]
df_last_dois[["doi", "client", "resourceTypeGeneral", "created", "publisher", "rights", "sizes"]].to_csv("../dois-uga--last-500.csv", index = False)
## for the website : output another csv with datacite client and number of datasets ## for the website : output another csv with datacite client and number of datasets
df_client_raw = df_out["client"].value_counts().to_frame() df_client_raw = df_out["client"].value_counts().to_frame()
......
2117 2692
\ No newline at end of file \ No newline at end of file
import requests, json import requests, json
def get_origin_version(doi, count=1): # Fonction pour éviter la redondance des données associées à des DOIs différents mais pointant vers les mêmes fichiers :
# Dans Zenodo par exemple, il y a un DOI associé à chaque version d'un dépôt et il faut remonter au DOI "chapeau"
# Si le DOI "chapeau" obtenu ou un "is_identical_to" fait référence à un DOI déjà existant dans le csv, il doit être ignoré.
def get_origin_version(doi, history=[], first=True):
if first: history=[] # ligne ajoutée pour éviter certains soucis de cache où history n'est pas vide au premier appel de la fonction
req = requests.get( f"https://api.datacite.org/dois/{doi}" ) req = requests.get( f"https://api.datacite.org/dois/{doi}" )
res = req.json() res = req.json()
final = []
result = (doi, history, final) # doi est le DOI qui sera ajouté au csv, history retrace les dois et les relations ayant permis les recherches et final enregistre les relations du doi final ajouté au csv
try: try:
origins = res["data"]["attributes"]["relatedIdentifiers"] related = res["data"]["attributes"]["relatedIdentifiers"] # test si des relations existent pour le doi courant
except: except:
return doi, count pass # si pas de relation, on renvoie le doi courant
else: else:
if origins == []: return doi, count ignore = False # ignore correspond à un doi ayant une version "chapeau" qui doit être trouvée. Le doi courant doit donc être ignoré
for i in origins: duplicate = False # duplicate correspond à un doi étant identique à un autre
if i["relationType"] != "IsVersionOf": for i in related:
return doi, count final.append(i.get("relationType"))
else: if i.get("relationType") == "IsVersionOf" and i.get("relatedIdentifierType") == "DOI":
return get_origin_version(i["relatedIdentifier"], count+1) ignore = True
elem_to_save_i = i.get("relatedIdentifier")
history.append([i.get("relationType"), i.get("relatedIdentifier")])
if i.get("relationType") == "IsIdenticalTo" and i.get("relatedIdentifierType") == "DOI":
duplicate = True
elem_to_save_d = i.get("relatedIdentifier") # pas de symétrie pour les is_identical_to, donc il suffit de prendre l'autre (pas le doi courant) pour éviter les doublons
history.append([i.get("relationType"), i.get("relatedIdentifier")])
if duplicate and not(ignore):
result = (elem_to_save_d, history, final) # si identique mais pas de version chapeau on peut s'arrêter
if ignore: result = get_origin_version(elem_to_save_i, history, False) # si version chapeau, on avance sans regarder les identiques
return result
def get_md_from_datacite( doi ) : def get_md_from_datacite( doi ) :
""" """
......
2-produce-graph/hist-evol-datasets-per-repo.png

74.5 KiB | W: 0px | H: 0px

2-produce-graph/hist-evol-datasets-per-repo.png

72.4 KiB | W: 0px | H: 0px

2-produce-graph/hist-evol-datasets-per-repo.png
2-produce-graph/hist-evol-datasets-per-repo.png
2-produce-graph/hist-evol-datasets-per-repo.png
2-produce-graph/hist-evol-datasets-per-repo.png
  • 2-up
  • Swipe
  • Onion skin
2-produce-graph/hist-last-datasets-by-client.png

48.5 KiB | W: 0px | H: 0px

2-produce-graph/hist-last-datasets-by-client.png

57.2 KiB | W: 0px | H: 0px

2-produce-graph/hist-last-datasets-by-client.png
2-produce-graph/hist-last-datasets-by-client.png
2-produce-graph/hist-last-datasets-by-client.png
2-produce-graph/hist-last-datasets-by-client.png
  • 2-up
  • Swipe
  • Onion skin
2-produce-graph/hist-quantity-year-type.png

54.8 KiB | W: 0px | H: 0px

2-produce-graph/hist-quantity-year-type.png

61.8 KiB | W: 0px | H: 0px

2-produce-graph/hist-quantity-year-type.png
2-produce-graph/hist-quantity-year-type.png
2-produce-graph/hist-quantity-year-type.png
2-produce-graph/hist-quantity-year-type.png
  • 2-up
  • Swipe
  • Onion skin
2-produce-graph/pie--datacite-client.png

62 KiB | W: 0px | H: 0px

2-produce-graph/pie--datacite-client.png

65.8 KiB | W: 0px | H: 0px

2-produce-graph/pie--datacite-client.png
2-produce-graph/pie--datacite-client.png
2-produce-graph/pie--datacite-client.png
2-produce-graph/pie--datacite-client.png
  • 2-up
  • Swipe
  • Onion skin
2-produce-graph/pie--datacite-type.png

55.3 KiB | W: 0px | H: 0px

2-produce-graph/pie--datacite-type.png

64.9 KiB | W: 0px | H: 0px

2-produce-graph/pie--datacite-type.png
2-produce-graph/pie--datacite-type.png
2-produce-graph/pie--datacite-type.png
2-produce-graph/pie--datacite-type.png
  • 2-up
  • Swipe
  • Onion skin
# Codes for the UGA Open research data monitor # Scripts & codes for the UGA Open research data monitor
View contextualized results on the website : [mlarrieu.gricad-pages.univ-grenoble-alpes.fr/open-research-data-monitor](https://mlarrieu.gricad-pages.univ-grenoble-alpes.fr/open-research-data-monitor) See contextualized results on the website : [mlarrieu.gricad-pages.univ-grenoble-alpes.fr/open-research-data-monitor](https://mlarrieu.gricad-pages.univ-grenoble-alpes.fr/open-research-data-monitor)
<br /> <br />
<br /> <br />
...@@ -11,8 +11,6 @@ View contextualized results on the website : [mlarrieu.gricad-pages.univ-grenobl ...@@ -11,8 +11,6 @@ View contextualized results on the website : [mlarrieu.gricad-pages.univ-grenobl
- Recherche en format texte de `UGA` et `grenoble AND alpes` dans les champs suivants : `author`, `contributor`, `datasetContactAffiliation`, `producerAffiliation` - Recherche en format texte de `UGA` et `grenoble AND alpes` dans les champs suivants : `author`, `contributor`, `datasetContactAffiliation`, `producerAffiliation`
### DataCite ### DataCite
- recherche avec les clients Datacite de l'UGA : `inist.osug`, `client.uid:inist.sshade`, `client.uid:inist.resif`, `client_id:inist.persyval` - recherche avec les clients Datacite de l'UGA : `inist.osug`, `client.uid:inist.sshade`, `client.uid:inist.resif`, `client_id:inist.persyval`
...@@ -42,18 +40,35 @@ View contextualized results on the website : [mlarrieu.gricad-pages.univ-grenobl ...@@ -42,18 +40,35 @@ View contextualized results on the website : [mlarrieu.gricad-pages.univ-grenobl
- récupérer la liste de publications, filter sur celles où des jeux de données ont été produits - récupérer la liste de publications, filter sur celles où des jeux de données ont été produits
- passer par HAL pour retrouver les DOI de ces jeux de données (champs `researchData_s`) - passer par HAL pour retrouver les DOI de ces jeux de données (champs `researchData_s`)
## Filters
- we remove the following datacite types `["Book", "ConferencePaper", "ConferenceProceeding", "JournalArticle", "BookChapter", "Service", "Preprint"]`
- we remove the following datacite clients `["rg.rg", "inist.epure"]`
## Comment sont comptées les données de la recherche ?
Le monitor prend en compte les données dotées d'un DOI de l'agence DataCite, c'est-à-dire qu'elles sont Findable. Un dépôt de données comprend des métadonnées conformes au schéma de données DataCite et un ou plusieurs fichiers pouvant être organisés en arborescence. Ce sont les dépôts qui sont comptés et non les fichiers intégrés aux dépôts : un DOI compte donc pour une donnée de recherche.
Le schéma de Datacite permet de déclarer des relations entre DOI, ce que nous utilisons pour gérer les versions ou les doublons de données.
Afin d'éviter de compter deux pour un même dépôt, ou bien pour un dépôt mis à jour, le monitor est doté d'une fonction qui navigue entre les DOIs dont la relation est de type `isVersionOf` ou `isIdenticalTo`. Dans le premier cas, la fonction "remonte" les versions jusqu'à la version parente, c'est-à-dire un DOI stable qui redirige vers la version la plus récente.
Dans le deuxième cas, la fonction garde simplement la version signalée comme étant identique. Cette relation n'étant pas symétrique, le DOI conservé n'aura pas de relation "isIdenticalTo" et la redondance est évitée.
<br /> <br />
<br /> <br />
## Filters
- we removethe following datacite types `["Book", "ConferencePaper", "ConferenceProceeding", "JournalArticle", "BookChapter", "Service", "Preprint"]`
- we remove the following datacite clients `["rg.rg", "inist.epure"]`
## Data schema
Les champs du tableau produit reprennent ceux du schéma de données de DataCite (cf. https://datacite-metadata-schema.readthedocs.io/en/4.5/), auquel deux champs sont ajoutés :
- `all_relation`
toutes les relations attachées au DOI identifié.
- `traveled_dois`
liste des DOIs parcourus par le script pour obtenir le DOI de concept
<br /> <br />
<br /> <br />
## Credits ## Credits
* Élias Chetouane: collecting data, program automation * Élias Chetouane: collecting data, program automation
......
doi,client,resourceTypeGeneral,created,publisher,rights,sizes
10.14470/3v875927,tib.gfz,Dataset,2025-03-14,GFZ Data Services,"embargoed access,Creative Commons Attribution 4.0 International",['495GB']
10.5281/zenodo.15023210,cern.zenodo,Dataset,2025-03-14,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14876809,cern.zenodo,Dataset,2025-03-14,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.15016412,cern.zenodo,Software,2025-03-13,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.15016334,cern.zenodo,Software,2025-03-13,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.15013109,cern.zenodo,Other,2025-03-12,Zenodo,,
10.26302/sshade/experiment_lb_20250307_001,inist.sshade,Dataset,2025-03-11,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['4 spectra']
10.5281/zenodo.14833853,cern.zenodo,Dataset,2025-03-11,Zenodo,Creative Commons Attribution 4.0 International,
10.15778/resif.2l2018,inist.resif,Dataset,2025-03-10,RESIF - Réseau Sismologique et géodésique Français,"Open Access,Creative Commons Attribution 4.0 International","['96 stations, 555Go (miniseed format)']"
10.15778/resif.6j2018,inist.resif,Dataset,2025-03-10,RESIF - Réseau Sismologique et géodésique Français,"Open Access,Creative Commons Attribution 4.0 International","['341 stations, 1723Go (miniseed format)']"
10.21427/3yhz-9j83,tudublin.arrow,Other,2025-03-10,Technological University Dublin,,
10.15778/resif.z82016,inist.resif,Dataset,2025-03-07,RESIF - Réseau Sismologique et géodésique Français,,"['10 stations, 10Go (miniseed format)']"
10.15778/resif.9m2022,inist.resif,Dataset,2025-03-07,RESIF - Réseau Sismologique et géodésique Français,"Open Access,Creative Commons Attribution 4.0 International","['48 stations, 138Go (miniseed format)']"
10.24350/cirm.v.20308503,inist.cirm,Audiovisual,2025-03-07,CIRM,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.18709/perscido.2025.03.ds417,inist.persyval,Dataset,2025-03-07,PerSCiDO,,['500 Mo']
10.26302/sshade/experiment_lb_20240821_001,inist.sshade,Dataset,2025-03-06,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['15 spectra']
10.26302/sshade/experiment_lb_20240904_001,inist.sshade,Dataset,2025-03-06,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['18 spectra']
10.34847/nkl.1f17wf88,inist.humanum,Text,2025-03-04,NAKALA - https://nakala.fr (Huma-Num - CNRS),Creative Commons Attribution Non Commercial Share Alike 4.0 International,['1768524 bytes']
10.5281/zenodo.14959913,cern.zenodo,Software,2025-03-03,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14929747,cern.zenodo,Software,2025-02-26,Zenodo,Apache License 2.0,
10.26302/sshade/experiment_bs_20130103_004,inist.sshade,Dataset,2025-02-25,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['5 spectra']
10.26302/sshade/experiment_bs_20130129_001,inist.sshade,Dataset,2025-02-25,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['6 spectra']
10.5061/dryad.w9ghx3g12,dryad.dryad,Dataset,2025-02-25,Dryad,Creative Commons Zero v1.0 Universal,['6712125 bytes']
10.5281/zenodo.14918002,cern.zenodo,Dataset,2025-02-24,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14917193,cern.zenodo,Software,2025-02-24,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14916232,cern.zenodo,Dataset,2025-02-24,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14901514,cern.zenodo,Dataset,2025-02-21,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_cn_20051102_001,inist.sshade,Dataset,2025-02-21,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['7 spectra']
10.5281/zenodo.14894695,cern.zenodo,Dataset,2025-02-19,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14639609,cern.zenodo,Dataset,2025-02-18,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14870477,cern.zenodo,InteractiveResource,2025-02-18,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_zed_20250131_01,inist.sshade,Dataset,2025-02-17,SSHADE/DAYSY (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['25 spectra']
10.26302/sshade/experiment_zed_20250127_01,inist.sshade,Dataset,2025-02-17,SSHADE/DAYSY (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['12 spectra']
10.26302/sshade/experiment_aa_20180509_001,inist.sshade,Dataset,2025-02-17,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['4 spectra']
10.5281/zenodo.14872215,cern.zenodo,Text,2025-02-17,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14872096,cern.zenodo,Text,2025-02-14,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14871992,cern.zenodo,Dataset,2025-02-14,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14866244,cern.zenodo,Dataset,2025-02-14,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_mk_20230604_001,inist.sshade,Dataset,2025-02-14,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['5 spectra']
10.26302/sshade/experiment_mk_20220405_001,inist.sshade,Dataset,2025-02-14,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['8 spectra']
10.34847/nkl.0795425x,inist.humanum,Dataset,2025-02-13,NAKALA - https://nakala.fr (Huma-Num - CNRS),Creative Commons Attribution Non Commercial No Derivatives 4.0 International,['1516717 bytes']
10.5281/zenodo.14866164,cern.zenodo,Software,2025-02-13,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14859639,cern.zenodo,Software,2025-02-12,Zenodo,Open Government Licence - Canada,
10.26302/sshade/experiment_gi_2022_0421_001,inist.sshade,Dataset,2025-02-12,SSHADE/Mirabelle (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.6084/m9.figshare.c.7668913,figshare.ars,Collection,2025-02-12,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.28396567,figshare.ars,Text,2025-02-12,figshare,Creative Commons Attribution 4.0 International,['492403 Bytes']
10.6084/m9.figshare.28396564,figshare.ars,Text,2025-02-12,figshare,Creative Commons Attribution 4.0 International,['625940 Bytes']
10.5281/zenodo.14848819,cern.zenodo,Dataset,2025-02-11,Zenodo,Creative Commons Attribution 4.0 International,
10.17632/zk4cjx8cpk,bl.mendeley,Dataset,2025-02-11,Mendeley Data,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14849381,cern.zenodo,Dataset,2025-02-11,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14824156,cern.zenodo,Dataset,2025-02-11,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14823936,cern.zenodo,Dataset,2025-02-11,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14824423,cern.zenodo,Dataset,2025-02-11,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14844185,cern.zenodo,Dataset,2025-02-10,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14833746,cern.zenodo,Dataset,2025-02-09,Zenodo,Creative Commons Attribution 4.0 International,
10.13127/sfit/hsfit-2024,crui.ingv,Collection,2025-02-08,"ArcGIS Online, Environmental Systems Research Institute (ESRI)","Open Access,Creative Commons Attribution 4.0 International","['5 earthquakes', '325 coseismic observations', '110 coseismic traces', '13 coseismic zones']"
10.5281/zenodo.14824026,cern.zenodo,Dataset,2025-02-06,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14808936,cern.zenodo,Dataset,2025-02-06,Zenodo,Creative Commons Attribution Share Alike 4.0 International,
10.5281/zenodo.14811394,cern.zenodo,Text,2025-02-05,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/nj15ir,rdg.prod,Dataset,2025-02-05,Recherche Data Gouv,,
10.5281/zenodo.14801189,cern.zenodo,Dataset,2025-02-04,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14800883,cern.zenodo,Software,2025-02-04,Zenodo,GNU General Public License v3.0 only,
10.26302/sshade/experiment_op_20060709_001,inist.sshade,Dataset,2025-01-31,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['1 spectrum']
10.5281/zenodo.14762346,cern.zenodo,Dataset,2025-01-30,Zenodo,Creative Commons Attribution 4.0 International,
10.3217/g02q8-b8531,tug.openlib,Text,2025-01-30,Graz University of Technology,,
10.6084/m9.figshare.c.7649617,figshare.ars,Collection,2025-01-30,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.28307725,figshare.ars,Text,2025-01-30,figshare,Creative Commons Attribution 4.0 International,['278182 Bytes']
10.5281/zenodo.14768220,cern.zenodo,Dataset,2025-01-29,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14754876,cern.zenodo,Text,2025-01-28,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_oa_20241004_001,inist.sshade,Dataset,2025-01-28,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['8 spectra']
10.17178/emaa_para-h3o-plus_rotation_76df9536,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_para-h2co_rotation_d6660421,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_para-d2o_rotation_9bafef1a,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_para-ch3nc_rotation_8826bc0d,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_para-ch3cn_rotation_9b09f4b0,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_para-c3h2_rotation_91f1794b,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ortho-h3o-plus_rotation_2031c86e,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ortho-h2co_rotation_fe91d2c4,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ortho-h2co_hyperfine_6f2fb42f,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ortho-d2o_rotation_ca298faa,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ortho-ch3nc_rotation_ffce225a,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ortho-ch3cn_rotation_f295392c,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ortho-c3h2_rotation_cd49c787,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_nh_hyperfine_9946dda8,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_nd_hyperfine_207bdee0,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_hn(13c)_rotation_633c9fef,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_hdo_rotation_970556ed,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_hcnh-plus_rotation_96da3ce2,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_hcnh-plus_hyperfine_b6c64b5a,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_hc(15n)_rotation_a05523a2,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_h2_rovibration_21dc48b2,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_h(13c)n_rotation_5d5db045,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_e-ch3oh_rotation_7f7bea3d,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_e-ch3(18o)h_rotation_19d8c1f0,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_e-(13c)h3oh_rotation_e36b64aa,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_dnc_rotation_0eccd706,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_dcn_rotation_2600b325,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_dcn_hyperfine_b334e710,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_d(13c)n_rotation_0a5e68c6,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ch_hyperfine_c8735926,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ch2nh_rotation-hot_ee89e18f,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_ch2nh_hyperfine-hot_b5b79323,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_c2h_hyperfine_ff7c7676,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_c2d_hyperfine_06a7f7c4,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_a-ch3oh_rotation_154b5af9,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_a-ch3(18o)h_rotation_657b3900,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.17178/emaa_a-(13c)h3oh_rotation_5f1338ad,inist.osug,Dataset,2025-01-27,"UGA, CNRS, CNRS-INSU, OSUG","Please acknowledge the use of EMAA Database by citing the original articles in which the data were published (BibTeX format available), and adding the following sentence in your publication:
This research has made use of spectroscopic and collisional data from the EMAA database (https://emaa.osug.fr). EMAA is supported by the Observatoire des Sciences de l'Univers de Grenoble (OSUG),Creative Commons Attribution 4.0 International,Data access and use are ruled by the EMAA data policy.",
10.26302/sshade/experiment_lb_20250114_001,inist.sshade,Dataset,2025-01-27,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['5 spectra']
10.34847/nkl.be3b2f21,inist.humanum,Dataset,2025-01-27,NAKALA - https://nakala.fr (Huma-Num - CNRS),Creative Commons Attribution Non Commercial 4.0 International,['1399078 bytes']
10.34847/nkl.cd4d36m5,inist.humanum,Text,2025-01-27,NAKALA - https://nakala.fr (Huma-Num - CNRS),Creative Commons Attribution Non Commercial 4.0 International,['153033064 bytes']
10.5281/zenodo.14502341,cern.zenodo,Dataset,2025-01-24,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14724211,cern.zenodo,Dataset,2025-01-24,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14624101,cern.zenodo,Dataset,2025-01-23,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14024478,cern.zenodo,Dataset,2025-01-23,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14726443,cern.zenodo,Dataset,2025-01-23,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14725490,cern.zenodo,Other,2025-01-23,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_op_20250122_001,inist.sshade,Dataset,2025-01-22,SSHADE/BYPASS (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['5 spectra']
10.5281/zenodo.14720001,cern.zenodo,Dataset,2025-01-22,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.12799096,cern.zenodo,Model,2025-01-22,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14659271,cern.zenodo,Dataset,2025-01-20,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14699203,cern.zenodo,Text,2025-01-20,Zenodo,Creative Commons Attribution 4.0 International,
10.48380/fg5k-st46,mcdy.dohrmi,Text,2025-01-18,Deutsche Geologische Gesellschaft - Geologische Vereinigung e.V. (DGGV),,
10.48380/h5qm-xt03,mcdy.dohrmi,Text,2025-01-18,Deutsche Geologische Gesellschaft - Geologische Vereinigung e.V. (DGGV),,
10.15778/resif.zn2021,inist.resif,Dataset,2025-01-17,RESIF - Réseau Sismologique et géodésique Français,"Open Access,Creative Commons Attribution 4.0 International","['99 stations, 874Go (miniseed format)']"
10.15778/resif.xh2018,inist.resif,Dataset,2025-01-17,RESIF - Réseau Sismologique et géodésique Français,,
10.34692/34fz-6q37,inist.inrap,Audiovisual,2025-01-17,Institut National de Recherches Archéologiques Préventives,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,['13:50']
10.5281/zenodo.14674742,cern.zenodo,Software,2025-01-17,Zenodo,GNU General Public License v3.0 or later,
10.5281/zenodo.14191006,cern.zenodo,PeerReview,2025-01-16,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.8382919,cern.zenodo,Dataset,2025-01-15,Zenodo,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.28208970,figshare.ars,Text,2025-01-15,figshare,Creative Commons Attribution 4.0 International,['34929 Bytes']
10.6084/m9.figshare.c.7626525,figshare.ars,Collection,2025-01-15,figshare,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14646459,cern.zenodo,Software,2025-01-14,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_zed_20241126_01,inist.sshade,Dataset,2025-01-10,SSHADE/DAYSY (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['17 spectra']
10.5281/zenodo.11395334,cern.zenodo,Dataset,2025-01-09,Zenodo,Creative Commons Attribution 4.0 International,
10.18709/perscido.2025.01.ds416,inist.persyval,Dataset,2025-01-09,PerSCiDO,,['10 Mo']
10.5281/zenodo.13354072,cern.zenodo,Dataset,2025-01-08,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14319567,cern.zenodo,Dataset,2025-01-07,Zenodo,,
10.5281/zenodo.14036011,cern.zenodo,Dataset,2024-12-31,Zenodo,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7602799,figshare.ars,Collection,2024-12-29,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.28104922,figshare.ars,Text,2024-12-29,figshare,Creative Commons Attribution 4.0 International,['4584520 Bytes']
10.6084/m9.figshare.28104919,figshare.ars,Dataset,2024-12-29,figshare,Creative Commons Attribution 4.0 International,['9431088 Bytes']
10.6084/m9.figshare.28104916,figshare.ars,Dataset,2024-12-29,figshare,Creative Commons Attribution 4.0 International,['5091 Bytes']
10.6084/m9.figshare.28104913,figshare.ars,Dataset,2024-12-29,figshare,Creative Commons Attribution 4.0 International,['15827 Bytes']
10.5281/zenodo.14562024,cern.zenodo,Model,2024-12-27,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/bandlist_raman_kalicinite,inist.sshade,Dataset,2024-12-27,SSHADE/BANDLIST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",
10.26302/sshade/bandlist_raman_nahcolite,inist.sshade,Dataset,2024-12-27,SSHADE/BANDLIST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",
10.26302/sshade/bandlist_raman_coalingite,inist.sshade,Dataset,2024-12-26,SSHADE/BANDLIST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",
10.26302/sshade/bandlist_raman_brugnatellite,inist.sshade,Dataset,2024-12-26,SSHADE/BANDLIST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",
10.26302/sshade/experiment_jb_20090211_001,inist.sshade,Dataset,2024-12-20,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['6 spectra']
10.26302/sshade/experiment_pg_20100623_001,inist.sshade,Dataset,2024-12-20,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['4 spectra']
10.5281/zenodo.14527715,cern.zenodo,Text,2024-12-19,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14527557,cern.zenodo,Dataset,2024-12-19,Zenodo,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.28058712,figshare.ars,Text,2024-12-19,figshare,Creative Commons Attribution 4.0 International,['1211266 Bytes']
10.6084/m9.figshare.c.7591311,figshare.ars,Collection,2024-12-19,figshare,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_pc_20060304_001,inist.sshade,Dataset,2024-12-18,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['6 spectra']
10.5281/zenodo.14508391,cern.zenodo,Software,2024-12-17,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14501398,cern.zenodo,Dataset,2024-12-16,Zenodo,Creative Commons Attribution 4.0 International,
10.34847/nkl.d1eab0qz,inist.humanum,Image,2024-12-16,NAKALA - https://nakala.fr (Huma-Num - CNRS),Creative Commons Attribution Non Commercial 4.0 International,['142396847 bytes']
10.5281/zenodo.14499308,cern.zenodo,Dataset,2024-12-16,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14167823,cern.zenodo,Other,2024-12-13,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14410833,cern.zenodo,Dataset,2024-12-12,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/exo0jy,rdg.prod,Dataset,2024-12-11,Recherche Data Gouv,,
10.1594/pangaea.971995,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['19211 data points']
10.1594/pangaea.971993,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['16415 data points']
10.1594/pangaea.971990,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['14951 data points']
10.1594/pangaea.971989,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['30792 data points']
10.1594/pangaea.971988,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['27433 data points']
10.1594/pangaea.971920,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['26808 data points']
10.1594/pangaea.971919,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['176 data points']
10.1594/pangaea.971918,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['210 data points']
10.1594/pangaea.971916,pangaea.repository,Dataset,2024-12-11,PANGAEA,Creative Commons Attribution 4.0 International,['188 data points']
10.5281/zenodo.14339958,cern.zenodo,Image,2024-12-09,Zenodo,Creative Commons Attribution 4.0 International,
10.17617/3.taxlee,tib.mpdl,Dataset,2024-12-09,Edmond,Creative Commons Zero v1.0 Universal,"['733811', '355292', '180981', '852218', '613950', '52746', '47841', '8400', '614618', '8456', '8512', '78752', '894', '923307', '8344', '512264', '8400', '275329', '8512', '8512', '200589', '83282']"
10.5061/dryad.280gb5mvx,dryad.dryad,Dataset,2024-12-09,Dryad,Creative Commons Zero v1.0 Universal,['12624044 bytes']
10.5281/zenodo.14280087,cern.zenodo,Dataset,2024-12-08,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14291987,cern.zenodo,Software,2024-12-07,Zenodo,MIT License,
10.6084/m9.figshare.27958021,figshare.ars,Text,2024-12-04,figshare,Creative Commons Attribution 4.0 International,['149756 Bytes']
10.6084/m9.figshare.c.7569397,figshare.ars,Collection,2024-12-04,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.27958018,figshare.ars,Text,2024-12-04,figshare,Creative Commons Attribution 4.0 International,['369386 Bytes']
10.6084/m9.figshare.c.7569352,figshare.ars,Collection,2024-12-04,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.27957940,figshare.ars,Text,2024-12-04,figshare,Creative Commons Attribution 4.0 International,['18680 Bytes']
10.34847/nkl.d4b27275,inist.humanum,Text,2024-12-03,NAKALA - https://nakala.fr (Huma-Num - CNRS),Etalab Open License 2.0,['115964 bytes']
10.34847/nkl.b4dd5610,inist.humanum,Text,2024-12-03,NAKALA - https://nakala.fr (Huma-Num - CNRS),Etalab Open License 2.0,['64187 bytes']
10.34847/nkl.1ff54w66,inist.humanum,Text,2024-12-03,NAKALA - https://nakala.fr (Huma-Num - CNRS),Etalab Open License 2.0,['92721 bytes']
10.34847/nkl.71a7sj7h,inist.humanum,Text,2024-12-03,NAKALA - https://nakala.fr (Huma-Num - CNRS),Etalab Open License 2.0,['46159 bytes']
10.5281/zenodo.14262713,cern.zenodo,Dataset,2024-12-03,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/ojbtse,rdg.prod,Dataset,2024-12-02,Recherche Data Gouv,,
10.34927/ccj.epi.401,inist.ccj,Collection,2024-11-29,Centre Camille Jullian,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.34927/ccj.epi.399,inist.ccj,Collection,2024-11-29,Centre Camille Jullian,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.5281/zenodo.14202764,cern.zenodo,Dataset,2024-11-28,Zenodo,Creative Commons Attribution 4.0 International,
10.34927/ccj.epi.807,inist.ccj,Collection,2024-11-28,Centre Camille Jullian,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.5061/dryad.rbnzs7hkc,dryad.dryad,Dataset,2024-11-28,Dryad,Creative Commons Zero v1.0 Universal,['4445350302 bytes']
10.34927/ccj.epi.1299,inist.ccj,Collection,2024-11-28,Centre Camille Jullian,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.34927/ccj.epi.1298,inist.ccj,Collection,2024-11-28,Centre Camille Jullian,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.34927/ccj.epi.1427,inist.ccj,Collection,2024-11-28,Centre Camille Jullian,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.5281/zenodo.14228280,cern.zenodo,ComputationalNotebook,2024-11-27,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.11145291,cern.zenodo,Software,2024-11-27,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/dihvsb,rdg.prod,Dataset,2024-11-26,Recherche Data Gouv,,
10.5281/zenodo.14219214,cern.zenodo,Text,2024-11-25,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_zed_20241125_01,inist.sshade,Dataset,2024-11-25,SSHADE/DAYSY (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['6 spectra']
10.1594/pangaea.967492,pangaea.repository,Dataset,2024-11-23,PANGAEA,Creative Commons Attribution 4.0 International,['1824 data points']
10.34927/ccj.epi.14,inist.ccj,Collection,2024-11-22,Centre Camille Jullian,Creative Commons Attribution Non Commercial No Derivatives 4.0 International,
10.57745/ytsbgl,rdg.prod,Dataset,2024-11-22,Recherche Data Gouv,,
10.5281/zenodo.14199068,cern.zenodo,Dataset,2024-11-21,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14199080,cern.zenodo,Dataset,2024-11-21,Zenodo,"Creative Commons Attribution 4.0 International,Creative Commons Attribution 4.0 International",
10.5061/dryad.8sf7m0czw,dryad.dryad,Dataset,2024-11-21,Dryad,Creative Commons Zero v1.0 Universal,['2055300 bytes']
10.26302/sshade/experiment_lb_20221013_001,inist.sshade,Dataset,2024-11-19,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['34 spectra']
10.5281/zenodo.13904472,cern.zenodo,Text,2024-11-18,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13628539,cern.zenodo,Dataset,2024-11-18,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14170819,cern.zenodo,Dataset,2024-11-15,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14163781,cern.zenodo,Audiovisual,2024-11-14,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14151075,cern.zenodo,Dataset,2024-11-13,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14147172,cern.zenodo,Software,2024-11-13,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/olbxkt,rdg.prod,Dataset,2024-11-13,Recherche Data Gouv,,
10.5281/zenodo.14106550,cern.zenodo,Text,2024-11-12,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14100474,cern.zenodo,Text,2024-11-12,Zenodo,Creative Commons Attribution 4.0 International,
10.18709/perscido.2024.11.ds415,inist.persyval,Dataset,2024-11-12,PerSCiDO,,['10 Mo']
10.1594/pangaea.971917,pangaea.repository,Collection,2024-11-12,PANGAEA,Creative Commons Attribution 4.0 International,['9 datasets']
10.5061/dryad.ht76hdrqg,dryad.dryad,Dataset,2024-11-11,Dryad,Creative Commons Zero v1.0 Universal,['2124418312 bytes']
10.57745/xnjb5k,rdg.prod,Dataset,2024-11-07,Recherche Data Gouv,,
10.5281/zenodo.14051167,cern.zenodo,Other,2024-11-07,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14045604,cern.zenodo,Dataset,2024-11-07,Zenodo,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7528784,figshare.ars,Collection,2024-11-07,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.27627620,figshare.ars,Dataset,2024-11-07,figshare,Creative Commons Attribution 4.0 International,['208073 Bytes']
10.57745/jjwoys,rdg.prod,Dataset,2024-11-06,Recherche Data Gouv,,
10.5281/zenodo.14039282,cern.zenodo,Dataset,2024-11-05,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14038923,cern.zenodo,Dataset,2024-11-05,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14036125,cern.zenodo,Software,2024-11-04,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14035431,cern.zenodo,Dataset,2024-11-04,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/ylciph,rdg.prod,Dataset,2024-11-04,Recherche Data Gouv,,
10.57760/sciencedb.16149,cnic.sciencedb,Dataset,2024-11-04,Science Data Bank,Creative Commons Attribution Non Commercial 4.0 International,"['2433253276 bytes', '4 files']"
10.5281/zenodo.14003384,cern.zenodo,Dataset,2024-11-01,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14016979,cern.zenodo,Other,2024-10-31,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14016634,cern.zenodo,Other,2024-10-31,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14013195,cern.zenodo,Dataset,2024-10-30,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/rvc6wq,rdg.prod,Dataset,2024-10-30,Recherche Data Gouv,,
10.1594/pangaea.972515,pangaea.repository,Dataset,2024-10-30,PANGAEA,Creative Commons Attribution 4.0 International,['264 data points']
10.1594/pangaea.972514,pangaea.repository,Dataset,2024-10-30,PANGAEA,Creative Commons Attribution 4.0 International,['9249 data points']
10.1594/pangaea.972510,pangaea.repository,Dataset,2024-10-30,PANGAEA,Creative Commons Attribution 4.0 International,['20736 data points']
10.1594/pangaea.972508,pangaea.repository,Dataset,2024-10-30,PANGAEA,Creative Commons Attribution 4.0 International,['17667 data points']
10.5281/zenodo.14008283,cern.zenodo,Dataset,2024-10-29,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.14006429,cern.zenodo,Text,2024-10-29,"Université Grenoble Alpes, UGA",Creative Commons Attribution 4.0 International,
10.5281/zenodo.13987040,cern.zenodo,Dataset,2024-10-29,Zenodo,Creative Commons Attribution 4.0 International,
10.25577/fr1v-0577,inist.eost,Dataset,2024-10-28,"EOST UAR830, Université de Strasbourg, CNRS",Creative Commons Attribution 4.0 International,
10.5281/zenodo.14002372,cern.zenodo,Software,2024-10-28,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13996908,cern.zenodo,Dataset,2024-10-26,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13919736,cern.zenodo,ComputationalNotebook,2024-10-25,Zenodo,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7507882,figshare.ars,Collection,2024-10-24,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.27289282,figshare.ars,Text,2024-10-24,figshare,Creative Commons Attribution 4.0 International,['783979 Bytes']
10.6084/m9.figshare.27289279,figshare.ars,Dataset,2024-10-24,figshare,Creative Commons Attribution 4.0 International,['117985 Bytes']
10.18709/perscido.2024.10.ds414,inist.persyval,Dataset,2024-10-22,PerSCiDO,,['10 Mo']
10.5281/zenodo.13961002,cern.zenodo,Dataset,2024-10-22,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13951667,cern.zenodo,Dataset,2024-10-18,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13940200,cern.zenodo,Software,2024-10-16,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13932813,cern.zenodo,Software,2024-10-15,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/owexy1,rdg.prod,Dataset,2024-10-14,Recherche Data Gouv,,
10.5281/zenodo.13927580,cern.zenodo,Software,2024-10-14,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/izde4q,rdg.prod,Dataset,2024-10-11,Recherche Data Gouv,,
10.57745/4vsxwh,rdg.prod,Dataset,2024-10-09,Recherche Data Gouv,,
10.15778/resif.zp2020,inist.resif,Dataset,2024-10-08,RESIF - Réseau Sismologique et géodésique Français,,"['10 stations, 41Go (miniseed format)']"
10.5281/zenodo.13899342,cern.zenodo,Dataset,2024-10-07,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13898563,cern.zenodo,Dataset,2024-10-07,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_ag_20140716_001,inist.sshade,Dataset,2024-10-07,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.26302/sshade/experiment_op_20170316_001,inist.sshade,Dataset,2024-10-07,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.26302/sshade/experiment_ll_20110720_001,inist.sshade,Dataset,2024-10-07,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.5281/zenodo.13886070,cern.zenodo,Software,2024-10-03,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13881754,cern.zenodo,ComputationalNotebook,2024-10-02,Zenodo,Creative Commons Attribution 4.0 International,
10.1594/pangaea.972502,pangaea.repository,Collection,2024-10-01,PANGAEA,Creative Commons Attribution 4.0 International,['4 datasets']
10.5281/zenodo.13865906,cern.zenodo,Software,2024-10-01,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_pa_20140919_001,inist.sshade,Dataset,2024-09-30,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['5 spectra']
10.26302/sshade/experiment_jb_20131205_001,inist.sshade,Dataset,2024-09-30,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.26302/sshade/experiment_ll_20110727_001,inist.sshade,Dataset,2024-09-30,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.26302/sshade/experiment_bs_20241809_001,inist.sshade,Dataset,2024-09-28,SSHADE/CSS (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['55 spectra']
10.26302/sshade/experiment_bs_20241810_001,inist.sshade,Dataset,2024-09-28,SSHADE/CSS (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['33 spectra']
10.5281/zenodo.13852037,cern.zenodo,Software,2024-09-27,Zenodo,MIT License,
10.5281/zenodo.13851910,cern.zenodo,Software,2024-09-27,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13851908,cern.zenodo,Software,2024-09-27,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13851842,cern.zenodo,Software,2024-09-27,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_soc_20120921_001,inist.sshade,Dataset,2024-09-27,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.57745/pbf5nh,rdg.prod,Dataset,2024-09-25,Recherche Data Gouv,,
10.18709/perscido.2024.09.ds413,inist.persyval,Dataset,2024-09-24,PerSCiDO,,['10 Mo']
10.5281/zenodo.13828220,cern.zenodo,Dataset,2024-09-24,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13827994,cern.zenodo,Dataset,2024-09-24,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13805976,cern.zenodo,Image,2024-09-21,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13772537,cern.zenodo,Software,2024-09-20,Zenodo,Creative Commons Attribution 4.0 International,
10.5061/dryad.pk0p2ngt1,dryad.dryad,Dataset,2024-09-18,Dryad,Creative Commons Zero v1.0 Universal,['12175631 bytes']
10.5281/zenodo.13785966,cern.zenodo,Dataset,2024-09-18,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13785330,cern.zenodo,Dataset,2024-09-18,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_op_20050205_001,inist.sshade,Dataset,2024-09-13,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['1 spectrum']
10.26302/sshade/experiment_op_20170206_001,inist.sshade,Dataset,2024-09-13,SSHADE/FAME (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['1 spectrum']
10.6084/m9.figshare.27012151,figshare.ars,Text,2024-09-13,figshare,Creative Commons Attribution 4.0 International,['450818 Bytes']
10.6084/m9.figshare.c.7447186,figshare.ars,Collection,2024-09-13,figshare,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13748961,cern.zenodo,Text,2024-09-11,Zenodo,"Creative Commons Attribution 4.0 International,Creative Commons Attribution Share Alike 4.0 International",
10.6084/m9.figshare.26985715,figshare.ars,Text,2024-09-11,figshare,Creative Commons Attribution 4.0 International,['25284 Bytes']
10.6084/m9.figshare.c.6585842,figshare.ars,Collection,2024-09-11,figshare,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13745070,cern.zenodo,Dataset,2024-09-11,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_zed_20240701_01,inist.sshade,Dataset,2024-09-11,SSHADE/DAYSY (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['14 spectra']
10.5281/zenodo.11108225,cern.zenodo,Dataset,2024-09-08,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_lb_20240830_002,inist.sshade,Dataset,2024-09-05,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.26302/sshade/experiment_lb_20240830_001,inist.sshade,Dataset,2024-09-05,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.57745/wiwmmk,rdg.prod,Dataset,2024-09-04,Recherche Data Gouv,,
10.1594/pangaea.972147,pangaea.repository,Dataset,2024-09-03,PANGAEA,Creative Commons Attribution 4.0 International,['1160 data points']
10.1594/pangaea.972146,pangaea.repository,Dataset,2024-09-03,PANGAEA,Creative Commons Attribution 4.0 International,['1218 data points']
10.26302/sshade/experiment_lb_20221024_001,inist.sshade,Dataset,2024-09-03,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['147 spectra']
10.57745/ifejl8,rdg.prod,Dataset,2024-09-02,Recherche Data Gouv,,
10.18709/perscido.2024.09.ds375,inist.persyval,Dataset,2024-09-02,PerSCiDO,,['10 Mo']
10.18709/perscido.2024.09.ds373,inist.persyval,Dataset,2024-09-02,PerSCiDO,,['10 Mo']
10.5281/zenodo.13619595,cern.zenodo,Dataset,2024-09-02,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13621502,cern.zenodo,Dataset,2024-08-31,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.12783623,cern.zenodo,Dataset,2024-08-30,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_hm_20240726_001,inist.sshade,Dataset,2024-08-29,SSHADE/DOCCD (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['2 spectra']
10.5281/zenodo.13471041,cern.zenodo,Dataset,2024-08-29,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13381664,cern.zenodo,Dataset,2024-08-27,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.12732929,cern.zenodo,Dataset,2024-08-27,Zenodo,Creative Commons Attribution 4.0 International,
10.18709/perscido.2024.08.ds370,inist.persyval,Dataset,2024-08-27,PerSCiDO,,['10 Mo']
10.5281/zenodo.13365447,cern.zenodo,Dataset,2024-08-23,Zenodo,Creative Commons Attribution 4.0 International,
10.34847/nkl.d5bba83q,inist.humanum,Dataset,2024-08-22,NAKALA - https://nakala.fr (Huma-Num - CNRS),,"['15226654 Bytes', '20956020 Bytes', '33317487 Bytes', '8771290 Bytes', '3671478 Bytes']"
10.5281/zenodo.11961695,cern.zenodo,Dataset,2024-08-22,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_bs_20230508_001,inist.sshade,Dataset,2024-08-19,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['10 spectra']
10.6084/m9.figshare.c.7396296,figshare.ars,Collection,2024-08-18,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7241443,figshare.ars,Collection,2024-08-18,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7101349,figshare.ars,Collection,2024-08-18,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7090572,figshare.ars,Collection,2024-08-18,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7011735,figshare.ars,Collection,2024-08-18,figshare,Creative Commons Attribution 4.0 International,
10.5281/zenodo.11516611,cern.zenodo,Dataset,2024-08-16,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13318559,cern.zenodo,Other,2024-08-16,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13270420,cern.zenodo,Software,2024-08-16,Zenodo,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26758976,figshare.ars,Dataset,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['25794 Bytes']
10.6084/m9.figshare.26758973,figshare.ars,Dataset,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['9570 Bytes']
10.6084/m9.figshare.26758970,figshare.ars,Dataset,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['21408 Bytes']
10.6084/m9.figshare.26531087,figshare.ars,Dataset,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['21969 Bytes']
10.6084/m9.figshare.c.7267360,figshare.ars,Collection,2024-08-15,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26729365,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['492407 Bytes']
10.6084/m9.figshare.26729362,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['22341 Bytes']
10.57760/sciencedb.11705,cnic.sciencedb,Dataset,2024-08-15,Science Data Bank,Creative Commons Attribution Non Commercial Share Alike 4.0 International,"['99398887984 bytes', '14 files']"
10.6084/m9.figshare.26722614,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['12341 Bytes']
10.6084/m9.figshare.25854698,figshare.ars,Image,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['464136 Bytes']
10.6084/m9.figshare.c.7204785,figshare.ars,Collection,2024-08-15,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26713777,figshare.ars,Dataset,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['553168 Bytes']
10.6084/m9.figshare.25711209,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['33449 Bytes']
10.6084/m9.figshare.c.7116481,figshare.ars,Collection,2024-08-15,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26691925,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['2061125 Bytes']
10.6084/m9.figshare.26691922,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['173284 Bytes']
10.6084/m9.figshare.26691919,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['1191648 Bytes']
10.6084/m9.figshare.26691916,figshare.ars,Dataset,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['37228 Bytes']
10.6084/m9.figshare.c.7113041,figshare.ars,Collection,2024-08-15,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26690905,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['1177228 Bytes']
10.57760/sciencedb.11915,cnic.sciencedb,Dataset,2024-08-15,Science Data Bank,Creative Commons Attribution Non Commercial Share Alike 4.0 International,"['10258988483 bytes', '2 files']"
10.6084/m9.figshare.25329836,figshare.ars,Text,2024-08-15,figshare,Creative Commons Attribution 4.0 International,['18250 Bytes']
10.6084/m9.figshare.26685165,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['193545 Bytes']
10.6084/m9.figshare.26685162,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['189101 Bytes']
10.6084/m9.figshare.26685159,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['188135 Bytes']
10.6084/m9.figshare.26685156,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['196963 Bytes']
10.6084/m9.figshare.26685153,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['189796 Bytes']
10.6084/m9.figshare.26685150,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['60080 Bytes']
10.6084/m9.figshare.25284847,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['114949 Bytes']
10.6084/m9.figshare.c.7081942,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26682622,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['583266 Bytes']
10.6084/m9.figshare.26682619,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['18254 Bytes']
10.6084/m9.figshare.c.7033012,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26669103,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['20507 Bytes']
10.6084/m9.figshare.c.7012865,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26664607,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['13394 Bytes']
10.6084/m9.figshare.26664601,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['33263 Bytes']
10.6084/m9.figshare.26664595,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['18205 Bytes']
10.6084/m9.figshare.26664589,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['17203 Bytes']
10.6084/m9.figshare.24953248,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['59231 Bytes']
10.5281/zenodo.12727358,cern.zenodo,Dataset,2024-08-14,Zenodo,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.7007054,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26660299,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['32002 Bytes']
10.6084/m9.figshare.c.6962078,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26648475,figshare.ars,Audiovisual,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['150664 Bytes']
10.6084/m9.figshare.26648472,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['15473 Bytes']
10.6084/m9.figshare.c.6946290,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26644315,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['75485 Bytes']
10.6084/m9.figshare.26644312,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['56252 Bytes']
10.6084/m9.figshare.26644309,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['210790 Bytes']
10.6084/m9.figshare.26644306,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['228261 Bytes']
10.6084/m9.figshare.26644303,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['243025 Bytes']
10.6084/m9.figshare.26644300,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['256114 Bytes']
10.6084/m9.figshare.26644297,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['235476 Bytes']
10.6084/m9.figshare.26644294,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['275601 Bytes']
10.6084/m9.figshare.26644291,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['268606 Bytes']
10.6084/m9.figshare.26644288,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['52350 Bytes']
10.6084/m9.figshare.26644285,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['141772 Bytes']
10.6084/m9.figshare.c.6929067,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26639262,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['1437994 Bytes']
10.6084/m9.figshare.c.6919467,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26637147,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['18912 Bytes']
10.6084/m9.figshare.c.6914121,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26635422,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['35781 Bytes']
10.6084/m9.figshare.26635419,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['21338 Bytes']
10.6084/m9.figshare.26635416,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['21027 Bytes']
10.6084/m9.figshare.26635413,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['93281 Bytes']
10.6084/m9.figshare.26635410,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['39961 Bytes']
10.6084/m9.figshare.c.6905671,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26633925,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['557382 Bytes']
10.6084/m9.figshare.26629135,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['792543 Bytes']
10.6084/m9.figshare.c.6889784,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.c.6880688,figshare.ars,Collection,2024-08-14,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26626966,figshare.ars,Text,2024-08-14,figshare,Creative Commons Attribution 4.0 International,['4519412 Bytes']
10.6084/m9.figshare.c.6683920,figshare.ars,Collection,2024-08-13,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26594582,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['808520 Bytes']
10.6084/m9.figshare.26594576,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['541717 Bytes']
10.6084/m9.figshare.26594573,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['555418 Bytes']
10.6084/m9.figshare.c.6623191,figshare.ars,Collection,2024-08-13,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26585838,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['474787 Bytes']
10.6084/m9.figshare.26585835,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['52360 Bytes']
10.6084/m9.figshare.26585832,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['200785 Bytes']
10.6084/m9.figshare.26585829,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['279842 Bytes']
10.6084/m9.figshare.26585826,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['105007 Bytes']
10.6084/m9.figshare.26585823,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['11099 Bytes']
10.6084/m9.figshare.c.6596504,figshare.ars,Collection,2024-08-13,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26577821,figshare.ars,Dataset,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['56397 Bytes']
10.6084/m9.figshare.26567603,figshare.ars,Text,2024-08-13,figshare,Creative Commons Attribution 4.0 International,['360541 Bytes']
10.6084/m9.figshare.c.6586928,figshare.ars,Collection,2024-08-13,figshare,Creative Commons Attribution 4.0 International,
10.15778/resif.z42022,inist.resif,Dataset,2024-08-12,RESIF - Réseau Sismologique et géodésique Français,,"['98 stations, 280Go (miniseed format)']"
10.12686/eshm20-output,ethz.sed,Dataset,2024-08-12,EFEHR (European Facilities of Earthquake Hazard and Risk),Creative Commons Attribution 4.0 International,['529MB']
10.5281/zenodo.7447726,cern.zenodo,Dataset,2024-08-12,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.11562538,cern.zenodo,Dataset,2024-08-12,Zenodo,IAMC-License,
10.6084/m9.figshare.26531028,figshare.ars,Text,2024-08-10,figshare,Creative Commons Attribution 4.0 International,['2445850 Bytes']
10.12686/eshm20-main-datasets,ethz.sed,Dataset,2024-08-08,EFEHR European Facilities of Earthquake Hazard and Risk,Creative Commons Attribution 4.0 International,['529MB']
10.5281/zenodo.13270501,cern.zenodo,Dataset,2024-08-08,Zenodo,Creative Commons Attribution 4.0 International,
10.5061/dryad.1rn8pk13f,dryad.dryad,Dataset,2024-08-08,Dryad,Creative Commons Zero v1.0 Universal,['3185889071 bytes']
10.5281/zenodo.13255290,cern.zenodo,Image,2024-08-07,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.12571887,cern.zenodo,Dataset,2024-08-07,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13234729,cern.zenodo,Text,2024-08-06,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13194009,cern.zenodo,Image,2024-08-03,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13194007,cern.zenodo,Image,2024-08-03,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13189238,cern.zenodo,Image,2024-08-03,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13189234,cern.zenodo,Image,2024-08-03,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13189236,cern.zenodo,Image,2024-08-03,Zenodo,Creative Commons Attribution 4.0 International,
10.5061/dryad.wdbrv15xr,dryad.dryad,Dataset,2024-08-02,Dryad,Creative Commons Zero v1.0 Universal,['482590 bytes']
10.5281/zenodo.13164857,cern.zenodo,Dataset,2024-08-02,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13135091,cern.zenodo,Image,2024-07-30,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13135089,cern.zenodo,Image,2024-07-30,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.13135087,cern.zenodo,Image,2024-07-30,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.12919126,cern.zenodo,Software,2024-07-26,Zenodo,Affero General Public License v1.0 or later,
10.5281/zenodo.12790568,cern.zenodo,Model,2024-07-21,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_op_20240717_002,inist.sshade,Dataset,2024-07-19,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['80 spectra']
10.5281/zenodo.12774358,cern.zenodo,Model,2024-07-18,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_op_20240717_001,inist.sshade,Dataset,2024-07-17,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['15 spectra']
10.26302/sshade/experiment_lb_20240713_001,inist.sshade,Dataset,2024-07-16,SSHADE/GhoSST (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['27 spectra']
10.5281/zenodo.12742967,cern.zenodo,Dataset,2024-07-15,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/gbynan,rdg.prod,Dataset,2024-07-14,Recherche Data Gouv,,
10.57745/pzrg1b,rdg.prod,Dataset,2024-07-13,Recherche Data Gouv,,
10.15778/resif.yz2022,inist.resif,Dataset,2024-07-12,RESIF - Réseau Sismologique et géodésique Français,,"['62 stations, 868Go (miniseed format)']"
10.15778/resif.1f2018,inist.resif,Dataset,2024-07-12,RESIF - Réseau Sismologique et géodésique Français,,"['198 stations, 409Go (miniseed format)']"
10.5281/zenodo.12733192,cern.zenodo,Dataset,2024-07-12,Zenodo,Creative Commons Attribution 4.0 International,
10.15778/resif.z42023,inist.resif,Dataset,2024-07-12,RESIF - Réseau Sismologique et géodésique Français,"Open Access,Creative Commons Attribution 4.0 International","['21 stations, 163Go (miniseed format)']"
10.15778/resif.1b2020,inist.resif,Dataset,2024-07-12,RESIF - Réseau Sismologique et géodésique Français,,"['18 stations, 704Go (miniseed format)']"
10.15778/resif.xs2024,inist.resif,Dataset,2024-07-12,RESIF - Réseau Sismologique et géodésique Français,,"['100 stations, 684Go (miniseed format)']"
10.18709/perscido.2024.07.ds410,inist.persyval,Dataset,2024-07-11,PerSCiDO,,['10 Mo']
10.5281/zenodo.12723294,cern.zenodo,Dataset,2024-07-11,Zenodo,Creative Commons Attribution 4.0 International,
10.5061/dryad.wm37pvmvq,dryad.dryad,Dataset,2024-07-11,Dryad,Creative Commons Zero v1.0 Universal,['44862452 bytes']
10.15778/resif.yr2022,inist.resif,Dataset,2024-07-10,RESIF - Réseau Sismologique et géodésique Français,,"['5 stations, 72Go (miniseed format)']"
10.15778/resif.xt2024,inist.resif,Dataset,2024-07-10,RESIF - Réseau Sismologique et géodésique Français,,"['100 stations, 710Go (miniseed format)']"
10.15778/resif.9l2022,inist.resif,Dataset,2024-07-10,RESIF - Réseau Sismologique et géodésique Français,"Open Access,Creative Commons Attribution 4.0 International","['1 station, 12Go (miniseed format)']"
10.26302/sshade/experiment_bs_20240605_001,inist.sshade,Dataset,2024-07-10,SSHADE/DRIMS (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['41 spectra']
10.15778/resif.9f2023,inist.resif,Dataset,2024-07-10,RESIF - Réseau Sismologique et géodésique Français,,"['82 stations, 622Go (miniseed format)']"
10.15778/resif.xr2024,inist.resif,Dataset,2024-07-10,RESIF - Réseau Sismologique et géodésique Français,,"['5 stations, 18Go (miniseed format)']"
10.15778/resif.xf2024,inist.resif,Dataset,2024-07-10,RESIF - Réseau Sismologique et géodésique Français,,"['29 stations, 20Go (miniseed format)']"
10.5281/zenodo.12697960,cern.zenodo,Software,2024-07-09,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.12664035,cern.zenodo,Dataset,2024-07-08,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/ikymka,rdg.prod,Dataset,2024-07-08,Recherche Data Gouv,,
10.5061/dryad.v6wwpzh2j,dryad.dryad,Dataset,2024-07-05,Dryad,Creative Commons Zero v1.0 Universal,['1556461926 bytes']
10.5281/zenodo.12662313,cern.zenodo,InteractiveResource,2024-07-05,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.12620977,cern.zenodo,Dataset,2024-07-04,Zenodo,Creative Commons Attribution 4.0 International,
10.34847/nkl.344e6396,inist.humanum,Text,2024-07-02,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['240022 Bytes']
10.6084/m9.figshare.c.7306419,figshare.ars,Collection,2024-06-28,figshare,Creative Commons Attribution 4.0 International,
10.6084/m9.figshare.26122626,figshare.ars,Text,2024-06-28,figshare,Creative Commons Attribution 4.0 International,['882103 Bytes']
10.57745/j3xipw,rdg.prod,Dataset,2024-06-26,Recherche Data Gouv,,
10.5281/zenodo.12528242,cern.zenodo,Dataset,2024-06-25,Zenodo,Creative Commons Attribution 4.0 International,
10.7914/ts1a-7g40,iris.iris,Dataset,2024-06-21,International Federation of Digital Seismograph Networks,,['500000 MB']
10.5281/zenodo.12205981,cern.zenodo,Dataset,2024-06-21,Zenodo,Creative Commons Attribution 4.0 International,
10.57745/qg9n3a,rdg.prod,Dataset,2024-06-20,Recherche Data Gouv,,
10.5281/zenodo.12170086,cern.zenodo,Other,2024-06-19,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.7981221,cern.zenodo,Dataset,2024-06-19,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.7031228,cern.zenodo,Software,2024-06-18,Zenodo,Creative Commons Attribution 4.0 International,
10.34847/nkl.46d78788,inist.humanum,Report,2024-06-18,NAKALA - https://nakala.fr (Huma-Num - CNRS),Etalab Open License 2.0,['12199 bytes']
10.57745/p0khag,rdg.prod,Dataset,2024-06-14,Recherche Data Gouv,,
10.5281/zenodo.11657789,cern.zenodo,Software,2024-06-14,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.11650896,cern.zenodo,Dataset,2024-06-14,Zenodo,MIT License,
10.5281/zenodo.11614593,cern.zenodo,Text,2024-06-12,Zenodo,Creative Commons Attribution 4.0 International,
10.5061/dryad.jdfn2z3k4,dryad.dryad,Dataset,2024-06-12,Dryad,Creative Commons Zero v1.0 Universal,['233570710 bytes']
10.5281/zenodo.11594164,cern.zenodo,Text,2024-06-12,Zenodo,Creative Commons Attribution 4.0 International,
10.5281/zenodo.11554925,cern.zenodo,Dataset,2024-06-10,Zenodo,Open Government Licence - Canada,
10.5281/zenodo.11554782,cern.zenodo,Dataset,2024-06-10,Zenodo,Open Government Licence - Canada,
10.5281/zenodo.11403191,cern.zenodo,Dataset,2024-06-10,Zenodo,Creative Commons Attribution 4.0 International,
10.26302/sshade/experiment_bs_20220803_001,inist.sshade,Dataset,2024-06-09,SSHADE/GhoSST+DRIMS (OSUG Data Center),"Any use of downloaded SSHADE data in a scientific or technical paper or a presentation is free but you should cite both SSHADE and the used data in the text ( 'first author' et al., year) with its full reference (with its DOI) in the main reference section of the paper (or in a special 'data citation' section) and, when available, the original paper(s) presenting the data.",['15 spectra']
10.57745/shddtw,rdg.prod,Dataset,2024-06-05,Recherche Data Gouv,,
10.34847/nkl.2aee55ll,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['80724139 Bytes']
10.34847/nkl.70ecx2zf,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['65108954 Bytes']
10.34847/nkl.e5dd9q5e,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['28448391 Bytes']
10.34847/nkl.964cpov0,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['46301376 Bytes']
10.34847/nkl.f6d8m962,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['26439066 Bytes']
10.34847/nkl.df7fuw6c,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['19348141 Bytes']
10.34847/nkl.d8cei718,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['12661479 Bytes']
10.34847/nkl.bf113ij9,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['49397800 Bytes']
10.34847/nkl.805dw61i,inist.humanum,Audiovisual,2024-06-05,NAKALA - https://nakala.fr (Huma-Num - CNRS),,['43348923 Bytes']
source diff could not be displayed: it is too large. Options to address this: view the blob.
...@@ -13,5 +13,3 @@ https://indico.math.cnrs.fr/event/10998/page/779-journees-mathrice-a-grenoble-le ...@@ -13,5 +13,3 @@ https://indico.math.cnrs.fr/event/10998/page/779-journees-mathrice-a-grenoble-le
- nous faut il répliquer nos DOI dans Recherche Data Gouv pour plus de visibilité ? - nous faut il répliquer nos DOI dans Recherche Data Gouv pour plus de visibilité ?
2024-03-xx Software Heritage
=================
\ No newline at end of file