From 18e553f3e7045b86de0c5051d589646e8fe1bd7d Mon Sep 17 00:00:00 2001 From: "michele.artini" Date: Thu, 29 Jun 2023 10:39:53 +0200 Subject: [PATCH] tests --- .../openaire/context/ContextMappingUtils.java | 13 +- .../CommunityImporterServiceTest.java | 57 +- .../importer/old_community_profile.xml | 6129 +++++++++-------- .../community/CommunityContentprovider.java | 22 +- .../model/community/CommunityDetails.java | 45 + .../community/CommunityOrganization.java | 15 + .../model/community/CommunityProject.java | 19 + .../model/community/SubCommunity.java | 21 + 8 files changed, 3455 insertions(+), 2866 deletions(-) diff --git a/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/context/ContextMappingUtils.java b/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/context/ContextMappingUtils.java index e7311c2a..81dd0e69 100644 --- a/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/context/ContextMappingUtils.java +++ b/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/context/ContextMappingUtils.java @@ -11,6 +11,8 @@ import java.util.stream.Collectors; import org.apache.commons.lang3.BooleanUtils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.time.DateUtils; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.DocumentHelper; @@ -30,21 +32,26 @@ public class ContextMappingUtils { private static final List DATE_PATTERN = Lists.newArrayList("yyyy-MM-dd'T'hh:mm:ss", "yyyy-MM-dd'T'hh:mm:ssXXX", "yyyy-MM-dd'T'hh:mm:ss+00:00"); + private static final Log log = LogFactory.getLog(ContextMappingUtils.class); + public static Context parseContext(final String s, final Queue errors) { try { final Document doc = DocumentHelper.parseText(s); final Element eContext = (Element) doc.selectSingleNode("/RESOURCE_PROFILE/BODY/CONFIGURATION/context"); final String creationDate = eContext.valueOf("./param[./@name='creationdate']/text()"); + final String otherDate = doc.valueOf("/RESOURCE_PROFILE/HEADER/DATE_OF_CREATION/@value"); final Context c = new Context() .setId(eContext.attributeValue("id")) .setLabel(eContext.attributeValue("label")) .setType(eContext.attributeValue("type")) - .setLastUpdateDate(asDate(doc.valueOf("/RESOURCE_PROFILE/HEADER/DATE_OF_CREATION/@value"))) + .setLastUpdateDate(asDate(otherDate)) .setParams(parseParams(eContext)) .setCategories(parseCategories(eContext)); // the creation date will be added in the param elements of the community profile. Funders may not have it, hence the check. if (StringUtils.isNotBlank(creationDate)) { c.setCreationDate(asDate(creationDate)); + } else { + c.setCreationDate(asDate(otherDate)); } return c; } catch (final DocumentException e) { @@ -56,9 +63,11 @@ public class ContextMappingUtils { private static Date asDate(final String s) { for (final String pattern : DATE_PATTERN) { try { - return DateUtils.parseDate(s, pattern); + final Date res = DateUtils.parseDate(s, pattern); + if (res != null) { return res; } } catch (final ParseException e) {} } + log.error("Invalid Date: " + s); return null; } diff --git a/apps/dnet-exporter-api/src/test/java/eu/dnetlib/openaire/community/importer/CommunityImporterServiceTest.java b/apps/dnet-exporter-api/src/test/java/eu/dnetlib/openaire/community/importer/CommunityImporterServiceTest.java index 7d5a0fb6..beea0d82 100644 --- a/apps/dnet-exporter-api/src/test/java/eu/dnetlib/openaire/community/importer/CommunityImporterServiceTest.java +++ b/apps/dnet-exporter-api/src/test/java/eu/dnetlib/openaire/community/importer/CommunityImporterServiceTest.java @@ -1,21 +1,32 @@ package eu.dnetlib.openaire.community.importer; import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.fail; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.nio.charset.StandardCharsets; +import java.util.LinkedList; import java.util.List; +import java.util.Queue; import org.apache.commons.io.IOUtils; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.ArgumentCaptor; import org.mockito.Mock; +import org.mockito.Mockito; import org.mockito.junit.jupiter.MockitoExtension; import eu.dnetlib.openaire.community.CommunityService; import eu.dnetlib.openaire.community.model.DbOrganization; import eu.dnetlib.openaire.community.repository.DbOrganizationRepository; +import eu.dnetlib.openaire.context.ContextMappingUtils; +import eu.dnetlib.openaire.exporter.model.community.CommunityContentprovider; +import eu.dnetlib.openaire.exporter.model.community.CommunityDetails; +import eu.dnetlib.openaire.exporter.model.community.CommunityOrganization; +import eu.dnetlib.openaire.exporter.model.community.CommunityProject; +import eu.dnetlib.openaire.exporter.model.community.SubCommunity; +import eu.dnetlib.openaire.exporter.model.context.Context; @ExtendWith(MockitoExtension.class) class CommunityImporterServiceTest { @@ -48,9 +59,49 @@ class CommunityImporterServiceTest { assertEquals(14, list.stream().filter(o -> o.getCommunity().equals("beopen")).count()); } + @SuppressWarnings("unchecked") @Test - public void testImportCommunity() { - fail("Not yet implemented"); + public void testImportCommunity() throws Exception { + final String profile = IOUtils.toString(getClass().getResourceAsStream("old_community_profile.xml"), StandardCharsets.UTF_8.toString()); + + final Queue errors = new LinkedList<>(); + final Context context = ContextMappingUtils.parseContext(profile, errors); + assertTrue(errors.isEmpty()); + + importer.importCommunity(context); + + final ArgumentCaptor detailsCapture = ArgumentCaptor.forClass(CommunityDetails.class); + final ArgumentCaptor> projectsCapture = ArgumentCaptor.forClass(List.class); + final ArgumentCaptor> datasourcesCapture = ArgumentCaptor.forClass(List.class); + final ArgumentCaptor> orgsCapture = ArgumentCaptor.forClass(List.class); + final ArgumentCaptor> subCommunitiesCapture = ArgumentCaptor.forClass(List.class); + + Mockito.verify(service, Mockito.times(1)).saveCommunity(detailsCapture.capture()); + Mockito.verify(service, Mockito.times(1)).addCommunityProjectList(Mockito.anyString(), projectsCapture.capture()); + Mockito.verify(service, Mockito.times(1)).addCommunityContentProvidersList(Mockito.anyString(), datasourcesCapture.capture()); + Mockito.verify(service, Mockito.times(1)).addCommunityOrganizationList(Mockito.anyString(), orgsCapture.capture()); + Mockito.verify(service, Mockito.times(1)).addSubCommunityList(subCommunitiesCapture.capture()); + + final CommunityDetails details = detailsCapture.getValue(); + assertEquals("egi", details.getId()); + // System.out.println(details); + + final List projects = projectsCapture.getValue(); + assertEquals(83, projects.size()); + // projects.forEach(System.out::println); + + final List datasources = datasourcesCapture.getValue(); + assertEquals(1, datasources.size()); + // datasources.forEach(System.out::println); + + final List orgs = orgsCapture.getValue(); + assertEquals(1, orgs.size()); + // orgs.forEach(System.out::println); + + final List subs = subCommunitiesCapture.getValue(); + assertEquals(688, subs.size()); + // subs.forEach(System.out::println); + } } diff --git a/apps/dnet-exporter-api/src/test/resources/eu/dnetlib/openaire/community/importer/old_community_profile.xml b/apps/dnet-exporter-api/src/test/resources/eu/dnetlib/openaire/community/importer/old_community_profile.xml index 8449a1ff..0522cd4f 100644 --- a/apps/dnet-exporter-api/src/test/resources/eu/dnetlib/openaire/community/importer/old_community_profile.xml +++ b/apps/dnet-exporter-api/src/test/resources/eu/dnetlib/openaire/community/importer/old_community_profile.xml @@ -1,2905 +1,3322 @@
- + - +
- - all - Welcome to the Open Research Gateway for Transport Research. This gateway is part of the TOPOS Observatory (https://www.topos-observatory.eu). The TOPOS aims to showcase the status and progress of open science uptake in transport research. It focuses on promoting territorial and cross border cooperation and contributing in the optimization of open science in transport research. The TOPOS Observatory is supported by the EC H2020 BEOPEN project (824323) - https://beopen-project.eu/storage/settings/logo-be-open-white-bg.svg - Transport Research - akac.attila@certh.gr,a.anagnostopoulou@certh.gr,tsami@certh.gr,spanidis@certh.gr - Green Transport,City mobility systems,Vulnerable road users,Traffic engineering,Transport electrification,Intermodal freight transport,Clean vehicle fleets,Intelligent mobility,Inflight refueling,District mobility systems,Navigation and control systems for optimised planning and routing,European Space Technology Platform,European Transport networks,Green cars,Inter-modality infrastructures,Advanced Take Off and Landing Ideas,Sustainable urban systems,port-area railway networks,Innovative forms of urban transport,Alliance for Logistics Innovation through Collaboration in Europe,Advisory Council for Aeronautics Research in Europe,Mobility services for people and goods,Guidance and traffic management,Passenger mobility,Smart mobility and services,transport innovation,high-speed railway,Vehicle design,Inland shipping,public transportation,aviation’s climate impact,Road transport,On-demand public transport,Personal Air Transport,Pipeline transport,European Association of Aviation Training and Education Organisations,Defrosting of railway infrastructure,Inclusive and affordable transport,River Information Services,jel:L92,Increased use of public transport,Seamless mobility,STRIA,trolleybus transport,Intelligent Transport System,Low-emission alternative energy for transport,Shared mobility for people and goods,Business model for urban mobility,Interoperability of transport systems,Cross-border train slot booking,Air transport,Transport pricing,Sustainable transport,European Rail Transport Research Advisory Council,Alternative aircraft configurations,Railways applications,urban transport,Environmental impact of transport,urban freight delivery systems,Automated Road Transport,Alternative fuels in public transport,Active LIDAR-sensor for GHG-measurements,Autonomous logistics operations,Rational use of motorised transport,Network and traffic management systems,electrification of railway wagons,Single European Sky,Electrified road systems,Railway dynamics,Motorway of the Sea,smart railway communications,Maritime transport,Environmental- friendly transport,Combined transport,Connected automated driving technology,Innovative freight logistics services,automated and shared vehicles,Alternative Aircraft Systems,Land-use and transport interaction,Public transport system,Business plan for shared mobility,Shared mobility,Growing of mobility demand,European Road Transport Research Advisory Council,WATERBORNE ETP,Effective transport management system,Short Sea Shipping,air traffic management,Sea hubs and the motorways of the sea,Urban mobility solutions,Smart city planning,Maritime spatial planning,EUropean rail Research Network of Excellence,ENERGY CONSUMPTION BY THE TRANSPORT SECTOR,Integrated urban plan,inland waterway services,European Conference of Transport Research Institutes,air vehicles,E-freight,Automated Driving,Automated ships,pricing for cross-border passenger transport,Vehicle efficiency,Railway transport,Electric vehicles,Road traffic monitoring,Deep sea shipping,Circular economy in transport,Traffic congestion,air transport system,Urban logistics,Rail transport,OpenStreetMap,high speed rail,Transportation engineering,Intermodal travel information,Flight Data Recorders,Advanced driver assistance systems,long distance freight transport,Inland waterway transport,Smart mobility,Mobility integration,Personal Rapid Transit system,Safety measures & requirements for roads,Green rail transport,Vehicle manufacturing,Future Airport Layout,Rail technologies,European Intermodal Research Advisory Council,inland navigation,Automated urban vehicles,ECSS-standards,Traveller services,Polluting transport,Air Traffic Control,Cooperative and connected and automated transport,Innovative powertrains,Quality of transport system and services,door-to- door logistics chain,Inter-modal aspects of urban mobility,Innovative freight delivery systems,urban freight delivery infrastructures - - be-open-transport - 2019-10-14T11:00:00 - - - Development of Functional Requirements for Sustainable and Attractive European Rail Freight - FR8RAIL - 730617 - EC - corda__h2020::4b1f3adc45a7485b2bbc829df8a3187f - - - Automated Rail Cargo Consortium: Rail freight automation research activities to boost levels of quality, efficiency and cost effectiveness in all areas of rail freight operations - ARCC - 730813 - EC - corda__h2020::12226519393b9455c315851cfd15fabd - - - Start-up activities for Advanced Signalling and Automation Systems - X2Rail-1 - 730640 - EC - corda__h2020::2cb05aaa25770bbd93b8eea7733b1e3f - - - Enhancing railway signalling systems based on train satellite positioning, on-board safe train integrity, formal methods approach and standard interfaces, enhancing Traffic Management System functions - X2RAIL-2 - 777465 - EC - corda__h2020::43e2d8078dccff120351640fe967db50 - - - Cybersecurity in the RAILway sector - CYRail - 730843 - EC - corda__h2020::6192e62d90d2fd17e4cdb5f6dbae3b24 - - - Towards a REgulatory FRamework for the usE of Structural new materials in railway passenger and freight CarbOdyshells. - REFRESCO - 605632 - EC - corda_______::85cd1c1bf361609d72163ae6a979d987 - - - Clean European Rail - Diesel - CLEANER-D - 234338 - EC - corda_______::0ffa4ddf408c46780e57cb089176913d - - - Data-driven research addressing aviation safety intelligence - SafeClouds.eu - 724100 - EC - corda__h2020::72b98a363ec0f1937dc26214417103cb - - - Data driven approach for a Seamless Efficient European Travelling in 2050 - DATASET2050 - 640353 - EC - corda__h2020::3479dfb41694951fdddeccbe67f59050 - - - New design principles fostering safety, agility and resilience for ATM - RESILIENCE2050.EU - 314087 - EC - corda_______::76d8e3fce64a174e215eb47ca80c391c - - - European Field Operational Test on Safe, Intelligent and Sustainable Road Operation - FOTSIS - 270447 - EC - corda_______::6eadff7d0f962ea3e8ecd4c1d8f6b31a - - - Coordination Action on PPP Implementation for Road-Transport Electrification - CAPIRE - 265874 - EC - corda_______::0b37ee78ee037bfa4c1710ad0a2ba02a - - - RegUlation and norM for low sonic Boom LEvels - RUMBLE - 769896 - EC - corda__h2020::7e38a9fe661b8515a51daabf1e2a6e56 - - - Towards a transport infrastructure for large-scale CCS in Europe - CO2EUROPIPE - 226317 - EC - corda_______::90205eab89b4df977393f3ca635d43fa - - - Smart Supply Chain Oriented Rail Freight Services – Smart-Rail - Smart-Rail - 636071 - EC - corda__h2020::afa2bae4c38b7e5c715f8eb2118b8700 - - - Adaptive ADAS to support incapacitated drivers Mitigate Effectively risks through tailor made HMI under automation - ADASANDME - 688900 - EC - corda__h2020::fb531d711b7ac61624d406ec3ff7e062 - - - High reach innovative mobility solutions to cope with transport poverty - HiReach - 769819 - EC - corda__h2020::5e2fabb8eb86269a4b83bec6ddce70d6 - - - European Bus System of the Future - EBSF - 218647 - EC - corda_______::7bab5a23e75e2a33dbb46465cf6d47e9 - - - Advanced High Volume Affordable Lightweighting for Future Electric Vehicles - ALIVE - 314234 - EC - corda_______::9cf4508efc4d0d1d9d1357dda89ae0c1 - - - Building blocks concepts for efficient and safe multiuse urban electrical vehicles - WIDE-MOB - 266129 - EC - corda_______::36205bd5f2a4f08e9f3bb3f3af3c02a4 - - - COmplete Vehicle Energy-saving Technologies for Heavy-Trucks - CONVENIENT - 312314 - EC - corda_______::e915a816463c48b73236e8f57f13bc28 - - - BEst in class veHICLE: Safe urban mobility in a sustainable transport value-chain (BEHICLE) - BEHICLE - 605292 - EC - corda_______::d828c72c72a9c42ca2aa13bfc49c6c18 - - - Green eMotion: Development and demonstration of a unique and user-friendly framework for green electromobility in Europe - GREEN EMOTION - 265499 - EC - corda_______::0217eaa167c9a647250de6a05e8096f5 - - - Hydrogen Transport in European Cities - HYTEC - 278727 - EC - corda_______::cd83e9891759f7b847a9fd74bde44c0b - - - Design of Electric LIght Vans for Environment-impact Reduction - DELIVER - 285296 - EC - corda_______::76d7081cc98329b5eb3b4c508793f372 - - - Transformation of emerging contaminants in the aquatic environment. Fate of transformation products under multiple stress conditions - TRANSFORMER - 657425 - EC - corda__h2020::f39982237663c879f6acf5222a7de132 - - - Hybrid Commercial Vehicle - HCV - 234019 - EC - corda_______::946bc00761d098292245d5eabb21022a - - - i-TOUR: intelligent Transport system for Optimized URban trips - I-TOUR - 234239 - EC - corda_______::273591ff67869f33c407c1f463e78b4e - - - Aerodynamic and Flexible Trucks for Next Generation of Long Distance Road Transport - AEROFLEX - 769658 - EC - corda__h2020::29ecf4254db92de4a6d324543a4b029c - - - Open social transport network for urban approach to carpooling - SocialCar - 636427 - EC - corda__h2020::80edd2dd52f8f13c1c16ce2e5830b707 - - - Cities demonstrating cybernetic mobility - CITYMOBIL2 - 314190 - EC - corda_______::232952d674fbad418b0e1c658eb71231 - - - Co-operative Systems in Support of Networked Automated Driving by 2030 - AUTONET2030 - 610542 - EC - corda_______::883b7d2a61c2bac42f4baa49ebff75ff - - - Conception d'un outil d'aide à la décision pour une répartition modale et spatiale durable du trafic de marchandises compte tenu de la vulnérabilité des espaces traversés - application au trafic transalpin - - 100012-105743 - SNSF - snsf________::79c29195d710a249bc7edc0065eae9ea - - - Market forces trade-offs impacting European ATM performance - Vista - 699390 - EC - corda__h2020::e7a931816c5109251b8ee7b7c9330e4e - - - Leveraging Big Data to Manage Transport Operations - LeMO - 770038 - EC - corda__h2020::7cd281637b49a9af6a971cc4e4eb043e - - - Automotive Big Data Marketplace for Innovative Cross-sectorial Vehicle Data Services - AutoMat - 644657 - EC - corda__h2020::fdcad10848ee8720e7a5214b8218a36b - - - euroFOT (European Field Operational Test on Active Safety Functions in vehicles) - EUROFOT - 223945 - EC - corda_______::9a8fcb387320778c60bde85c087b20d5 - - - eUropean naturalistic Driving and Riding for Infrastructure & Vehicle safety and Environment - UDRIVE - 314050 - EC - corda_______::ca076a2a363888097eaa88e7507ff261 - - - Multi-source Big Data Fusion Driven Proactivity for Intelligent Mobility - OPTIMUM - 636160 - EC - corda__h2020::6a59ebac0678c668e552a1a877a24718 - - - Freight Transport and the Environment - - DP0208269 - ARC - arc_________::c06cbd36caca2933c38efbc25424bdd9 - - - Making CO2-free city logistics a reality - TiMMi Transport - 808366 - EC - corda__h2020::4868a86cf18dad6c1f76834f252adb9d - - - European Transport Research Area International cooperation activities - EUTRAIN - 285305 - EC - corda_______::3b177971eede027531879909803278a9 - - - DecarboN8 - An integrated network to decarbonise transport - - EP/S032002/1 - UKRI - ukri________::ae1131d45939377bbc1dc26e53774a6c - - - Intelligent Transport and Vehicle Systems Research Laboratory - - LE0233830 - ARC - arc_________::77c1292804103c97009663069f7af8c4 - - - New and Innovative Concepts for Helping European Transport Sustainability - Towards Implementation - NICHES+ - 218504 - EC - corda_______::ba17162ff8e55da1d5736544cac10c7d - - - Reducing greenhouse-gas emissions of transport beyond 2020: linking R&D, transport policies and reduction targets - GHG-TRANSPORD - 233828 - EC - corda_______::39d7399d54209f57618dd2637a10db19 - - - MEthodology for Describing the Accessibility of Transport in Europe - MEDIATE - 218684 - EC - corda_______::79376600ba7eef983907bf4b49574bb3 - - - Actions to stimulate participation of cooperation partners in surface transport research - CETRRA - 218730 - EC - corda_______::b55fd2cf5fb61ac8085b7aa2fb7f034b - - - Enhancing excellence and innovation capacity in sustainable transport interchanges - ALLIANCE - 692426 - EC - corda__h2020::579dc43e7e9eb3b90e8681f30c1c73ff - - - Intelligent Mobility - - 920034 - UKRI - ukri________::b001f3cdda635e29c3a7061205e2c0ee - - - Future Transport Systems - Site Integrated Energy Storage - - 700381 - UKRI - ukri________::cab055e0b1a5fa624d77e0adceb6514a - - - Plug In Electric Vehicles (PEV) - - 900144 - UKRI - ukri________::fc95f3ee2b6f474d92ec26279b13e280 - - - Integration of intermodal water transport systems in european transport networks - - 135-1352586-2588 - MZOS - irb_hr______::87a98a252f7a81faed78948d45767e1f - - - Our transport future - assessing the ongoing role of biofuels in the Australian transport sector - - LS0700006 - ARC - arc_________::de0d7495244bc6260c06c9d11eb435bc - - - Future Resilient Transport Networks - FUTURENET - - EP/G060894/1 - UKRI - ukri________::1b768a75b60b70952078a597eca507e1 - - - Network of European – Asian Rail Research capacities - NEAR2 - 314254 - EC - corda_______::f0c4c4a0307df219ee59dafb097abb1e - - - Domain-driven information, quality assurance and interoperability for road transport systems - - LP110100724 - ARC - arc_________::eedbc1282281aaf93bb81972a82d587a - - - Optimising the design and implementation of public transport priority initiatives - - LP100100159 - ARC - arc_________::43edadebe3fb4a71fe1837e2ee784eeb - - - Development of an international knowledgebase on urban transport policy instruments - - LX0211677 - ARC - arc_________::451f8bae3720570f515a766badd01f09 - - - Developing a European Transport Research Alliance - DETRA - 266051 - EC - corda_______::fc5e68947ef3c06e3625b6de99897a18 - - - Synthèse partielle: Module E 'Gestion du système de transport' PNR 41: Transport et environnement - Interactions Suisse - Europe - - 4041-055111 - SNSF - snsf________::e724c1ac2878dd102d429bc13f591334 - - - Foot Transport for a Smart Mobility - FOOT TRANSPORT - 826831 - EC - corda__h2020::c15c2a32798a2dd0ad180c4017f86268 - - - Evaluating processes and outcomes of age-friendly standards: the case study of public transport. - - LP0453909 - ARC - arc_________::233bcd4201bfdaa749983bcf3b71d8d0 - - - European Transport Research Area International cooperation activities - EUTRAIN - 285305 - EC - corda_______::3b177971eede027531879909803278a9 - - - Developing a European Transport Research Alliance - DETRA - 266051 - EC - corda_______::fc5e68947ef3c06e3625b6de99897a18 - - - SHLOW – ‘Show Me How Slow’: Mobilising Evidence from Transport Research into Speed - SHLOW - 213292 - EC - corda_______::3aa159798d9d16be922548ce296ac60b - - - Irish Transport Research Network-Academic Industrial Workshop-energy and Transport - - 11/CW/E1918 - SFI - sfi_________::360f7426cd0e8981e0bdcb187a2c3af6 - - - The Transport Research Arena 2020 in Helsinki - TRA2020 - 800995 - EC - corda__h2020::412afc3901061cd4389224fd1643a709 - - - Heightening the profile of UK Transport Research at the 13th International Congress on Intelligent Transport Systems - - EP/E016537/1 - UKRI - ukri________::d2e5dc6b401de161cd538331fec76569 - - - Strategic Risk Assessment and Contingency Planning in Interconnected Transport Networks - STAR-TRANS - 225594 - EC - corda_______::6addc8dc2ae8c08c9bb61194acdaf272 - - - Transport Research Arena 2008 - TRA2008 - 213131 - EC - corda_______::6fcd4612ebf303874e09015d35d7b31a - - - Assessment Methodologies for ICT in multimodal transport from User Behaviour to CO2 reduction - AMITRAN - 287551 - EC - corda_______::1faf234e23a17ebaa3ca03a007da1e6c - - - Collective Innovation for Public Transport in European Cities - CIPTEC - 636412 - EC - corda__h2020::4d2f5c5b2e6ef6223dbd590e01f6b97a - - - Models for Optimising Dynamic Urban Mobility - MODUM - 288205 - EC - corda_______::699a3b4b395a3b3735c66676242d537a - - - CAREER: Smart Mobility Services: Operations and Policy - - 1541486 - NSF - nsf_________::e0408f60562e317fd01f90c902ca50ba - - - Powering Urban Smart Mobility with Data Analytics (PUBLIC) - - 104316 - UKRI - ukri________::d63dc56050fefaa549c2c5dadf1d21df - - - New perspectives on daily urban mobility: Harnessing the potential of Smart Card Travel data - - 2092249 - UKRI - ukri________::e1871ab70a5688b2bac71a78cec5161c - - - SMART MOBILITY APPLICATION TO IMPROVE TRAFFIC MANAGEMENT AND PLANNING - SMApp - 774024 - EC - corda__h2020::d1d6721a00504437fd9eb888d1ca6fc4 - - - MobiPulse - Big Data Driven Optimisation of Mobility and Smart Advertisement in the City - - 2018-EXPLORE-22 - INNOVIRIS - innoviris___::b07839096abc0160f0fda414bb5023d3 - - - Sustainable Mobility and Robust Transportation - SMART - 630690 - EC - corda_______::7b3f35b6359da652f73c8bd4828a51a7 - - - I-Corps: Meeting Point: Eco Smart Mobility Solutions - - 1263481 - NSF - nsf_________::76d011b8eb60224c22b4018e54e9a4f7 - - - BusUp: Multi-platform On-demand Crowdsourced Bus Transportation for Smart City Mobility - BUSUP - 757004 - EC - corda__h2020::c2d7355b01b1c96c38e0b32cf5c6a2d6 - - - UNDERstanding Indian Urban Governance REFORM: A comparative analysis of the Smart City Mission reforms and their impact on sustainable urban mobility - - ES/R006741/1 - UKRI - ukri________::b03a3d078351e5d02651d31a897d6d32 - - - SMART TOOL TO PROTECT PUBLIC TRANSPORT REVENUES, ASSETS, PASSENGERS AND MOBILITY - TRAINSFARE - 767807 - EC - corda__h2020::2ef7136fadcc40c83666070e35d9ca98 - - - NeTS: JUNO2: Collaborative Research: STEAM: Secure and Trustworthy Framework for Integrated Energy and Mobility in Smart Connected Communities - - 1818901 - NSF - nsf_________::870e3bc53e50f5d94b1fc5c1eeffba8b - - - MIDAS — Mobility Data Analytics for Smart cities - - 2017-CONNECT TEAM-UP-26 - INNOVIRIS - innoviris___::f66180856a2f7d017a408f9221240cec - - - NeTS: JUNO2: Collaborative Research: STEAM: Secure and Trustworthy Framework for Integrated Energy and Mobility in Smart Connected Communities - - 1818942 - NSF - nsf_________::b98eb0759690de3df82f1a4607c7f1e8 - - - Grid Economics, Planning and Business Models for Smart Electric Mobility - - EP/L001039/1 - UKRI - ukri________::85a30ae75b2482f2e0b1ccf67a1de01e - - - SMART MOBILITY IN SMART CITY - MOBINCITY - 314328 - EC - corda_______::9007c969f15c68a0b83db9dd4ac9a797 - - - Personal Transport Advisor: an integrated platform of mobility patterns for Smart Cities to enable demand-adaptive transportation systems - PETRA - 609042 - EC - corda_______::495511255a2aaee437f2ceca3f53c97a - - - Smart Transport Applications Designed for large events with Impacts on Urban Mobility - STADIUM - 234127 - EC - corda_______::a1a1671be317468de4a99895b481c5dc - - - Renewable Mobility Services in Smart Cities - MOVESMART - 609026 - EC - corda_______::05a8dda7c63a171c7801b9303a227e58 - - - SMart mobILity at the European land borders - SMILE - 740931 - EC - corda__h2020::89e5e3d451999fef0fbae5d576d2f3f9 - - - European Smart Mobility Resource Manager - MYWAY - 609023 - EC - corda_______::d7e3a93691a4fd52f57d2413202472e3 - - - Architecture for EurOpean Logistics Information eXchange - AEOLIX - 690797 - EC - corda__h2020::48e4a6f7dcbe6d63cedff2909182aad3 - - - Transportation Engineering, Transportation Planning, Disaggreate Travel Behavior Analysis, Land Use, Urban Facilities, Surveying Computer Application in Transportation, Discrete Choice Analysis, Transportation Practices I and II, Urban Economics - - PIAK2--104591 - SNSF - snsf________::dee435b904463bd0829a5abe854f073c - - - MISC - Massive Information Scavenging with Intelligent Transportation Systems - MIT-Pt/TS-ITS/0059/2008 - 83944 - FCT - fct_________::d010086434342f940d5393af91085cc5 - - - ENVIRONM. MANAGEMENT SYSTEMS FOR TRANSPORTATION: APPLICATION OF AN INTEGRATED LAND USE-TRANSPORTATION MODEL - SFRH/BD/25240/2005 - SFRH/BD/25240/2005 - FCT - fct_________::495b1542ec78e9fcca28a8c36501f4a8 - - - Capturing Uncertainty in Biofuels for Transportation. Resolving Environmental Performance and Enabling Improved Use - MIT/SET/0014/2009 - 110125 - FCT - fct_________::43712d2b517f556ae18f936f1fc195f0 - - - Japan STA Program: Research and Design Methods of Highway Bridges - - 9102326 - NSF - nsf_________::b821afd0f71610745fee4e30b1c7bd54 - - - StableCargo - Cargo stability analysis in container transportation: a hybrid optimization - heuristics framework - PTDC/SEN-TRA/121715/2010 - 121715 - FCT - fct_________::bb604f3417812f7e9035c6b79ca13719 - - - Public Transportation - Accessibility for All - PUBTRANS4ALL - 233701 - EC - corda_______::b953c7f559777e37efe9c707d53a4420 - - - Transportation planning a design challenge? - - 2300135491 - NWO - nwo_________::427afe8d64e7aa53ee5cacca57e5fd2b - - - Economics of Urban Transportation - - 68S1811 - NSF - nsf_________::62e52b0d07675f16bf524591d1b4d7a1 - - - Indicator Monitoring for a new railway PAradigm in seamlessly integrated Cross modalTransport chains – Phase 2 - IMPACT-2 - 777513 - EC - corda__h2020::9a93e619993245444ae4b29c888506ef - - - RESEARCH INITIATION - ENERGY CONSUMPTION IN URBAN TRANSPORTATION NETWORKS - - 7510311 - NSF - nsf_________::eee73d8b2f3e2dee0499cd6e0bd80eb2 - - - Autonomic Transportation Management - - 751185 - UKRI - ukri________::6aaec62d4cfd60564d67e66fdfc5c03f - - - Conference on Urban Transportation Analysis - - 65E7336 - NSF - nsf_________::1b58c27d913f1e684322a9b9213eb13f - - - Butafuel- Advanced Biofuels for Transportation - - 200047 - UKRI - ukri________::cf07ab714049cd7c234dd0db4b6b0214 - - - APPLICATIONS OF MATHEMATICS TO TRANSPORTATION STUDIES - - 7353317 - NSF - nsf_________::c7825a8dc2a0f6a8de0e5019b33d22c1 - - - CHICAGO URBAN TRANSIT DISTRICT UTILITY TUNNEL STUDY - - 7467512 - NSF - nsf_________::8de27291a61680af2ff0ce9ee53fe3c0 - - - APPLICATIONS OF MATHEMATICS TO TRANSPORTATION STUDIES - - 7138548 - NSF - nsf_________::12e6a9ebf354fe33c258f8e24cbb8a18 - - - URBAN TRANSPORTATION LABORATORY - - 7142277 - NSF - nsf_________::bbdfeca8da9eefc2ea96528fc14f9461 - - - Applications of Mathematics to Transportation Studies - - 6929595 - NSF - nsf_________::d5bd91e158e02cafdeecd7fc41e0530d - - - Conference on Urban Transportation Analysis - - 64E3205 - NSF - nsf_________::bc47c33878de1feb50626ed32d64ccce - - - Applications of Mathematics to Transportation Studies - - 67P6459 - NSF - nsf_________::163406648d43bede89599458189ad47d - - - Metropolitan Transportation Analysis - - 640S409 - NSF - nsf_________::62051cf1571c2e0d444714377725d9bd - - - SHYFT- Integrated Transportation Portal - - 133322 - UKRI - ukri________::5e4dcf1ef3e9029459a667d09cd7fe59 - - - BASIC TRANSPORTATION RESEARCH STUDIES - - 7467829 - NSF - nsf_________::1bd38e1bc4cf5ce9fb7db93cf9fdbb70 - - - Summer Institute in Transportation Engineering - - 65E7265 - NSF - nsf_________::51f357977a1ef3fb7f03a20d60611df0 - - - SUPPORT SYMPOSIUM ON TRANSPORTATION AND THE PROSPECTS FOR IMPROVED EFFICIENCY - - 7355908 - NSF - nsf_________::c78bb44c7ab8fb754c59e212a613a1fc - - - FIFTH INTERNATIONAL SYMPOSIUM ON THE THEORY OF TRAFFIC FLOW AND TRANSPORTATION - - 7138540 - NSF - nsf_________::c795696e28c4a8136f237aca85183900 - - - Strategic and Operational Risk Management for Wintertime Maritime Transportation System - - 291683 - AKA - aka_________::b0955bea4002f32eddf80b1202b37fc7 - - - Urban Transportation Infrastructure and Weight - - 1F31NR016897-01 - NIH - nih_________::aab8a0217d27b54fc77ec098f7a200e1 - - - Basic Research on Environmentally-protective Hub Location and Network Formation in International Air and Marine Transportation - - 2300139342 - NWO - nwo_________::9ad47c0e17290b91bc3a4950855e6b7b - - - Urban Transportation Infrastructure and Weight - - 5F31NR016897-02 - NIH - nih_________::ea143f3a3cbd43a729cfe270fb7d0e2a - - - Reliability and Durability of Machines and Mechanisms used for Oil and Gas Transportation in Black Sea Region - - 111M799 - TUBITAK - tubitakf____::77c0a1a01c97b20f9559d2a27b958041 - - - Transportation data acquisition by means of ITC-derived 3D modelling - - 211963 - AKA - aka_________::fd5138a30951622a2e38520d8860e732 - - - IT FOR INTELLIGENT TRANSPORTATION SYSTEMS - SFRH/BD/51564/2011 - SFRH/BD/51564/2011 - FCT - fct_________::b308c1a19e00a85d890f14d4828a1298 - - - Breakthrough in Energy Storage for Transportation (BEST) - - 101141 - UKRI - ukri________::08f1cb8af02003389707b943e9982729 - - - Transportation data acquisition by means of ITC-derived 3D modelling - - 211962 - AKA - aka_________::bc969dc0831e4ae18d26b008478da9a7 - - - Computational Intelligence Techniques in Transportation and Communication Planning and Traffic Control - - 36002 - MESTD - mestd_______::21f5b7b39e743f988897e59db5359949 - - - Real-time matching of supply and demand for sustainable individual passenger transportation: dynamic ride-sharing - - 2300154099 - NWO - nwo_________::b273b8d717e8a6eff8cac99808dfd6db - - - Strategic and Operational Risk Management for Wintertime Maritime Transportation System - - 291700 - AKA - aka_________::85dbe6152a9ce59f47051d54110ee2a1 - - - European Transportation and Logistics - - RES-073-27-0018 - UKRI - ukri________::b1d375de521b76409410a3543bdcb44d - - - Strategic and Operational Risk Management for Wintertime Maritime Transportation System (STORMWINDS) - - 291510 - AKA - aka_________::bdd7ab7ed7238afaba90c77ed2ab5546 - - - Transportation data acquisition by means of ITC-derived 3D modelling - - 211964 - AKA - aka_________::a0817c447886adaba4c3bd19ae863270 - - - Transportation data acquisition by means of ITC-derived 3D modelling - - 211961 - AKA - aka_________::437ee2e3d4f3c594c5b5208ebf262305 - - - Development of rail as future carrier of transportation load - - 135-1352339-2346 - MZOS - irb_hr______::062a3a5569371e1bb2e4bf6d6b25e100 - - - Eco-impact parameters on infrastructure and transportation systems development - - 135-1352339-2349 - MZOS - irb_hr______::651547e747dc858461fc155d6759d2b3 - - - New technologies in intelligent transportation systems ‚Äì implementation in urban and suburban settings - - 36005 - MESTD - mestd_______::8ffbcd62cdf41da17fd1d32fa3ba9a28 - - - Strategic and Operational Risk Management for Wintertime Maritime Transportation System - - 291749 - AKA - aka_________::e0791da1dbf5196b5c40c43d1d40c421 - - - 17th International Symposium on Transportation and Traffic Theory - - EP/D037506/1 - UKRI - ukri________::8288ef8dd083dd19debc1bc63f31a3eb - - - RESEARCH INITIATION SECONDARY SUSPENSIONS FOR HIGH SPEED GROUND TRANSPORTATION VEHICLES - - 7464387 - NSF - nsf_________::3f7082805936e50bcbed05e11b8e3014 - - - Intelligent City Transportation - Infrastructure (ICT-i) - - 130748 - UKRI - ukri________::d13aea15906e177c09575343e1177b33 - - - The Portuguese transportation network: an intermodal perspective (1850-1950) - POCTI/HAR/33864/2000 - 33864 - FCT - fct_________::a890e973e0be40ad566636b229ded3c8 - - - International Coordination for implementation of innovative and efficient urban mobility solutions - VIAJEO PLUS - 605580 - EC - corda_______::7b0944875b96c160e8aedbfb7de2aae6 - - - RESEARCH INITIATION - ADAPTIVE DIGITAL PROCESSING TECHNIQUES FOR HIGHWAY TRANSPORTATION SYSTEMS - - 7246892 - NSF - nsf_________::ba4c578d366ee6472af1f038e783d808 - - - Joint Chinese-Dutch Seminar on Transportation Management and Travel Behaviour for Urban Emergencies: Past, Present, and Future Research, in China - - 2300183145 - NWO - nwo_________::2c9545c61276cbb1d9085cd0522e2a31 - - - Enhanced Efficiency and Safety in the Handing of Palletised Products for Transportation in Containers (SafeLoad) - - 700527 - UKRI - ukri________::c73bd2e550f980166690487b9a0470f4 - - - Sustainability and Resilience of Transportation Infrastructure in African Countries - - EP/P029671/1 - UKRI - ukri________::a702abbc9a86ccc40fcb6e81ec860c7f - - - FEAT - Fair and Efficient Allocatin of Transportation - - P 27858 - FWF - fwf_________::e1601c3acbd9d9dc806a22677a66b4e2 - - - Domain-driven information, quality assurance and interoperability for road transport systems - - LP110100724 - ARC - arc_________::eedbc1282281aaf93bb81972a82d587a - - - Effective and COordinated ROAD infrastructure Safety operations - ECOROADS - 652821 - EC - corda__h2020::44be9f9f8d5732e768452b8a12508bcf - - - Ubiquitous Data Mining and Situation-Awareness for Improving Road Safety - - LP0560865 - ARC - arc_________::e20b763acf6d4ec38ed20c17704d56b5 - - - Enabling low greenhouse gas emissions from road vehicles through the proper use of alternative fuels - - FT0991117 - ARC - arc_________::3b2250a9000171b87f5b030874788423 - - - Intelligent Transport and Vehicle Systems Research Laboratory - - LE0233830 - ARC - arc_________::77c1292804103c97009663069f7af8c4 - - - Innovation in the road freight transportation chain facilitating sustainability and low cost: A socio-technical perspective on work and development of road freight transport markets. - InnoMarket - 655227 - EC - corda__h2020::29f414b717279b4c131c29fc36608af5 - - - Software development and national database for strategic management and development of transportation means and infrastructure in road, rail, air and inland waterways transport using the European transport network models - - 36027 - MESTD - mestd_______::59b8a68f5518805ff14961c896caddae - - - Future of Surface Road Transport European Resarch - FOSTER-ROAD - 605339 - EC - corda_______::62f2ccd760b3ea8e6d9e5091e1e5ab61 - - - Strengthening road transport research cooperation between Europe and emerging international markets II - SIMBA II - 218567 - EC - corda_______::46163491386a72d650ac499f49dfcb27 - - - Support Action for Implementation of ERTRAC's Road Transport Research Priorities - SAFIER - 234161 - EC - corda_______::6fb56e8f31470b094d8ed0b25931bf66 - - - Priorities for Road Safety Research in Europe - PROS - 314427 - EC - corda_______::e43e796bbbbf6f847d77e4c93717f5ca - - - European Transport Research Area International cooperation activities - EUTRAIN - 285305 - EC - corda_______::3b177971eede027531879909803278a9 - - - Centre for Sustainable Road Freight Transport - - EP/K00915X/1 - UKRI - ukri________::6da1d43ef7b3230fce6455b533d90b0e - - - Innovative urban traffic congestion solutions: optimising road space using networks of multi-class priority lanes - - DP120102392 - ARC - arc_________::d9db036b47ec37a30c71a344ecd97d9b - - - Public transport subsidies, road congestion and strikes: evidence from Rome - - IZK0Z1_166955 - SNSF - snsf________::b03c73e8112b7b0bdedd17c6b34155e6 - - - Automation and INtelligence solutions for Automated Road trAnsport systems - AINARA - 666736 - EC - corda__h2020::82046e26b49ba794cc4a1ab9e4b21584 - - - A unique driver assessment tool to improve four wheel drive and sedan driving competencies - - LP0669606 - ARC - arc_________::7c21690de9bd80b5f93eb04833a5c2ad - - - Intelligent vehicles and road infrastructure (IVRI) - - SR0354488 - ARC - arc_________::8d8efb4e63c105a822e8f7c1ea549954 - - - Fleet governance in road transport - - IZK0Z1_147461 - SNSF - snsf________::ba93ad87e6e8232a4f7d856effb19059 - - - Integrated Spatio-Temporal Data Mining for Quantitative Assessment of Road Network Performance - - EP/G023212/1 - UKRI - ukri________::8ee2e724fa735b6b4d4e894525c87bec - - - Assessing the full impacts of high efficiency heavy vehicles in urban traffic networks using new analytical tools. - - LP0233238 - ARC - arc_________::de3bc151a2b43cd2e5f99ebe2d99e76e - - - HARMONISED EUROPEAN SOLUTIONS FOR TESTING AUTOMATED ROAD TRANSPORT - HEADSTART - 824309 - EC - corda__h2020::d1b2341ec2a363ceb3bd0ed83d3c8d0f - - - Big data transport models: The example of road pricing - - 407540_167189 - SNSF - snsf________::a43dac958521cdbb188b7a1da3e6e064 - - - ICT Infrastructure for Connected and Automated Road Transport - ICT4CART - 768953 - EC - corda__h2020::e6fefe91cd6c922d81bac7c1a612479d - - - Assessment Methodologies for ICT in multimodal transport from User Behaviour to CO2 reduction - AMITRAN - 287551 - EC - corda_______::1faf234e23a17ebaa3ca03a007da1e6c - - - Improving International Cooperation and R&D Road Infrastructure Strategy for Ukraine - INCRIS - 294960 - EC - corda_______::7f89d6b6e10acb6e9d79dba8800f1661 - - - Centre for Sustainable Road Freight 2018-2023 - - EP/R035199/1 - UKRI - ukri________::8619470a009314bc3c2359eb9b5d7dbd - - - Promoting real life Observations for Gaining Understanding of road behaviour in Europe - PROLOGUE - 233597 - EC - corda_______::d843c5d8d3cb72be980a650d94b3df11 - - - Energy Efficient Vehicles for Road Transport - EE-VERT - 218598 - EC - corda_______::72a626deb2b2b56d10f76e7aff57fe07 - - - Innovative concepts for smart road restraint systems to provide greater safety for vulnerable road users - SMART RRS - 218741 - EC - corda_______::63161b2f108b20ef37f540e0d0814505 - - - Road Map for Radical innovations in European Transport Services - International cooperation aspects - ROADIDEAINCO - 248402 - EC - corda_______::c35fa237a64bfb61acd2623abd2a9061 - - - Smart Transport Applications Designed for large events with Impacts on Urban Mobility - STADIUM - 234127 - EC - corda_______::a1a1671be317468de4a99895b481c5dc - - - Support Procurements for Innovative transport and mobility solutions in City Environment - SPICE - 723994 - EC - corda__h2020::52d6d6a127430c0f314a261af40d0019 - - - Strategic Risk Assessment and Contingency Planning in Interconnected Transport Networks - STAR-TRANS - 225594 - EC - corda_______::6addc8dc2ae8c08c9bb61194acdaf272 - - - Enhanced Road Safety by integrating Egnos-Galileo data with on-board Control system - ERSEC - 247955 - EC - corda_______::3beed4007c74991a8d142b8629fe8416 - - - Autonomous emergency manoeuvring and movement monitoring for road transport security - TransSec - 776355 - EC - corda__h2020::b110eddba677b3581b09879b8c4691f8 - - - Cooperative Connected Intelligent Vehicles for Safe and Efficient Road Transport - COSAFE - 824019 - EC - corda__h2020::f39d6467e44b20fa1ea0fb77e09ac3c2 - - - Future Research, Advanced Development and Implementation Activities for Road Transport - FUTURE-RADAR - 723970 - EC - corda__h2020::d64fd2a23b7a63d5b96b5a2605b4cd97 - - - Support Action for a Transport ICT European large scale action - SATIE - 287921 - EC - corda_______::4e123ae05620f011563fe8690c72dc80 - - - Intelligent Car Support - ICAR SUPPORT - 248367 - EC - corda_______::9dc4e4700a5ef80d8d1da505101dba18 - - - Tomorrow's Road Infrastructure Monitoring and Management - TRIMM - 285119 - EC - corda_______::8ec928259ea7a9fa167e56b5d95ccf1b - - - Support action for Vehicle and Road Automation network - VRA - 610737 - EC - corda_______::d5ca0ce213e9aeb3bff0fb4e3e23288a - - - Biofuels from WASTE TO ROAD transport - WASTE2ROAD - 818120 - EC - corda__h2020::a9270e65fde82c8d0ea713a408feb44d - - - Coordination of Automated Road Transport Deployment for Europe - CARTRE - 724086 - EC - corda__h2020::25d96569e95e4656266c12464eb971d3 - - - Multi-modal Optimisation for Road-space in Europe - MORE - 769276 - EC - corda__h2020::009b6aac6639b92ea458edecd32a2b2e - - - International Demonstrations of Platform for Transport Planning and Travel Information - VIAJEO - 233745 - EC - corda_______::a43784a0716ed6c8ffd90bb7ec0b28bd - - - European e-freight capabilities for co-modal transport - E-FREIGHT - 233758 - EC - corda_______::f95693f419d38826157248eac0f74346 - - - Safe and COnnected aUtomation in road Transport - SCOUT - 713843 - EC - corda__h2020::2921227322b0c90e63a7f9aecb1f22c0 - - - Optimise Citizen Mobility and Freight Management in Urban Environments - OPTICITIES - 605727 - EC - corda_______::ca5b255e4b2ef49ff424e0019962591c - - - Development of a Decision Support System for increasing the Resilience of Transportation Infrastructure based on combined use of terrestrial and airborne sensors and advanced modelling tools - PANOPTIS - 769129 - EC - corda__h2020::a5dfce96d01fce0fdc5c6de063e712a9 - - - ' SENsing SKIN' for Monitoring-Based Maintenance of the Transport Infrastructure (SENSKIN) - SENSKIN - 635844 - EC - corda__h2020::620475dee848ae639d67663463ac37d2 - - - Aligning Research & Innovation for Connected and Automated Driving in Europe - ARCADE - 824251 - EC - corda__h2020::dda373613a71108de51240f1f7c4ca81 - - - Europe-Wide Platform for Cooperative Mobility Services - MOBINET - 318485 - EC - corda_______::b666ddba55fe7602af0d0b2952e31c9a - - - Satellite Application For Emergency handling, Traffic alerts, Road safety and Incident Prevention - SAFETRIP - 233976 - EC - corda_______::7dae84156ef0939d35accf0e083b9fda - - - Road Map for Radical Innovations in European Transport Services - ROADIDEA - 215455 - EC - corda_______::87a244bd2c0ded2d6da0489091e139d3 - - - Instant Mobility for Passengers and Goods - INSTANT MOBILITY - 284906 - EC - corda_______::fc8f5a8b70f6ea1ec4d4a657a5bd7efc - - - AUTOmated driving Progressed by Internet Of Things - AUTOPILOT - 731993 - EC - corda__h2020::51fefb07a29923a0ebe39eca369cc6b2 - - - Actions to stimulate participation of cooperation partners in surface transport research - CETRRA - 218730 - EC - corda_______::b55fd2cf5fb61ac8085b7aa2fb7f034b - - - Network of European – Asian Rail Research capacities - NEAR2 - 314254 - EC - corda_______::f0c4c4a0307df219ee59dafb097abb1e - - - European Railway Electromagnetic Compatibility - EUREMCO - 285082 - EC - corda_______::62bfc33a3dd29693b50d909e9e031d88 - - - COST-BENEFIT ANALYSIS OF COMPLEX TRANSPORT INFRASCTURES: DRAWBACKS AND IMPROVEMENTS IN THE CASE OF THE PORTUGUESE HIGSPEED RAILWAY PROJECT - SFRH/BD/51127/2010 - SFRH/BD/51127/2010 - FCT - fct_________::78b2fb1605a1e4a042bb3e5d553d84bb - - - Vertex switch – the foundation for a more sustainable and reliable railway transport system - VERT - 773705 - EC - corda__h2020::6ece77a5c05b08089253cecb0d801e4b - - - Evaluation of train driver work culture and environment for improving railway safety - - LP0989708 - ARC - arc_________::300eb5fae6cbc65a925d5b8fe1bf6a08 - - - Infrastructure Guidelines for Environmental Railway Performance - INFRAGUIDER - 218662 - EC - corda_______::674446a296bd757ea16a18082a6e5548 - - - Early warning decision support system for the management of underwater scour risk for road and railway bridges - - NE/R009090/1 - UKRI - ukri________::ca4c6079e160cda64881beaedf123d29 - - - Accessibility &amp; User Needs in Transport for Sustainable Urban Environments - AUNT-SUE - - EP/E041191/1 - UKRI - ukri________::74345fb9fcef79e878e0e77be099a00a - - - Accessibility &amp; User Needs in Transport for Sustainable Urban Environments - AUNT-SUE - - EP/E040764/1 - UKRI - ukri________::f3f2395ce8314f443161fae58e239055 - - - Accessibility &amp; User Needs in Transport for Sustainable Urban Environments - AUNT-SUE - - EP/E04025X/1 - UKRI - ukri________::b1a49f94e3fd6118de99dfec4d3c873e - - - A railway automatic track warning system based on distributed personal mobile terminals - ALARP - 234088 - EC - corda_______::2007cd14ee6d2521200e7f876f39575f - - - The sustainable freight railway: Designing the freight vehicle – track system for higher delivered tonnage with improved availability at reduced cost - SUSTRAIL - 265740 - EC - corda_______::1a969e8b28d85fa4973ef38a16090cbb - - - Augmented Usage of Track by Optimisation of Maintenance, Allocation and Inspection of railway Networks - AUTOMAIN - 265722 - EC - corda_______::436287fa2a5f55ef8ee9a8a0804fc84e - - - Indicator Monitoring for a new railway PAradigm in seamlessly integrated Cross modal Transport chains – Phase 1 - IMPACT-1 - 730816 - EC - corda__h2020::d614b0efa824de8d7d75531258e812db - - - Development of the Future Rail Freight System to Reduce the Occurrences and Impact of Derailment - D-RAIL - 285162 - EC - corda_______::ebc16db674680d849f119cf89ee999c5 - - - Galileo Localization for Railway Operation Innovation - GALOROI - 277698 - EC - corda_______::799e1c292d3af1bbcaa3db9d68faff62 - - - DEVELOPMENT OF A SMART FRAMEWORK BASED ON KNOWLEDGE TO SUPPORT INFRASTRUCTURE MAINTENANCE DECISIONS IN RAILWAY CORRIDORS - OPTIRAIL - 314031 - EC - corda_______::7816dcb74f4e798b9f87dfce67a47cab - - - Quiet Tracks for Sustainable Railway Infrastructures - QUIET-TRACK - 604891 - EC - corda_______::c9ff74e338a885b497b8c0c7b9ab0af1 - - - Future Of Surface Transport Research Rail - FOSTER RAIL - 605734 - EC - corda_______::2c90b0d2fc61bdebecd50ab3acf60ba3 - - - Automated and cost effective maintenance for railway - ACEM RAIL - 265954 - EC - corda_______::9d95d5c0a90562391a71fb0dea1b167f - - - Sustainable and intelligent management of energy for smarter railway systems in Europe: an integrated optimisation approach - MERLIN - 314125 - EC - corda_______::3115cb025c0fab81c5ebcc7d952bbdd3 - - - Public Transportation - Accessibility for All - PUBTRANS4ALL - 233701 - EC - corda_______::b953c7f559777e37efe9c707d53a4420 - - - The Railway-Industry Partnership for Integrated Security of Rail Transport - PROTECTRAIL - 242270 - EC - corda_______::b746f2e286e78629fb4639bb4c833520 - - - Reduction of Suicides and Trespasses on RAILway property - RESTRAIL - 285153 - EC - corda_______::6c2b91bb37082bd8caae7b74e9857357 - - - Simulation using Building Information Modeling Methodology of Multimodal, Multipurpose and Multiproduct Freight Railway Terminals Infrastructures. - INTERMODEL EU - 690658 - EC - corda__h2020::fdb126d1fe8dd7053ab8ba19b86c0bfb - - - Future proofing strategies FOr RESilient transport networks against Extreme Events - FORESEE - 769373 - EC - corda__h2020::ab9956b9b76ce2830cf735d925a9a02e - - - Innovative Intelligent Rail - IN2RAIL - 635900 - EC - corda__h2020::20fa49ef3b73c29980dc6464c9f849d9 - - - Increasing Capacity 4 Rail networks through enhanced infrastructure and optimised operations - CAPACITY4RAIL - 605650 - EC - corda_______::78449874abee06b376d4fee2beaa2ec7 - - - Clean waterborne transport in Europe - FLAGSHIPS - 826215 - EC - corda__h2020::df043effa0c2457d000653283103dbb7 - - - 1999 Marine Board General Support Cooperative Agreement - - 9901033 - NSF - nsf_________::a3355b9179d3c52316b4048baff4d7c2 - - - 1997 Marine Board General Support Cooperative Agreement - - 9712009 - NSF - nsf_________::6c8dd4810c8d2a42297857234334412c - - - 1996 Marine Board General Support Cooperative Agreement - - 9628312 - NSF - nsf_________::87c84a78419e33d4affc9996c594a5ac - - - 1998 Marine Board General Support Cooperative Agreement - - 9805535 - NSF - nsf_________::211cc619aa52eb745cacbac7130dccb0 - - - 1995 Marine Board General Support Cooperative Agreement - - 9504384 - NSF - nsf_________::299f66c5186b8825c5a3b55dbaf3e236 - - - RETROFITting ships with new technologies for improved overall environmental footprint - RETROFIT - 285420 - EC - corda_______::6a1d3d77d8580bfd7764c6c3b889d4e3 - - - Marine Board General Support and Undersea Vehicle Systems and National Needs - - 9418373 - NSF - nsf_________::148bad75fe3b2d114cafeb88ee50003b - - - An Operations Research Approach To Large-scale Modeling For Maritime Infrastructure Development - - 9414147 - NSF - nsf_________::6d555503a4ec61097d8d0624435ea5e3 - - - Surface-specific Moody diagram: A new paradigm to predict drag penalty of realistic rough surfaces with applications to maritime transport - - EP/P009875/1 - UKRI - ukri________::332979af668084b0da0c9329c5c460dd - - - Hydrogen generator for higher fuel efficiency and lower carbon emissions in maritime transport - H2MOVE - 761377 - EC - corda__h2020::7be21c32be172c3ff561908a05d3c756 - - - NOVel Iwt and MARitime transport concepts - NOVIMAR - 723009 - EC - corda__h2020::214b1efa072a9aaadffcf961655283a2 - - - Decarbonising the UK's Freight Transport - - EP/S032061/1 - UKRI - ukri________::9d4969a6b4f65fb0b283c22e1ddac76f - - - Real-time Fleet Performance Center (FPC) to optimize energy efficiency in Maritime Transport to reduce fuel consumption and harmful emissions - SEAHUB - 744716 - EC - corda__h2020::2e457ed090d15a0054fda74ffa1c5590 - - - Score board of competitiveness of European transport manufacturing industries - SCORE - 724112 - EC - corda__h2020::c1d3214b4db3f65c0b3e01deadff3972 - - - Navigational system for efficient maritime transport - NAVTRONIC - 234372 - EC - corda_______::39b9a8775f68bce01add32227807a9ba - - - Surface-specific Moody-diagrams: A new paradigm to predict drag penalty of realistic rough surfaces with applications to maritime transport - - EP/P009638/1 - UKRI - ukri________::51e81495573b8ea6c6fe99429f15313c - - - Modernisation of Vessels for Inland waterway freight Transport - MOVE IT! - 285405 - EC - corda_______::426394d2a914aff2c35a6b7509fdaaf1 - - - Virtual Press Office to improve EU Sustainable Surface Transport research media visibility on a national and regional level - PRESS4TRANSPORT - 234258 - EC - corda_______::68ebf04675682b888f5c0753bd13cfb7 - - - Research into effects on cognitive performance of maritime watch-keepers under different watch patterns, workloads & conditions, with reality usage of ships bridge, engine & cargo control simulators - HORIZON - 234000 - EC - corda_______::2d6f8eee3372b534ae345dbfb6c151fb - - - Greening of surface transport through an innovative and competitive CARGO-VESSEL Concept connecting marine and fluvial intermodal ports. - EU-CARGOXPRESS - 233925 - EC - corda_______::1ec9da02cac72c5c4816e27c5ff8eb43 - - - SAFETY OF WINTER NAVIGATION IN DYNAMIC ICE - SAFEWIN - 233884 - EC - corda_______::832ad561c35b4f5a94d4637ef1fab5b2 - - - Management of weather events in transport system - MOWE-IT - 314506 - EC - corda_______::edbcc8b2fbac82bcb9f808a38199c1c4 - - - Impact of Cultural aspects in the management of emergencies in public Transport - IMPACT - 653383 - EC - corda__h2020::574b807e18a671c3a1746ae0f5cd62fd - - - Transport: Advanced and Modular - TrAM - 769303 - EC - corda__h2020::b3bbb169b9b6f25c2f38fb7072a2c546 - - - Maritime Unmanned Navigation through Intelligence in Networks - MUNIN - 314286 - EC - corda_______::5ee0ee31510fe09d31613954119c5c12 - - - Targeted Advanced Research for Global Efficiency of Transportation Shipping - TARGETS - 266008 - EC - corda_______::bcbb39c10bc8db06913097cfabe1ec79 - - - ICT Infrastructure for Connected and Automated Road Transport - ICT4CART - 768953 - EC - corda__h2020::e6fefe91cd6c922d81bac7c1a612479d - - - MEdiating between Driver and Intelligent Automated Transport systems on Our Roads - MEDIATOR - 814735 - EC - corda__h2020::44c9410465c38624ba5eba73af4c636a - - - Electrified L-category Vehicles Integrated into Transport and Electricity Networks - ELVITEN - 769926 - EC - corda__h2020::f881ca9bd7ea092154cb75062ea9ce01 - - - RIS Services for Improving the Integration of Inland Waterway Transports into Intermodal Chains - RISING - 218589 - EC - corda_______::00cd1bc5dd90edd9c1cf7d7e08d8289a - - - Strengthening European Transport Research and Innovation Strategies - SETRIS - 653739 - EC - corda__h2020::36362444521989db30c5e81d9bb980e7 - - - European e-freight capabilities for co-modal transport - E-FREIGHT - 233758 - EC - corda_______::f95693f419d38826157248eac0f74346 - - - AN INTEGRATED MODEL OF BUS EMISSION IMPACTS AT AND AROUND BUS STATIONS AND BUSWAYS FOR TRANSPORT AND LAND USE PLANNING - - LP0347152 - ARC - arc_________::826cb0a2bb0676f36eb9ed58cc162528 - - - Air leakage control of air cavity vessels for maritime transport through hydrophobic coatings - - 2300182765 - NWO - nwo_________::8455273ad0c6436abf9b4384c5fbb378 - - - Behavioural responses to transport congestion: peak spreading and the more efficient usage of transport infrastructure - - LP0455634 - ARC - arc_________::6839230efec8bde6a528ceebc2662a38 - - - Future Seaplane Traffic - Transport Technologies for the Future - FUSETRA - 234052 - EC - corda_______::5103750b5ef0ce6f80c2892669f44f34 - - - International Air Transport and Operations Symposium 2012 - ATOS2012 - 314583 - EC - corda_______::e8d475f9346774ce13e6649ad365a0e8 - - - Searex - Sea-Air Transport - Physical Aspects of Sea-Air Exchange, Bubbles and Spray - - 7712436 - NSF - nsf_________::1645966138fd7a6ed27bd2a3cab48abd - - - Software development and national database for strategic management and development of transportation means and infrastructure in road, rail, air and inland waterways transport using the European transport network models - - 36027 - MESTD - mestd_______::59b8a68f5518805ff14961c896caddae - - - A support to sustainable development of the Republic of Serbia's air transport system - - 36033 - MESTD - mestd_______::a290c7b96bb914e661a0c8379077231f - - - Strategic Modelling of Air Transport Development - - 135-1352339-3045 - MZOS - irb_hr______::c75a164f1d6c69d767997eb1d2c5582c - - - Clean energy for transport Choices and the implications for air quality - - 104677 - UKRI - ukri________::24fa7460552740d4a2b89708584a1c79 - - - Aeronautics and air transport European Research Agenda - Promotion - AERA - PRO - 284875 - EC - corda_______::4040c5c69f9f8d326d5794b80936be92 - - - Innovation for a Sustainable Aviation in a Global Environment - AERODAYS2011 - 264602 - EC - corda_______::cd567b08b94d94ca4f438250890270fe - - - Aerodays 2015 - Aviation for Growth and Sustainability - AERODAYSUK2015 - 605512 - EC - corda_______::e59dee116b3cc2380023c266a000e6c5 - - - Future Seaplane Traffic - Transport Technologies for the Future - FUSETRA - 234052 - EC - corda_______::5103750b5ef0ce6f80c2892669f44f34 - - - SmartData: developing intelligent database system for communicating information to aviation and professional vehicle operators: towards safer transport industries - - LP0562407 - ARC - arc_________::e082846879765e1f0a8d3766166dcd57 - - - Smart Aircraft in Emergency Situations - SMAES - 266172 - EC - corda_______::7eb9725952243c29fc7eb9b9e8613533 - - - Guidelines for cooperation of Latin American countries in European aeronautics and air transport research - COOPAIR-LA - 234321 - EC - corda_______::017988c950ee73f5d03ed250d245931b - - - Effects of Climate Change On the inland waterway and other transport NETworks - ECCONET - 233886 - EC - corda_______::3f9dff867b82d89467a3eb06ea56ee10 - - - Modernisation of Vessels for Inland waterway freight Transport - MOVE IT! - 285405 - EC - corda_______::426394d2a914aff2c35a6b7509fdaaf1 - - - RIS Services for Improving the Integration of Inland Waterway Transports into Intermodal Chains - RISING - 218589 - EC - corda_______::00cd1bc5dd90edd9c1cf7d7e08d8289a - - - Innovative Intermodal Urban Freight Transport Solution - - 710688 - UKRI - ukri________::3c6636dc2b127ce00470213165f5e207 - - - ELOFRET - Elements for the optimization of intermodal chains in freight transport - POCI/TRA/60585/2004 - 60585 - FCT - fct_________::c3ea3817e79b056f1c4ee2a65c05657b - - - Sustainable Freight. Legal and logistical impacts of the European intermodal transport chain project. - - 138980 - AKA - aka_________::1aea58a66200261ca62fbde2475ad56c - - - INTERMODAL FREIGHT TRANSPORT: THEORY AND MODELLING - SFRH/BPD/75122/2010 - SFRH/BPD/75122/2010 - FCT - fct_________::5c6a0f0762c3dc7646d2a3c6105c663a - - - Intelligent Transport System for Innovative Intermodal Freight Transport - TELLISYS - 314310 - EC - corda_______::a5118e00d72075804b9e2b3402b4f43b - - - Intelligent MegaSwapBoxes for Advanced Intermodal Freight Transport - TELLIBOX - 217856 - EC - corda_______::d40d92c6302344323fbe0952a952f089 - - - Best Practice Factory for Freight Transport - BESTFACT - 265710 - EC - corda_______::e18ffcf38262517fe43ab4469ea4acd5 - - - Transit via Innovative Gateway concepts solving European-Intermodal Rail needs - TIGER - 234065 - EC - corda_______::967f738bac5a6722a8c9d4e3c9333927 - - - TRANSITION: Transport safety in automated vehicles - - EP/P017517/1 - UKRI - ukri________::35f6ff36b3e03441f420894810ed0e54 - - - Automated Connected and Electric Urban Transport Solutions (ACE UTS) - - 102884 - UKRI - ukri________::2d0bee1325dffbe41415a3f55fdbf5f2 - - - Automation and INtelligence solutions for Automated Road trAnsport systems - AINARA - 666736 - EC - corda__h2020::82046e26b49ba794cc4a1ab9e4b21584 - - - Cooperative Mobility Systems and Services for Energy Efficiency - ECOMOVE - 247908 - EC - corda_______::59d4edf8ef53ff34f973649869c98481 - - - Augmented Approaches to Land 2 - AAL2 - 783112 - EC - corda__h2020::384617cfc2f392196aae1b976ef42f62 - - - ERA-NET Cofund Electric Mobility Europe - EMEurope - 723977 - EC - corda__h2020::13043cb34b5262349e3f40b8e60659a5 - - - EXPAND - enhancing co-creation in JPI Urban Europe through widening Member State and stakeholder participation - EXPAND - 726744 - EC - corda__h2020::b1972e28d0253098bfb4d1d183da4e90 - - - Mobility Innovations for a New Dawn in Sustainable (European) Transport Systems - MIND-SETS - 640401 - EC - corda__h2020::ae5ae34dc1e7a92008f259ea966c7d1f - - - Blueprints for Smart Cities: Developing the methodology for a coordinated approach to the integration of the water and waste sectors within the EIP Smart Cities and Communities - BlueSCities - 642354 - EC - corda__h2020::0d7cea60d4c6286d458d7bff6fca7992 - - - Congestion Reduction in Europe : Advancing Transport Efficiency (CREATE) - CREATE - 636573 - EC - corda__h2020::319da5ff0cb2a210b5557c528d1891ae - - - PORT-Cities: Integrating Sustainability - PORTIS - 690713 - EC - corda__h2020::fcbfdab85a38394f1101e35bcc63d6f2 - - - ERA-NET Cofund Electric Mobility Europe - EMEurope - 723977 - EC - corda__h2020::13043cb34b5262349e3f40b8e60659a5 - - - ERA-NET Smart Cities and Communities - ENSCC - 646453 - EC - corda__h2020::4068c27a3dc0bd994ef6a877700a6f7a - - - ERA-NET Cofund Smart Urban Futures - ENSUF - 693443 - EC - corda__h2020::5dd01e5b43b2017e6e7287aade800b74 - - - Eranet Sustainable Urbanisation Global Initiative - EN-SUGI - 730254 - EC - corda__h2020::e96588738175eddad77ccf2931ee8552 - - - ERA-Net Smart Grids Plus: support deep knowledge sharing between regional and European Smart Grids initiatives - ERANet SmartGridPlus - 646039 - EC - corda__h2020::4857ef9ed526d6ccc06dd86f44e2b4f7 - - - The one-stop-shop for urban and regional mobility - MSH - 789842 - EC - corda__h2020::17f432ea7aae7ee646d4f7d4be15cdbe - - - Public participation and urban transport innovation. The European light rail renaissance and user involvement, city revitalization, urban mobility agenda. - PUBLIC PUT IN MOTION - 252489 - EC - corda_______::63ca8df9e8ce4c04a7c8229bc04f7cf6 - - - Modelling Urban Mobility in City-Scale Ubiquitous Systems - URBANMOB - 322138 - EC - corda_______::3165714b3aa19783c75c5e667dbaf275 - - - Sustainable urban mobiliTY: ELectric double decker bUS - STYLUS - 774784 - EC - corda__h2020::feeecbb052674df25c0bbde6d089be61 - - - Changing the world of urban mobility thanks to Computer Vision and Artificial Intelligence - UrbanDynamics - 855633 - EC - corda__h2020::8614a82f2578561601c3be64ebc32ee7 - - - A lightweight, fast charging, EV platform to be utilised on Car Share and Urban Mobility Systems - NedraEV - 719094 - EC - corda__h2020::901ee5d74519118949c1d2f67dc4c28a - - - Actions demonstrate how Park4SUMP will lead to achieve sustainable transport in urban areas by strategically integrating innovative parking management solutions into SUMP policies. - Park4SUMP - 769072 - EC - corda__h2020::63a8e87896b020481a18938db617fe58 - - - For cognitively-impaired or visually-impaired persons suffering from spatial disorientation, a smartphone-based navigation aid that is both reliable and safe for urban pedestrian mobility. - ANGEO2 - 697678 - EC - corda__h2020::19cd95c6a2479793b993d56f3140579e - - - Optimised ITS-based Tools for Intelligent Urban Mobility - OPTIMUM - 269309 - EC - corda_______::836ca155fac5aca4d2c9941a4524454c - - - Advancing Sustainable Urban Transport in an Enlarged Europe through CIVITAS - VANGUARD - 218893 - EC - corda_______::592c064abd49574fdc00edf333c630f9 - - - European Programme for Accelerating the Take up of Sustainable Urban Mobility Plans - SUMPs-Up - 690669 - EC - corda__h2020::7d0a5769a29221c329300bae75a3cbc9 - - - Modelling Emerging Transport Solutions for Urban Mobility - MOMENTUM - 815069 - EC - corda__h2020::b53d1ac5b4728538a9343612225a0609 - - - Galileo-Enhanced MOTIT: an electric scooter sharing service for sustainable urban mobility - G MOTIT - 641544 - EC - corda__h2020::ee97a8f456e5fafc7d4992e14662be87 - - - Prosperity through innovation and promotion of Sustainable Urban Mobility Plans - Prosperity - 690636 - EC - corda__h2020::f56c652d7e099ec052e8b58cc5d42b89 - - - New forms of sustainable urban transport and mobility - 2MOVE2 - 296036 - EC - corda_______::b4426008904f7f281d2c961397177748 - - - Mobility Urban Values - MUV - 723521 - EC - corda__h2020::86763ecba1159e37f4966085c1378484 - - - DEveloping the MObility CRedits Integrated platform enabling travellers to improve urban TranspOrt Sustainability - DEMOCRITOS - 233744 - EC - corda_______::517236827b6ed6253e5c1e3d3f4428c1 - - - Sustainable Plan for Integrated Development through the European Rail network – Projecting Logistics & mobility for Urban Spatial design evolution - SPIDER PLUS - 314090 - EC - corda_______::386fd31df95cc7ef7fb22ebfda95fa9e - - - Innovative solutions for sustainable mobility of people in suburban city districts and emission free freight logistics in urban centres. - CIVITAS ECCENTRIC - 690699 - EC - corda__h2020::c1992f80e455f71e6ea1fad92e5be30a - - - New approaches for community-driven sustainable mobility innovations at neighbourhood and urban district level - Cities-4-People - 723194 - EC - corda__h2020::bab4646d95a8c4e7260dfb946d4560c5 - - - Autonomous Vehicles to Evolve to a New Urban Experience - AVENUE - 769033 - EC - corda__h2020::5c940ee894437ecdef88cc81c2e57c52 - - - Furthering Less Congestion by creating Opportunities for more Walking and cycling - FLOW - 635998 - EC - corda__h2020::45923a6962501eaa160cfb15e184a4f0 - - - FREVUE VALIDATING FREIGHT ELECTRIC VEHICLES IN URBAN EUROPE - FREVUE - 321622 - EC - corda_______::0cb808e86544fc1474beaa92e975a1c7 - - - Governing Urban Diversity: Creating Social Cohesion, Social Mobility and Economic Performance in Today's Hyper-diversified Cities - DIVERCITIES - 319970 - EC - corda_______::153c395fbd0a43e5adc1df249a1fce9d - - - Big Data for Mobility Tracking Knowledge Extraction in Urban Areas - Track and Know - 780754 - EC - corda__h2020::86cd13524317176bbb87b0ba37a37b10 - - - Cross Border SESAR Trials for Enhanced Arrival Management - PJ25 XSTREAM - 734145 - EC - corda__h2020::6c8a69455ed2470defed6d96bc78bf08 - - - Shift2Rail IP4 enabling Mobility as a Service and seamless passenger experience - Shift2MaaS - 826252 - EC - corda__h2020::084a5c7bd70d031adff89e5b4347ddbe - - - ERRAC Road Map - ERRAC ROAD MAP - 234255 - EC - corda_______::4595155214ad563c28e284e0a84eb8a0 - - - Measuring, monitoring and data handling for railway assets; bridges, tunnels, tracks and safety systems - Assets4Rail - 826250 - EC - corda__h2020::3eb1192af7617708888c82c1af4eb17a - - - Infrastructure for the Future - infra4Dfuture - 824269 - EC - corda__h2020::519d02dc490ba2bdfc8c5f2cf9611d31 - - - Fostering the adoption of GALILEO for Mobility as a Service - GALILEO 4 Mobility - 776381 - EC - corda__h2020::70bbe3fb2315af54384a240361c31a57 - - - INtentify future Transport rEsearch NeeDs - INTEND - 769638 - EC - corda__h2020::a5aa37ac93ded49e521a9ff080d248ca - - - Transition Areas for Infrastructure-Assisted Driving - TransAID - 723390 - EC - corda__h2020::80581009321a35a478a4b98923aa58a0 - - - My TRAvel Companion - My-TRAC - 777640 - EC - corda__h2020::32ce22bd08dfa21d3b30cba2d2169c03 - - - Mobility as a Service in a multimodal European cross-border corridor - MyCorridor - 723384 - EC - corda__h2020::9dbb0db2afe5496ae001724fe647adcd - - - Safe and green Sensor Technologies for self-explaining and forgiving Road Interactive aPplications - SAFE STRIP - 723211 - EC - corda__h2020::184375349d44558044fd1a97af8c237e - - - RESilience management guidelines and Operationalization appLied to Urban Transport Environment - RESOLUTE - 653460 - EC - corda__h2020::0ce91b1d0d19bc065e360f6977ab56e7 - - - ACTivating InnoVative IoT smart living environments for AGEing well - ACTIVAGE - 732679 - EC - corda__h2020::cc66606d3a5ececf309e587e73ad65da - - - Skills and competences development of future transportation professionals at all levels - SKILLFUL - 723989 - EC - corda__h2020::92e0624732f7ef4e446a9318469a47d0 - - - Common Framework for a European Life Cycle based Asset Management Approach for transport infrastructure networks - AM4INFRA - 713793 - EC - corda__h2020::bdb5e3611f59051de87d099abe0f1123 - - - optimal fuel consumption with Predictive PowerTrain control and calibration for intelligent Truck - optiTruck - 713788 - EC - corda__h2020::b3c72c32e80b55bdae2fc287c9c05815 - - - Action Plan for the future of Mobility in Europe - MOBILITY4EU - 690732 - EC - corda__h2020::91cd8311d98a33c8790f6fedd18a9b16 - - - New cooperative business models and guidance for sustainable city logistics - NOVELOG - 636626 - EC - corda__h2020::d460c5dc4a5355a04b4dae9637589e40 - - - Electric Vehicle Charging Infrastructure for improved User Experience - eCharge4Drivers - 875131 - EC - corda__h2020::12b5375739fe068c5b628dc0b95bfe02 - - - European forum and oBsErvatory for OPEN science in transport - BE OPEN - 824323 - EC - corda__h2020::b8005be5ed1525e3f3d42a0ddf32b5b3 + + manager + <p>EGI is the federation of computing and storage resource providers united by a mission of delivering advanced computing and data analytics services for research and innovation.</p> + + https://documents.egi.eu/public/RetrieveFile?docid=2905&filename=EGI%20Logo%20-%20no%20background%201000px%20%281%29.png&version=2 + EGI : advanced computing for research + giuseppe.larocca@egi.eu + + egi + + + 1 + + 1.1 + + 1.1.1 + + + 1.1.2 + + + 1.1.3 + + + 1.1.99 + + + + 1.2 + + 1.2.1 + + + 1.2.2 + + + 1.2.3 + + + 1.2.4 + + + 1.2.5 + + + 1.2.6 + + + 1.2.7 + + + 1.2.8 + + + 1.2.9 + + + 1.2.10 + + + 1.2.11 + + + 1.2.12 + + + 1.2.13 + + + 1.2.14 + + + 1.2.15 + + + 1.2.99 + + + + 1.3 + + 1.3.1 + + + 1.3.2 + + + 1.3.3 + + + 1.3.4 + + + 1.3.5 + + + 1.3.6 + + + 1.3.99 + + + + 1.4 + + 1.4.1 + + + 1.4.2 + + + 1.4.3 + + + 1.4.4 + + + 1.4.5 + + + 1.4.6 + + + 1.4.7 + + + 1.4.8 + + + 1.4.9 + + + 1.4.10 + + + 1.4.11 + + + 1.4.12 + + + 1.4.99 + + + + 1.5 + + 1.5.1 + + + 1.5.2 + + + 1.5.3 + + + 1.5.4 + + + 1.5.5 + + + 1.5.6 + + + 1.5.7 + + + 1.5.8 + + + 1.5.9 + + + 1.5.10 + + + 1.5.11 + + + 1.5.12 + + + 1.5.13 + + + 1.5.14 + + + 1.5.15 + + + 1.5.16 + + + 1.5.17 + + + 1.5.18 + + + 1.5.19 + + + 1.5.20 + + + 1.5.21 + + + 1.5.22 + + + 1.5.23 + + + 1.5.24 + + + 1.5.25 + + + 1.5.26 + + + 1.5.27 + + + 1.5.28 + + + 1.5.29 + + + 1.5.99 + + + + 1.6 + + 1.6.1 + + + 1.6.2 + + + 1.6.3 + + + 1.6.4 + + + 1.6.5 + + + 1.6.6 + + + 1.6.7 + + + 1.6.8 + + + 1.6.9 + + + 1.6.10 + + + 1.6.11 + + + 1.6.12 + + + 1.6.13 + + + 1.6.14 + + + 1.6.15 + + + 1.6.16 + + + 1.6.17 + + + 1.6.18 + + + 1.6.19 + + + 1.6.20 + + + 1.6.21 + + + 1.6.22 + + + 1.6.23 + + + 1.6.24 + + + 1.6.25 + + + 1.6.26 + + + 1.6.99 + + + + 1.7 + + 1.7.1 + + + 1.7.2 + + + 1.7.3 + + + 1.7.4 + + + 1.7.5 + + + 1.7.6 + + + 1.7.7 + + + 1.7.8 + + + 1.7.9 + + + 1.7.10 + + + 1.7.99 + + + + + 2 + + 2.1 + + 2.1.1 + + + 2.1.2 + + + 2.1.3 + + + 2.1.4 + + + 2.1.5 + + + 2.1.99 + + + + 2.2 + + 2.2.1 + + + 2.2.2 + + + 2.2.3 + + + 2.2.4 + + + 2.2.99 + + + + 2.3 + + 2.3.1 + + + 2.3.2 + + + 2.3.3 + + + 2.3.4 + + + 2.3.5 + + + 2.3.99 + + + + 2.4 + + 2.4.1 + + + 2.4.2 + + + 2.4.99 + + + + 2.5 + + 2.5.1 + + + 2.5.2 + + + 2.5.99 + + + + 2.6 + + 2.6.1 + + + 2.6.2 + + + 2.6.3 + + + 2.6.4 + + + 2.6.5 + + + 2.6.99 + + + + 2.7 + + 2.7.1 + + + 2.7.2 + + + 2.7.99 + + + + 2.8 + + 2.8.1 + + + 2.8.2 + + + 2.8.3 + + + 2.8.4 + + + 2.8.5 + + + 2.8.6 + + + 2.8.7 + + + 2.8.8 + + + 2.8.99 + + + + 2.9 + + 2.9.1 + + + 2.9.2 + + + 2.9.99 + + + + 2.10 + + 2.10.1 + + + 2.10.2 + + + 2.10.3 + + + 2.10.4 + + + 2.10.5 + + + 2.10.6 + + + 2.10.7 + + + 2.10.8 + + + 2.10.99 + + + + 2.11 + + 2.11.1 + + + 2.11.2 + + + 2.11.99 + + + + + 3 + + 3.1 + + 3.1.1 + + + 3.1.2 + + + 3.1.3 + + + 3.1.4 + + + 3.1.5 + + + 3.1.6 + + + 3.1.7 + + + 3.1.8 + + + 3.1.9 + + + 3.1.99 + + + + 3.2 + + 3.2.1 + + + 3.2.2 + + + 3.2.3 + + + 3.2.4 + + + 3.2.5 + + + 3.2.6 + + + 3.2.7 + + + 3.2.8 + + + 3.2.9 + + + 3.2.10 + + + 3.2.11 + + + 3.2.12 + + + 3.2.13 + + + 3.2.14 + + + 3.2.15 + + + 3.2.16 + + + 3.2.17 + + + 3.2.18 + + + 3.2.19 + + + 3.2.20 + + + 3.2.21 + + + 3.2.22 + + + 3.2.23 + + + 3.2.24 + + + 3.2.25 + + + 3.2.26 + + + 3.2.27 + + + 3.2.28 + + + 3.2.29 + + + 3.2.99 + + + + 3.3 + + 3.3.1 + + + 3.3.2 + + + 3.3.3 + + + 3.3.4 + + + 3.3.5 + + + 3.3.6 + + + 3.3.7 + + + 3.3.8 + + + 3.3.9 + + + 3.3.10 + + + 3.3.11 + + + 3.3.12 + + + 3.3.13 + + + 3.3.14 + + + 3.3.99 + + + + 3.4 + + 3.4.1 + + + 3.4.2 + + + 3.4.3 + + + 3.4.4 + + + 3.4.5 + + + 3.4.6 + + + 3.4.99 + + + + + 4 + + 4.1 + + 4.1.1 + + + 4.1.2 + + + 4.1.3 + + + 4.1.4 + + + 4.1.5 + + + 4.1.6 + + + 4.1.99 + + + + 4.2 + + 4.2.1 + + + 4.2.2 + + + 4.2.3 + + + 4.2.4 + + + 4.2.99 + + + + 4.3 + + 4.3.1 + + + 4.3.2 + + + 4.3.3 + + + 4.3.4 + + + 4.3.5 + + + 4.3.6 + + + 4.3.7 + + + 4.3.99 + + + + 4.4 + + 4.4.1 + + + 4.4.2 + + + 4.4.3 + + + 4.4.4 + + + 4.4.5 + + + 4.4.6 + + + 4.4.7 + + + 4.4.99 + + + + + 5 + + 5.1 + + 5.1.1 + + + 5.1.2 + + + 5.1.3 + + + 5.1.4 + + + 5.1.5 + + + 5.1.6 + + + 5.1.7 + + + 5.1.8 + + + 5.1.9 + + + 5.1.10 + + + 5.1.11 + + + 5.1.99 + + + + 5.2 + + 5.2.1 + + + 5.2.2 + + + 5.2.3 + + + 5.2.4 + + + 5.2.99 + + + + 5.3 + + 5.3.1 + + + 5.3.2 + + + 5.3.99 + + + + 5.4 + + 5.4.1 + + + 5.4.2 + + + 5.4.3 + + + 5.4.4 + + + 5.4.5 + + + 5.4.5 + + + 5.4.7 + + + 5.4.8 + + + 5.4.99 + + + + 5.5 + + 5.5.1 + + + 5.5.2 + + + 5.5.3 + + + 5.5.4 + + + 5.5.5 + + + 5.5.6 + + + 5.5.7 + + + 5.5.8 + + + 5.5.9 + + + 5.5.99 + + + + 5.6 + + 5.6.1 + + + 5.6.2 + + + 5.6.3 + + + 5.6.4 + + + 5.6.5 + + + 5.6.6 + + + 5.6.7 + + + 5.6.8 + + + 5.6.99 + + + + 5.7 + + 5.7.1 + + + 5.7.2 + + + 5.7.3 + + + 5.7.99 + + + + 5.8 + + 5.8.1 + + + 5.8.2 + + + 5.8.3 + + + 5.8.4 + + + 5.8.99 + + + + + 6 + + 6.1 + + 6.1.1 + + + 6.1.2 + + + 6.1.99 + + + + 6.2 + + 6.2.1 + + + 6.2.2 + + + 6.2.3 + + + 6.2.4 + + + 6.2.5 + + + 6.2.6 + + + 6.2.99 + + + + 6.3 + + 6.3.1 + + + 6.3.2 + + + 6.3.3 + + + 6.3.4 + + + 6.3.5 + + + 6.3.99 + + + + 6.4 + + 6.4.1 + + + 6.4.2 + + + 6.4.3 + + + 6.4.4 + + + 6.4.5 + + + 6.4.99 + + + + + 7 + + 7.1 + + + 7.2 + + + 7.3 + + + 7.99 + - - - doajarticles::1c5bdf8fca58937894ad1441cca99b76 - Transport and Aerospace Engineering - Transport and Aerospace Engineering - true - - - - doajarticles::b37a634324a45c821687e6e80e6f53b4 - Romanian Journal of Transport Infrastructure - Romanian Journal of Transport Infrastructure - true - - - - doajarticles::4bf64f2a104040e4e055cd9594b2d77c - Transport Problems - Transport Problems - true - - - - doajarticles::479ca537c12755d1868bbf02938a900c - Logistics &amp; Sustainable Transport - Logistics &amp; Sustainable Transport - true - - - - doajarticles::55f31df96a60e2309f45b7c265fcf7a2 - Avtomobilʹnyj Transport (Harʹkov) - Avtomobilʹnyj Transport (Harʹkov) - true - - - - doajarticles::c52a09891a5301f9986ebbfe3761810c - Promet (Zagreb) - Promet (Zagreb) - true - - - - doajarticles::379807bc7f6c71a227ef1651462c414c - Journal of Transport and Supply Chain Management - Journal of Transport and Supply Chain Management - true - - - - doajarticles::36069db531a00b85a2e8fb301f4bdc19 - Transport and Telecommunication - Transport and Telecommunication - true - - - - doajarticles::b6a898da311ded96fabf49c520b80d5d - European Transport Research Review - European Transport Research Review - true - - - - doajarticles::d0753d9180b35a271d8b4a31f449749f - Journal of Transport and Land Use - Journal of Transport and Land Use - true - - - - doajarticles::172050a92511838393a3fe237ae47e31 - Scientific Journal of Silesian University of Technology. Series Transport - Scientific Journal of Silesian University of Technology. Series Transport - true - - - - doajarticles::301ed96c62abb160a3e29796efe5c95c - Urban, Planning and Transport Research - Urban, Planning and Transport Research - true - - - - doajarticles::0f4f805b3d842f2c7f1b077c3426fa59 - Journal of Sustainable Development of Transport and Logistics - Journal of Sustainable Development of Transport and Logistics - true - - - - doajarticles::ba73728b84437b8d48ae287b867c7215 - Nauka ta Progres Transportu - Nauka ta Progres Transportu - true - - - - doajarticles::86faef424d804309ccf45f692523aa48 - TeMA: Journal of Land Use, Mobility and Environment - TeMA: Journal of Land Use, Mobility and Environment - true - - - - doajarticles::73bd758fa41671de70964c3ecba013af - Journal of Advanced Transportation - Journal of Advanced Transportation - true - - - - doajarticles::e661fc0bdb24af42b740a08f0ddc6cf4 - International Journal of Transportation Science and Technology - International Journal of Transportation Science and Technology - true - - - - doajarticles::a6d3052047d5dbfbd43d95b4afb0f3d7 - Journal of Traffic and Transportation Engineering (English ed. Online) - Journal of Traffic and Transportation Engineering (English ed. Online) - true - - - - doajarticles::ca61df07089acc53a1569bde6673d82a - TransNav: International Journal on Marine Navigation and Safety of Sea Transportation - TransNav: International Journal on Marine Navigation and Safety of Sea Transportation - true - - - - doajarticles::237dd6f1606600459d0297abd8ed9976 - IATSS Research - IATSS Research - true - - - - doajarticles::fba6191177ede7c51ea1cdf58eae7f8b - Transport - Transport - true - - - - opendoar____::65a31da7ede4dc9b03fb5bbf8f442ce9 - MADIS - Archive institutionnelle Ifsttar - true - - - - issn___print::5620fb341e160a153c489fcfab8a01ce - Transportation Research Record Journal of the Transportation Research Board - Transportation Research Record Journal of the Transportation Research Board - true - - - - opendoar____::43e04dd08bb1305428b0c9c8d8a2660a - Repository of the Faculty of Transport and Traffic Sciences - Repository of the Faculty of Transport and Traffic Sciences + + + orp_________::9b49c76cf40a93f89944889678b741f9 + EGI Applications Database + EGI Applications Database true - - - jsdtl - + + + Engaging the EGI Community towards an Open Science Commons + (Acknowledgement) + The European Grid Initiative (EGI) is partner in EGI-ENGAGE + 654142 + H2020-EU.1.4.1.3. + https://www.egi.eu/about/egi-engage/ + EC - - utc-martrec - + + INDIGO-DataCloud - INtegrating Distributed data Infrastructures for Global ExplOitation + (Acknowledgement) + + 653549 + H2020-EU.1.4.1.3. + + EC - - utc-uti - + + Authentication and Authorisation for Research and Collaboration (AARC) + (Acknowledgement) + + 653965 + H2020-EU.1.4.1.3. + + EC - - stp - + + Education for Data Intensive Science to Open New science frontiers + (Acknowledgement) + + 675419 + H2020-EU.1.4.2.2. + + EC - - c2smart - + + Environmental Research Infrastructures Providing Shared Solutions for Science and Society + (Acknowledgement) + + 654182 + H2020-EU.1.4.1.1. + + EC - - stride-utc - + + ELITRANS-Facilitating the transformation of ELI from ERDF funded, distributed infrastructures towards a unified ELI-ERIC + (Acknowledgement) + + 676627 + H2020-EU.1.4.1.1. + + EC - - crowd4roads - + + Helix Nebula – The Science Cloud + (Acknowledgement) + + 687614 + H2020-EU.2.1.1. + + EC - - lemo - + + Next Generation GEOSS for Innovation Business + (Acknowledgement) + + 730329 + H2020-EU.3.5.5. + + EC - - imov3d - + + Accelerating user-driven e-infrastructure innovation in Food Agriculture + (Acknowledgement) + + 731001 + H2020-EU.1.4.1.3. + + EC - - tra2018 - + + The European Open Science Cloud for Research Pilot Project + (Acknowledgement) + + 739563 + H2020-EU.1.4.1.1. + + EC - - optimum - + + European Research Infrastructures in the International Landscape + (Acknowledgement) + + 730974 + H2020-EU.1.4.3. + + EC - - stars - + + Advanced European Network of E-infrastructuresfor Astronomy with the SKA + (Acknowledgement) + + 731016 + H2020-EU.1.4. + + EC - - iecteim - + + European E-Infrastructure Services Gateway + (Acknowledgement) + + 731049 + H2020-EU.1.4. + + EC - - iccpt2019 - + + Cherenkov Telescope Array: Infrastructure Development and Start of Implementation + (Acknowledgement) + + 676134 + H2020-EU.1.4.1.1. + + EC + + + Astroparticle and Oscillations Research with Cosmics in the Abyss (ARCA and ORCA) + (Acknowledgement) + + 739560 + H2020-EU.1.4.1.1. + + EC + + + Searching for The Origin of Cosmic Rays and Neutrinos with LOFAR + (Acknowledgement) + + 640130 + H2020-EU.1.4.1.1. + + EC + + + Final Design, Construction and Operations of the Large Synoptic Survey Telescope (LSST) + (Acknowledgement) + + 1258333 + + + NSF + + + Integrated Structural Biology Infrastructure + (Acknowledgement) + + 211252 + FP7-INFRASTRUCTURES + + EC + + + Biobanking and Biomolecular Resources Research Infrastructure + (Acknowledgement) + + 212111 + FP7-INFRASTRUCTURES + + EC + + + Life Watch + (Acknowledgement) + + 211372 + FP7-INFRASTRUCTURES + + EC + + + Distributed Research Infrastructure for Hydro-Meteorology + (Acknowledgement) + + 283568 + FP7-INFRASTRUCTURES + + EC + + + Building data bridges from biology to medicine in Europe + (Acknowledgement) + The European Grid Initiative (EGI) is partner in BioMedBridges + 284209 + http://www.biomedbridges.eu/ + FP7-INFRASTRUCTURES + EC + + + Biodiversity Virtual e-Laboratory + (Acknowledgement) + The European Grid Initiative (EGI) is partner in BioVel + 283359 + http://www.biovel.eu/ + EC + + + Digital Cultural Heritage - Roadmap for Preservation + (Acknowledgement) + The European Grid Initiative (EGI) is partner in DCH-RP + 312274 + http://www.dch-rp.eu/ + FP7-INFRASTRUCTURES + EC + + + Distributed Research Infrastructure for Hydro-Meteorology Study + (Acknowledgement) + (rule) + 246703 + http://www.drihms.eu/ + EC + + + Financial Study for Sustainable Computing e-Infrastructures + (Acknowledgement) + The European Grid Initiative (EGI) is partner in e-Fiscal + 283449 + http://efiscal.eu/ + FP7-INFRASTRUCTURES + EC + + + e-ScienceTalk + (Acknowledgement) + Coordinated by the European Grid Initiative (EGI) + 260733 + http://www.e-sciencetalk.org/ + FP7-INFRASTRUCTURES + EC + + + Initiative for Globus in Europe + (Acknowledgement) + Memorandum of Understanding between IGE and EGI + 261560 + http://www.ige-project.eu/ + FP7-INFRASTRUCTURES + EC + + + European Desktop Grid Initiative + (Acknowledgement) + Memorandum of Understanding between EDGI and EGI-Inspire + 261556 + www.edgi-project.eu + FP7-INFRASTRUCTURES + EC + + + European Grid Initiative: Integrated Sustainable Pan-European Infrastructure for Researchers in Europe + The authors acknowledge the use of resources provided by the European Grid Infrastructure. For more information, please reference the EGI-InSPIRE paper (http://go.egi.eu/pdnon). + Coordinated by the European Grid Initiative (EGI) + 261323 + https://www.egi.eu/about/egi-inspire/ + FP7-INFRASTRUCTURES + EC + + + Common Operations of Environmental Research Infrastructures + (Acknowledgement) + The European Grid Initiative (EGI) is partner in ENVRI + 283465 + http://envri.eu/ + EC + + + European Research Community through interoperable workflows and data sharing + (Acknowledgement) + The European Grid Initiative (EGI) is partner in ER-Flow + 312579 + http://www.erflow.eu/ + FP7-INFRASTRUCTURES + EC + + + Scalable Software Services for Life Science + (Acknowledgement) + Memorandum of Understanding between MAPPER and EGI-InSpire + 261523 + http://www.scalalife.eu/ + FP7-INFRASTRUCTURES + EC + + + SCIentific gateway Based User Support + (Acknowledgement) + Memorandum of Understanding between SCI-BUS and EGI + 283481 + http://www.sci-bus.eu/ + FP7-INFRASTRUCTURES + EC + + + SHaring Interoperable Workflows for large-scale scientific simulations on Available DCIs + (Acknowledgement) + Memorandum of Understanding between SHIWA and EGI-Inspire + 261585 + http://www.shiwa-workflow.eu/ + FP7-INFRASTRUCTURES + EC + + + Standards and Interoperability for e-Infrastructure Implementation Initiative + (Acknowledgement) + Memorandum of Understanding between SIENA and EGI-Inspire + 261575 + http://www.sienainitiative.eu/ + FP7-INFRASTRUCTURES + EC + + + StratusLab + (Acknowledgement) + Memorandum of Understanding between StratusLab and EGI-Inspire + 261552 + http://stratuslab.eu/ + FP7-INFRASTRUCTURES + EC + + + Virtual Earthquake and seismology Research Community in Europe e-science environment + (Acknowledgement) + (rule) + 283543 + http://www.verce.eu/ + FP7-INFRASTRUCTURES + EC + + + A worldwide e-Infrastructure for NMR and structural biology + (Acknowledgement) + Memorandum of Understanding between WENMR and EGI + 261572 + http://www.wenmr.eu/ + FP7-INFRASTRUCTURES + EC + + + Helix Nebula - The Science Cloud + (Acknowledgement) + The European Grid Initiative (EGI) is partner in Helix Nebula + 312301 + http://helix-nebula.eu/ + EC + + + Implementing service management in federated e-Infrastructures + (Acknowledgement) + The European Grid Initiative (EGI) is partner in FedSM + 312851 + http://www.fedsm.eu/ + FP7-INFRASTRUCTURES + EC + + + eXtreme DataCloud + XDC + 777367 + EC + corda__h2020::bc39648d03d80db1a0d8ccc58a5b2f7f + + + Photon and Neutron Open Science Cloud + PaNOSC + 823852 + EC + corda__h2020::1bee3b3a56ad05cd3c579e30dab98b53 + + + Transforming Research through Innovative Practices for Linked interdisciplinary Exploration + TRIPLE + 863420 + EC + corda__h2020::94b1b8e5309715e7aa2ab9d87dcc1dfe + + + EOSC Photon and Neutron Data Services + ExPaNDS + 857641 + EC + corda__h2020::9d87a9fbd7da1345ec6ba3a4710c4f68 + + + Interactive and agile/responsive sharing mesh of storage, data and applications for EOSC + CS3MESH4EOSC + 863353 + EC + corda__h2020::efad077563c9db396d9f0dc16d057250 + + + European Open Science Cloud - Expanding Capacities by building Capabilities + EOSC-synergy + 857647 + EC + corda__h2020::276be245d267a8f210f0cabb584fb493 + + + Authentication and Authorisation For Research and Collaboration + AARC2 + 730941 + EC + corda__h2020::17c76b3b4adc182e4d5812fb5d5b4358 + + + Collaborative Proposal: Enhanced Gravitational Wave Search via Simultaneous Advanced LIGO/Virgo and Evryscope Detection + + 1806651 + NSF + nsf_________::b56132b73ea9d8b4b7bb5090e5b83014 + + + Collaborative Proposal: Enhanced Gravitational Wave Search via Simultaneous Advanced LIGO/Virgo and Evryscope Detection + + 1806625 + NSF + nsf_________::a07fc84a0a3d14522c531edea510dbe0 + + + EGI Advanced Computing for EOSC + EGI-ACE + 101017567 + EC + corda__h2020::4d14150c6863206dc57453ec042c50ff + + + Integrating and managing services for the European Open Science Cloud + EOSC-hub + 777536 + EC + corda__h2020::5f29eb8fd762816208e20c6a156435a9 + + + Enhancing the EOSC portal and connecting thematic clouds + EOSC Enhance + 871160 + EC + corda__h2020::f7925a8b2939ab29779e36a87d997cdb + + + EOSC Future + EOSC Future + 101017536 + EC + corda__h2020::256485716fdb9f5ca69007b7ca5a072b + + + European Federation of Data Driven Innovation Hubs + EUHubs4Data + 951771 + EC + corda__h2020::1181bbd5a4431d18f0467e1e44d072dc + + + European Federation of Data Driven Innovation Hubs + EUHubs4Data + 951771 + EC + corda__h2020::1181bbd5a4431d18f0467e1e44d072dc + + + AN AI ON-DEMAND PLATFORM TO SUPPORT RESEARCH EXCELLENCE IN EUROPE + AI4EUROPE + 101070000 + EC + corda_____he::357fe0aade31301ce04f06d230d22718 + + + Automated, Transparent Citizen-Centric Public Policy Making based on Trusted Artificial Intelligence + AI4PublicPolicy + 101004480 + EC + corda__h2020::891235b6b2b9cf2cbadf2346418169db + + + operAtional seNsing lifE technologies for maRIne ecosystemS + ANERIS + 101094924 + EC + corda_____he::e82ffe09e25f376dfd068deb21a7ba6e + + + BD4NRG: Big Data for Next Generation Energy + BD4NRG + 872613 + EC + corda__h2020::a3d6ae6b7075764a1a54c09317fef1b4 + + + A federated European FAIR and Open Research Ecosystem for oceans, seas, coastal and inland waters + Blue-Cloud 2026 + 101094227 + EC + corda_____he::3af56818d6bb019793a6fae45c9260ec + + + Creating a Robust Accessible Federated Technology for Open Access + CRAFT-OA + 101094397 + EC + corda_____he::c54aa74d92a200869544259903b8671e + + + Copernicus - eoSC AnaLytics Engine + C-SCALE + 101017529 + EC + corda__h2020::96945f03d96929e0e48bd7a0bf3fa95c + + + DATA Monetization, Interoperability, Trading & Exchange + DATAMITE + 101092989 + EC + corda_____he::8ed6ec195e0b0c6080644e3f9cf41a01 + + + eviDEnce and Cloud for more InformeD and effective pOlicies + DECIDO + 101004605 + EC + corda__h2020::b9c962dd65b8c26abe4f8f0a39d4e024 + + + Providing an open collaborative space for digital biology in Europe + EOSC-Life + 824087 + EC + corda__h2020::b5827cc3dcc9a82dd052fcfa0a6ee04f + + + leveraging the European compute infrastructures for data-intensive research guided by FAIR principles + EuroScienceGateway + 101057388 + EC + corda_____he::2641f1fd24670a0dda126225c89c1273 + + + GraspOS: next Generation Research Assessment to Promote Open Science + GraspOS + 101095129 + EC + corda_____he::6f17d6d6d3e7c3ed44ad6f92b76e870d + + + Imaging data and services for aquatic science + iMagine + 101058625 + EC + corda_____he::cee20577a3cf295391e596e40621449f + + + An interdisciplinary Digital Twin Engine for science + interTwin + 101058386 + EC + corda_____he::c437390f6c091018ae84b8e703b8528c + + + Land-Based Solutions for Plastics in the Sea + LABPLAS + 101003954 + EC + corda__h2020::865e31f9be6af7764c32f30550435a96 + + + LETHE (λήθη) – A personalized prediction and intervention model for early detection and reduction of risk factors causing dementia, based on AI and distributed Machine Learning + LETHE + 101017405 + EC + corda__h2020::056647d4430f4f7f568624d873051379 + + + Tools and methods for extended plant PHENotyping and EnviroTyping services of European Research Infrastructures + PHENET + 101094587 + EC + corda_____he::15c9f24a425d0fa039d7322bfc6d1a30 + + + Plasmasphere Ionosphere Thermosphere Integrated Research Environment and Access services: a Network of Research Facilities + PITHIA-NRF + 101007599 + EC + corda__h2020::0bb8fd73c5e595d4eab73332e7876e4f + + + Stairway to AI: Ease the Engagement of Low-Tech users to the AI-on-Demand platform through AI + StairwAI + 101017142 + EC + corda__h2020::b1923975d67f7eccc4d0927fa8b28b9a + + + Digital Technologies ActiNg as a Gatekeeper to information and data flOws + TANGO + 101070052 + EC + corda_____he::0d33cea17196f335263fd69b89e7ad47 + + + EOSC Focus + EOSC Focus + 101058432 + EC + corda_____he::f66dfbc3c3ef813cbc9944a6b5ad6ae1 + + + HealthyCloud – Health Research & Innovation Cloud + HealthyCloud + 965345 + EC + corda__h2020::3257085945ac3b3fb05346ccb78d5aba + + + SoBigData RI Preparatory Phase Project + SoBigData RI PPP + 101079043 + EC + corda_____he::be32eead9cdc9d1d636b75101f30b0d0 + + + SoBigData++: European Integrated Infrastructure for Social Mining and Big Data Analytics + SoBigData-PlusPlus + 871042 + EC + corda__h2020::a45280b6e42e263da0c4e85e5bf6845b + + + Unlocking the Cloud Edge IoT demand potential in Europe + UNLOCK-CEI + 101070571 + EC + corda_____he::0abae4136e9beb18068a36ff0860f30c + + + On the road to sustainability: paving the way for OPERAS as an efficient open Social Sciences and Humanities scholarly communication Research Infrastructure + OPERAS-PLUS + 101079608 + EC + corda_____he::fad6e19d7ead030721d4ead45194cafc + + + Horizon Cloud – The Forum for Strategy Focused Cloud Stakeholders + H-CLOUD + 871920 + EC + corda__h2020::bd886c247660d95f323f5d9343f9f8da - - - - BE OPEN - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL3NldHRpbmdzL2xvZ28tYmUtb3Blbi13aGl0ZS1iZy5zdmc= - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS8= + + + ETFBL - - OpenAIRE - aHR0cHM6Ly93d3cub3BlbmFpcmUuZXUvdGVtcGxhdGVzL3lvb3RoZW1lL2NhY2hlLzI5L0xvZ29fSG9yaXpvbnRhbC0yOWZhMjBmNC53ZWJw - aHR0cHM6Ly93d3cub3BlbmFpcmUuZXU= + + BELNET - - CERTH-HIT - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2NlcnRoLWhpdC1feDE0MC5wbmc/dG9rZW49NjIxZjE2NzdkNjgwZjM0Mzg0ODVlYjc4NmRlZDY2MjA= - aHR0cHM6Ly93d3cuY2VydGguZ3I= + + IICT-BAS - - Athena Research Center - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2FyYy1feDE0MC5wbmc/dG9rZW49ZmM3YWE1ZTg3NjgyMzk3ZTZmMDk0NmUyNzZlMDE0MjU= - aHR0cHM6Ly93d3cuYXRoZW5hcmMuZ3IvZW4vaG9tZQ== + + SWiNG + CERN - - DLR - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2Rsci1feDE0MC5wbmc/dG9rZW49ZjZmYjNhNmNkNjc1YzM0OGZmNmMyMzcwZDJlYzE5ZWE= - aHR0cHM6Ly93d3cuZGxyLmRlLw== + + CyGrid - - ECTRI - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2VjdHJpLV94MTQwLnBuZz90b2tlbj02ODZhMjdlNWE1OTE1YjU1YjQ3MWEyNGU5NzI2ZDkzYg== - aHR0cHM6Ly93d3cuZWN0cmkub3JnLw== + + CESNET - - EURNEX - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2V1cm5leC1feDE0MC5wbmc/dG9rZW49NTNiYjBkYWRkZjBhMTgxYTgxMzJmYWFmM2QyMjBlM2E= - aHR0cHM6Ly93d3cuZXVybmV4Lm9yZy8= + + Gauss-Allianz + EMBL - - European Association of Aviation Training and Education Organizations - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2VhdGVvLV94MTQwLnBuZz90b2tlbj1hOTU3NWM5OWI1Mzg1YTE0NWJmZDM3ODY5NDVlZGJhNQ== - aHR0cDovL2VhdGVvLmV1Lw== + + DCSC - - FEHRL - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2ZlaHJsLV94MTQwLnBuZz90b2tlbj1kYWNlYmUyOTU1NGQzNjJkZDNjMjg1ZTA3ZjQ1NjVhOA== - aHR0cHM6Ly93d3cuZmVocmwub3JnLw== + + EENet - - FIT consulting - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL21vdmluZy1pbm5vdmF0aW9uLV94MTQwLnBuZz90b2tlbj01ZDlkOWU5ZmM5MmY5MzBiZmI3NzlmMzI5Y2EzMzZjZA== - aHR0cHM6Ly93d3cuZml0Y29uc3VsdGluZy5pdC8= + + CSIC - - HUMANIST - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2h1bWFuaXN0LV94MTQwLnBuZz90b2tlbj00NDRiNTNhOGYwNTk1NGY4YTE4YTZlYmM0OWExYTliYw== - aHR0cDovL3d3dy5odW1hbmlzdC12Y2UuZXUv + + CSC - - Institute of Transport Economics - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3RvaS1feDE0MC5wbmc/dG9rZW49ODdmNzY2OTFhYWQ4ZDU2ZWIwY2NmMDU1Nzc1OWI5ZDI= - aHR0cHM6Ly93d3cudG9pLm5vL2VuZ2xpc2gv + + CNRS - - Konnekt-able - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2tvbm5la3RhYmxlLV94MTQwLnBuZz90b2tlbj0xNzRhOWYzMjdjYTJhOTU4YzZmYjE2MmEyNGU3MjhiOA== - aHR0cHM6Ly93d3cua29ubmVrdGFibGUubmV0Lw== + + GRNET - - National Technical University of Athens - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL250dWFfMS1feDE0MC5wbmc/dG9rZW49OTNiZTZhNDUzOWFlNmVmNGRhYjRlY2RmOTliNzIxMTI= - aHR0cHM6Ly93d3cubnR1YS5nci9lbg== + + SRCE - - Osborne Carke - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL29zYm9ybmUtY2xhcmtlLV94MTQwLnBuZz90b2tlbj0wZGQ3NWFiNGQ0NGYxYmFiOTQ3MTc1OWUyNDA4MGM3Yw== - aHR0cHM6Ly93d3cub3Nib3JuZWNsYXJrZS5jb20v + + NIIF - - Scipedia - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3NjaXBlZGlhLV94MTQwLnBuZz90b2tlbj02YTM5MzAxMWQwMTdjOGY0M2E3ZDcyZWZjZWRiMzNiZA== - aHR0cHM6Ly93d3cuc2NpcGVkaWEuY29tLw== + + Grid-Ireland - - UITP - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3VpdHAtX3gxNDAucG5nP3Rva2VuPTg2ZWEyNWYwZjIyMjliNzIxYmYyNmI4Y2YzNDFkYTJk - aHR0cHM6Ly93d3cudWl0cC5vcmcv + + IUCC - - VDI/VDE-IT - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3ZkaXZkZS1pdC1sb2dvLV94MTQwLnBuZz90b2tlbj1kZmM0ZTJiMDgwOWE0MDc3ZTQzMThiNTg2ODU5MjZmOQ== - aHR0cHM6Ly92ZGl2ZGUtaXQuZGUv + + INFN - - WEGEMT - aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3dlZ2VtdC1feDE0MC5wbmc/dG9rZW49ZThkNzY1MGFjNGJlZjhkNjhkMDZkOTRlMTYzMTFmMWM= - aHR0cDovL3d3dy53ZWdlbXQuY29tLw== + + VU + + + RESTENA + + + LUMII + + + UoM + + + MARGI + + + NCF + + + UNINETT Sigma AS + + + CYFRONET AGH + + + UMIC + + + ICI + + + IPB + + + ARNES + + + SlovakGrid + + + SNIC + + + ULAKBIM + + + JISC + + + IIAP NAS RA + + + RENAM + + + e-ARENA + + + + + Bosnia and Herzegovina + + + Belgium + + + Bulgaria + + + Switzerland + + + Cyprus + + + Czech Republic + + + Germany + + + Denmark + + + Estonia + + + Spain + + + Finland + + + France + + + Greece + + + Croatia + + + Hungary + + + Ireland + + + Israel + + + Italy + + + Lithuania + + + Luxembourg + + + Latvia + + + Montenegro + + + Macedonia + + + the Netherlands + + + Norway + + + Poland + + + Portugal + + + Romania + + + Serbia + + + Slovenia + + + Slovakia + + + Sweden + + + Turkey + + + United Kingdom + + + Armenia + + + Moldova + + + Russia + + + Germany + + + Switzerland + + + + + vo.grand-est.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.grand-est.fr/ + http://www.grand-est.fr + Results obtained in this paper were computed on the vo.grand-est.fr virtual organization of the EGI Infrastructure through resources from IPHC. We thank EGI, France Grilles and the IPHC Computing team for providing the technical support, computing and storage facilities. + + + astron + http://register.matrix.sara.nl/ + http://www.astron.nl + + + theophys + + + + + vo.londongrid.ac.uk + https://voms.gridpp.ac.uk:8443/voms/vo.londongrid.ac.uk/register/start.action + https://www.gridpp.ac.uk/wiki/Vo.londongrid.ac.uk + + + vo.grif.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.grif.fr/ + http://www.grif.fr/ + + + eo-grid.ikd.kiev.ua + https://voms.grid.ikd.kiev.ua:8443/voms/eo-grid.ikd.kiev.ua + http://inform.ikd.kiev.ua/eo-grid/ + + + ops.ndgf.org + https://voms.ndgf.org:8443/voms/ops.ndgf.org + http://www.ndgf.org/ + + + vo.msfg.fr + http://www.lupm.univ-montp2.fr/article.php3?id_article=79 + http://www.lupm.univ-montp2.fr/article.php3?id_article=79 + + + ilc + https://grid-voms.desy.de:8443/voms/ilc/ + http://www-flc.desy.de/flc/ + This work benefited from services provided by the ILC Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + gr-sim.grid.auth.gr + https://voms.hellasgrid.gr:8443/voms/gr-sim/register/start.action + http://www.grid.auth.gr + + + chem.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/chem.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Chemical Ibergrid Virtual Organisation, supported by the national resource providers of the EGI Federation + + + vo.sbg.in2p3.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.sbg.in2p3.fr/ + http://www.iphc.cnrs.fr + Results obtained in this paper were computed on the vo.sbg.in2p3.fr virtual organization of the EGI Infrastructure through resources from IPHC. We thank EGI, France Grilles and the IPHC Computing team for providing the technical support, computing and storage facilities + + + comet.j-parc.jp + https://voms.gridpp.ac.uk:8443/voms/comet.j-parc.jp/register/start.action + http://comet.kek.jp + + + vo.earthserver.eu + https://voms.ct.infn.it:8443/voms/vo.earthserver.eu + http://earthserver-sg.consorzio-cometa.it/ + This work benefited from services and resources provided by the vo.earthserver.eu Virtual Organization, supported by the national resource providers of the EGI Federation. + + + vo.sn2ns.in2p3.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.sn2ns.in2p3.fr/register/start.action + http://irfu.cea.fr/Projets/SN2NS + This work benefited from services provided by the vo.sn2ns.in2p3.fr Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + trgridd + https://voms.ulakbim.gov.tr:8443/voms/trgridd/ + https://voms.ulakbim.gov.tr:8443/voms/trgridd/ + + + vo.pic.es + https://voms.pic.es:8443/voms/vo.pic.es + http://www.pic.es + + + zeus + https://grid-voms.desy.de:8443/voms/zeus + http://www-zeus.desy.de/ + + + supernemo.vo.eu-egee.org + https://voms.gridpp.ac.uk:8443/voms/supernemo.vo.eu-egee.org/register/start.action + http://nemo.in2p3.fr + + + biomed + https://cclcgvomsli01.in2p3.fr:8443/voms/biomed + http://lsgc.org/en/Biomed:home + + This work was achieved using the biomed virtual organisation of the EGI infrastructure, with the dedicated support of resource centres BEINJING-LCG2, IN2P3-IRES, OBSPM, INFN-FERRARA, GARR-01-DIR, INFN-CATANIA, INFN-ROMA3, INFN-BARI, CREATIS-INSA-LYON, NCG-INGRID-PT, INFN-PISA, CESNET-MetaCloud and CLOUFIN , resource centres in UK hosted by GridPP collaboration, and the additional support of the resource centres listed here: http://operations-portal.egi.eu/vapor/resources/GL2Browser?VOfilter=biomed + + + + prod.vo.eu-eela.eu + https://voms.grid.unam.mx:8443/voms/prod.vo.eu-eela.eu + http://www.e-science.unam.mx/ + + + vo.ops.csic.es + https://voms.ific.uv.es:8443/voms/vo.ops.csic.es/ + http://www.grid.csic.es/ + + + euindia + https://voms2.cnaf.infn.it:8443/voms/euindia/ + http://www.euindiagrid.eu/ + + + vo.northgrid.ac.uk + https://voms.gridpp.ac.uk:8443/voms/vo.northgrid.ac.uk + https://voms.gridpp.ac.uk:8443/voms/vo.northgrid.ac.uk + + + drihm.eu + https://vomsmania.cnaf.infn.it:8443/voms/drihm.eu/ + http://www.drihm.eu/ + This work used the EGI infrastructure with the support of AM-01-IIAP, HG-02-IASA, HG-03-AUTH, HG-08-Okeanos, INFN-PADOVA + + + ict.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/ict.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Ibergrid ICT Virtual Organisation, supported by the national resource providers of the EGI Federation + + + hyperk.org + https://voms.gridpp.ac.uk:8443/voms/hyperk.org/register/start.action + http://www.hyperk.org + + + vo.eu-decide.eu + http://applications.eu-decide.eu + https://voms.ct.infn.it:8443/voms/vo.eu-decide.eu + This work benefited from services and resources provided by the vo.eu-decide.eu Virtual Organization, supported by the national resource providers of the EGI Federation. + + + superbvo.org + http://superb.infn.it/how-to-join-us + http://superb.infn.it/home + + + gilda + https://voms.ct.infn.it:8443/voms/gilda + https://gilda.ct.infn.it + + + xenon.biggrid.nl + https://voms.grid.sara.nl:8443/voms/xenon.biggrid.nl + https://wiki.biggrid.nl/wiki/index.php/Xenon + + + balticgrid + https://voms.balticgrid.org:8443/voms/balticgrid/ + http://www.balticgrid.org + + + gerda.mpg.de + https://vomsmania.cnaf.infn.it:8443/voms/gerda.mpg.de/ + http://www.mpi-hd.mpg.de/gerda + + + belle + https://voms.cc.kek.jp:8443/voms/belle + http://belle2.kek.jp/ + + + vo.stratuslab.eu + https://voms.grid.auth.gr:8443/voms/vo.stratuslab.eu/register/start.action + http://www.stratuslab.eu + + + camont + http://www.hep.phy.cam.ac.uk/~parker/camtology/camont.html + http://www.hep.phy.cam.ac.uk/~parker/camtology/camont.html + + + peachnote.com + https://perun.metacentrum.cz/perun-registrar-cert/?vo=peachnote.com + http://www.peachnote.com + This work used the EGI infrastructure with the dedicated support of CESNET-MetaCloud + + + ific + https://swevo.ific.uv.es:8443/voms/ific + http://ific.uv.es + + + pacs.infn.it + + + + + oxgrid.ox.ac.uk + http://oxgrid-vom.oerc.ox.ac.uk/cgi-bin/application.pl + http://www.oerc.ox.ac.uk/resources/oxgrid + + + glast.org + https://voms2.cnaf.infn.it:8443/voms/glast.org/ + http://glast.gsfc.nasa.gov/ + We would like to thank the INFN GRID Data Centers of ..., ..., ..., and ..., ... + + + demo.vo.edges-grid.eu + http://edgi-project.eu/ + http://edgi-project.eu/ + + + vo.dorii.eu + https://voms.grid.auth.gr:8443/voms/vo.dorii.eu/ + http://www.dorii.eu/applications + + + vo.u-psud.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.u-psud.fr/register/start.action + http://www.lri.fr/Demain/?cat=18 + + + vo.cta.in2p3.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.cta.in2p3.fr/register/start.action + http://www.mpi-hd.mpg.de/hfm/CTA/ + This work used the EGI Infrastructure and is co-funded by the EGI-Engage project (Horizon 2020) under Grant number 654142. + + + hgdemo + https://voms.grid.auth.gr:8443/voms/hgdemo + http://www.grid.auth.gr/en/services/ + + + ngs.ac.uk + http://www.ngs.ac.uk/ukca/apply + http://www.ngs.ac.uk + + + mpi-kickstart.egi.eu + https://egee.cesnet.cz/mpi/registration/prihlaska_priprav.php + https://www.metacentrum.cz/en/VO/MPI/index.html + + + ops.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/ops.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + + + trgride + https://voms.ulakbim.gov.tr:8443/voms/trgride/ + https://voms.ulakbim.gov.tr:8443/voms/trgride/ + + + vo.indicate-project.eu + https://voms.ct.infn.it:8443/voms/vo.indicate-project.eu + http://indicate-gw.consorzio-cometa.it/ + This work benefited from services and resources provided by the vo.indicate-project.eu Virtual Organization, supported by the national resource providers of the EGI Federation. + + + vo.lpnhe.in2p3.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.lpnhe.in2p3.fr + http://lpnhe.in2p3.fr + This work benefited from services provided by the LPNHE Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + planck + https://voms.cnaf.infn.it:8443/voms/planck/register/start.action + http://www.oats.inaf.it/it/tematiche-ricerca/macroarea-5/265-planck-lfi + This work benefited from services provided by the planck Virtual Organisation, supported by the national resource providers of the EGI Federation + + + egeode + https://cclcgvomsli01.in2p3.fr:8443/voms/egeode/ + http://www.egeode.org + + + vo.sim-e-child.org + https://voms.gnubila.fr:8443/voms/vo.sim-e-child.org + http://sec-portal.maatg.fr + + + uniandes.edu.co + https://caribe.uniandes.edu.co:8443/voms/uniandes.edu.co/register/start.action + https://caribe.uniandes.edu.co:8443/voms/uniandes.edu.co/user/home.action + + + oper.vo.eu-eela.eu + https://voms.eela.ufrj.br:8443/voms/oper.vo.eu-eela.eu + http://www.eu-eela.eu + + + vo.france-grilles.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.france-grilles.fr + http://www.france-grilles.fr/ + The authors acknowledge the support of France Grilles for providing computing resources on the French National Grid Infrastructure. + + + ncf + https://voms.grid.sara.nl:8443/voms/ncf/admin/home.action + https://www.surfsara.nl/systems/grid/new-users + + + vo.astro.pic.es + https://voms01.pic.es:8443/voms/vo.astro.pic.es + http://www.cosmo.pic.es + + + hess + https://cagraidsvr10.cs.tcd.ie:8443/voms/vo.hess-experiment.eu/webui/request/user/create + http://www.mpi-hd.mpg.de/hfm/HESS/ + + + sgdemo + https://voms.grid.auth.gr:8443/voms/sgdemo + + + + phys.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/phys.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Ibergrid Physics Virtual Organisation, supported by the national resource providers of the EGI Federation + + + infngrid + https://voms.cnaf.infn.it:8443/voms/infngrid/ + http://grid.infn.it + This work benefited from services provided to the INFNGRID Virtual Organisation by the national resource providers of the EGI Federation + + + embrace + https://cclcgvomsli01.in2p3.fr:8443/voms/embrace/register/start.action + http://www.embracegrid.info/ + + + bbmri.nl + https://voms.grid.sara.nl:8443/voms/bbmri.nl + http://www.bbmri.nl + + + gridit + https://voms.cnaf.infn.it:8443/voms/gridit/ + http://www.italiangrid.org/ + This work benefited from services provided to the GRIDIT Virtual Organisation by the national resource providers of the EGI Federation + + + vo.aginfra.eu + https://voms.ipb.ac.rs:8443/voms/vo.aginfra.eu/ + http://www.aginfra.eu/ + + + shiwa-workflow.eu + https://cclcgvomsli01.in2p3.fr:8443/voms/shiwa-workflow.eu/ + http://www.shiwa-workflow.eu + + + igi.italiangrid.it + https://vomsmania.cnaf.infn.it:8443/voms/igi.italiangrid.it/ + http://www.italiangrid.it/ + + + armgrid.grid.am + https://voms.grid.am:8443/voms/armgrid.grid.am/ + http://www.grid.am + + + gridcc + https://voms.grid.auth.gr:8443/voms/gridcc + http://www.gridcc.org/ + + + vo.turbo.pic.es + https://voms01.pic.es:8443/voms/vo.turbo.pic.es/register/start.action + http://www.pic.es + + + hone + https://grid-voms.desy.de:8443/voms/hone/ + http://www-h1.desy.de/ + We thank to all partners contributing to the WLCG computing infrastructure for their support for the H1 Collaboration (list of publications: http://www-h1.desy.de/h1/www/publications/H1publication.short_list.html#YEAR2013) + + + eng.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/eng.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Ibergrid Engeneering Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + earth.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/earth.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Earth Ibergrid Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + projects.nl + https://voms.grid.sara.nl:8443/voms/projects.nl + https://e-infra.surfsara.nl/ + This work was carried out on the Dutch national e­infrastructure with the support of SURF Cooperative. + + + pierre auger + https://egee.cesnet.cz/auger/registration/ + http://www.auger.org + no statement defined + + + vo.lpsc.in2p3.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.mure.in2p3.fr/admin/home.action + http://lpsc.in2p3.fr + + + eela + https://voms.lip.pt:8443/voms/eela/webui/request/user/create + http://www.eu-eela.org/ + + + trgridb + https://voms.ulakbim.gov.tr:8443/voms/trgridb/ + https://voms.ulakbim.gov.tr:8443/voms/trgridb/ + + + proactive + https://grid12.lal.in2p3.fr:8443/voms/proactive/register/start.action + http://www-sop.inria.fr/oasis/ProActive/ + + + desktopgrid.vo.edges-grid.eu + http://idgf-sp.eu/ + http://idgf-sp.eu/ + + + vo.delphi.cern.ch + https://voms.cern.ch:8443/voms/vo.delphi.cern.ch/register/start.action + http://delphiwww.cern.ch/ + + + vo.gridcl.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.gridcl.fr/ + http://www.labex-p2io.fr + + + ildg + https://grid-voms.desy.de:8443/voms/ildg + http://plone.jldg.org/ + + + bg-edu.grid.acad.bg + https://voms.ipp.acad.bg:8443/voms/bg-edu.grid.acad.bg/register/start.action + http://www.grid.bas.bg + + + desy + https://grid-voms.desy.de:8443/voms/desy + http://grid.desy.de + + + lhcb + https://lcg-voms.cern.ch:8443/vo/lhcb/vomrs + http://lhcb.web.cern.ch/lhcb/ + The Tier1 computing centres are supported by IN2P3 (France), KIT and BMBF (Germany), INFN (Italy), NWO and SURF (The Netherlands), PIC (Spain), GridPP (United Kingdom). We are thankful for the computing resources put at our disposal by Yandex LLC (Russia), as well as to the communities behind the multiple open source software packages that we depend on. + + + esr + https://voms.grid.sara.nl:8443/voms/esr + http://www.euearthsciencegrid.org/content/esr-vo-introduction + This work benefited from services provided by the ESR Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + inaf + https://voms.cnaf.infn.it:8443/voms/inaf + http://www.inaf.it + This work benefited from services provided by the inaf Virtual Organisation, supported by the national resource providers of the EGI Federation + + + vo.grid.auth.gr + https://voms.grid.auth.gr:8443/voms/vo.grid.auth.gr + http://www.grid.auth.gr/en/ + + + argo + https://voms.cnaf.infn.it:8443/voms/argo + http://argo.na.infn.it/ + + + see + https://www.grid.auth.gr/services/voms/SEE/request.php + http://www.hellasgrid.gr/about/see-vo/ + This work used the European Grid Infrastructure (EGI) through the National Grid Infrastructures NGI_GRNET , HellasGRID as part of the SEE Virtual Organisation [and is supported by the EC-funded project PRJ_NAME Grant number XXXXX]” + + + kzvo.isragrid.org.il + https://ngi-il-voms3.isragrid.org.il:8443/voms/isravo.isragrid.org.il/ + https://www.isragrid.org.il/ + + + neurogrid.incf.org + https://voms.gridpp.ac.uk:8443/voms/neurogrid.incf.org/ + http://www.incf.org + + + gaussian + https://voms.cyf-kr.edu.pl:8443/voms/gaussian + http://egee.grid.cyfronet.pl/gaussian + + + pheno + https://voms.gridpp.ac.uk:8443/voms/pheno/user/create!input.action + http://www.phenogrid.dur.ac.uk/ + + + hermes + https://grid-voms.desy.de:8443/voms/hermes + http://www-hermes.desy.de + + + mice + https://voms.gridpp.ac.uk:8443/voms/mice/register/start.action + http://www.mice.iit.edu/ + + + vo.lal.in2p3.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.lal.in2p3.fr/ + http://www.lal.in2p3.fr/ + + + magic + https://voms01.pic.es:8443/voms/magic/register/start.action + http://magic.mppmu.mpg.de + n/a (List of publications http://magic.mppmu.mpg.de/publications/articles/index.html) + + + vo.neugrid.eu + https://voms.gnubila.fr:8443/voms/vo.neugrid.eu + http://neugrid.eu + The authors thank all the partners of the neuGRID4you project (N4U: www.neugrid4you.eu). The project has been co-funded by the Seventh Framework Programme of the European Union for research, technological development and demonstration under grant agreement no. 283562. This work benefited from services provided by the vo.neugrid.eu Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + iber.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/iber.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + + + vo.scotgrid.ac.uk + http://www.scotgrid.ac.uk/ + http://www.scotgrid.ac.uk/ + + + geant4 + https://lcg-voms.cern.ch:8443/vo/geant4/vomrs + http://geant4.web.cern.ch/geant4/ + + + vo.ipno.in2p3.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.ipno.in2p3.fr + http://ipnweb.in2p3.fr + This work benefited from services provided by the vo.ipno.in2p3.fr Virtual Organisation, supported by the LCG distributed Tier-2 GRIF of the EGI Federation. + + + apesci + https://voms.grid.sinica.edu.tw:8443/voms/apesci/register/start.action + http://www.twgrid.org/aproc/services/vom/ + + + compchem + https://voms.cnaf.infn.it:8443/voms/compchem/ + https://www3.compchem.unipg.it + This work benefited from services and resources provided by the Compchem Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + ops + https://lcg-voms.cern.ch:8443/vo/ops/vomrs + https://wiki.egi.eu/wiki/OPS_vo + + + vo.agata.org + https://www.agata.org/grid/avo + http://www.agata.org/grid/ + + + na62.vo.gridpp.ac.uk + https://voms.gridpp.ac.uk:8443/voms/na62.vo.gridpp.ac.uk/ + http://na62.web.cern.ch/na62/ + This work benefited from services provided by the NA62 Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + seegrid + https://voms.irb.hr:8443/voms/seegrid/webui/request/user/create + http://www.see-grid.eu/ + + + snoplus.snolab.ca + https://voms.gridpp.ac.uk:8443/voms/snoplus.snolab.ca + http://snoplus.phy.queensu.ca/Home.html + + + vo.irfu.cea.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.irfu.cea.fr + http://irfu.cea.fr/ + + + gridpp + https://voms.gridpp.ac.uk:8443/voms/gridpp + http://www.gridpp.ac.uk + + + ukmhd.ac.uk + https://voms.gridpp.ac.uk:8443/voms/ukmhd.ac.uk/register/start.action + http://www.uksolphys.org/information/computing-resources/ + + + euasia.euasiagrid.org + http://aproc.twgrid.org/index.php?option=com_content&task=view&id=22&Itemid=31 + http://www.euasiagrid.org/ + + + vo.mure.in2p3.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.mure.in2p3.fr + http://lpsc.in2p3.fr/gpr/MURE/html/MURE/MURE.html + This work benefited from services provided by the vo.mure.in2p3.fr Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + icecube + https://grid-voms.desy.de:8443/voms/icecube/ + http://www.icecube.wisc.edu/ + They suggest to name in addtion to DFG (Deutsche Forschungsgemeinschaft) or NSF (National Science Foundation) also EGI resouces/help. + + + ghep + https://grid-voms.desy.de:8443/voms/ghep/register/start.action + http://grid.desy.de/ + + + pvier + https://voms.grid.sara.nl:8443/voms/pvier + http://poc.vl-e.nl/ + + + neiss.org.uk + https://voms.gridpp.ac.uk:8443/voms/neiss.org.uk/admin/home.action + http://drupals.humanities.manchester.ac.uk/neiss3/ + + + eumed + https://voms2.cnaf.infn.it:8443/voms/eumed + http://www.eumedgrid.eu + This work benefited from services and resources provided by the eumed Virtual Organization, supported by the national resource providers of the EGI Federation. + + + moldyngrid + http://moldyngrid.org + http://moldyngrid.org + + + israelvo.isragrid.org.il + https://ngi-il-voms1.isragrid.org.il:8443/voms/israel + http://www.isragrid.org.il + + + twgrid + https://voms.grid.sinica.edu.tw:8443/voms/twgrid/register/start.action + http://www.twgrid.org/aproc/services/vom/ + + + enmr.eu + https://voms2.cnaf.infn.it:8443/voms/enmr.eu/ + http://www.wenmr.eu + + The FP7 WeNMR (project# 261572), H2020 West-Life (project# 675858) and the EOSC-hub (project# 777536) European e-Infrastructure projects are acknowledged for the use of their web portals, which make use of the EGI infrastructure with the dedicated support of CESNET-MetaCloud, INFN-PADOVA, NCG-INGRID-PT, TW-NCHC, SURFsara and NIKHEF, and the additional support of the national GRID Initiatives of Belgium, France, Italy, Germany, the Netherlands, Poland, Portugal, Spain, UK, Taiwan and the US Open Science Grid + + + + xfel.eu + https://grid-voms.desy.de:8443/voms/xfel.eu + http://www.xfel.eu + + + alice + http://alien2.cern.ch/index.php?option=com_content&view=article&id=17&Itemid=90 + http://aliceinfo.cern.ch + The ALICE collaboration gratefully acknowledges the resources and support provided by all Grid centres and the Worldwide LHC Computing Grid (WLCG) collaboration. + + + hungrid + https://grid11.kfki.hu:8443/voms/hungrid + http://grid.kfki.hu/hungrid + + + euchina + https://voms2.cnaf.infn.it:8443/voms/euchina + http://www.euchinagrid.org/euchina_vo.html + + + meteo.see-grid-sci.eu + https://voms.grid.auth.gr:8443/voms/meteo.see-grid-sci.eu/register/start.action + http://wiki.egee-see.org/index.php/SG_Meteo_VO + + + vlemed + https://voms.grid.sara.nl:8443/voms/vlemed + http://www.ebioscience.amc.nl/ + + + vo.gear.cern.ch + + + + + vo.aleph.cern.ch + https://voms-admin.cern.ch:8443/voms/vo.aleph.cern.ch/ + http://cern.ch/voaleph + + + vo.complex-systems.eu + https://voms.grid.auth.gr:8443/voms/vo.complex-systems.eu/register/start.action + http://wiki.grid.auth.gr/wiki/bin/view/ComplexityScienceSSC/VO + + + atlas + https://lcg-voms.cern.ch:8443/vo/atlas/vomrs + https://www.racf.bnl.gov/docs/howto/grid/joinvo + The crucial computing support from all WLCG partners is acknowledged gratefully, in particular from CERN and the ATLAS Tier-1 facilities at TRIUMF (Canada), NDGF (Denmark, Norway, Sweden), CCIN2P3 (France), KIT/GridKA (Germany), INFN-CNAF (Italy), NL-T1 (Netherlands), PIC (Spain), ASGC (Taiwan), RAL (UK) and BNL (USA) and in the Tier-2 facilities worldwide. + + + virgo + https://voms.cnaf.infn.it:8443/voms/virgo + http://wwwcascina.virgo.infn.it/ + + + enea + https://voms.cnaf.infn.it:8443/voms/enea/ + http://www.afs.enea.it/project/eneaegee/VOenea/ + + + aegis + https://voms.ipb.ac.rs:8443/voms/aegis/ + http://www.aegis.rs/ + Numerical simulations were run on the PARADOX supercomputing facility at the Scientific Computing Laboratory of the Institute of Physics Belgrade, supported in part by the Ministry of Education, Science, and Technological Development of the Republic of Serbia under project no. ON171071 and OI1611005 + + + cdf + https://www.opensciencegrid.org/bin/view/VirtualOrganizations/VOInfo/FERMILAB + http://www-cdf.fnal.gov/ + + + epic.vo.gridpp.ac.uk + https://voms.gridpp.ac.uk:8443/voms/epic.vo.gridpp.ac.uk/admin/home.action + http://www.sruc.ac.uk/epic/ + + + vo.southgrid.ac.uk + https://voms.gridpp.ac.uk:8443/voms/vo.southgrid.ac.uk/ + http://www.southgrid.ac.uk/VO/ + + + life.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/life.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Ibergrid Life Sciences Virtual Organisation, supported by the national resource providers of the EGI Federation + + + vo.general.csic.es + https://voms.ific.uv.es:8443/voms/vo.general.csic.es + http://www.grid.csic.es/ + + + tut.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/tut.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Tutorial Virtual Organisation, supported by the national resource providers of the EGI Federation + + + vo.france-asia.org + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.france-asia.org/register/start.action + http://www.france-asia.org + + + vo.up.pt + https://voms.up.pt:8443/voms/vo.up.pt + http://voms.up.pt + + + lattice.itep.ru + + http://www.lattice.itep.ru/ + + + belle2.org + https://voms.cc.kek.jp:8443/voms/belle2.org + http://belle2.kek.jp/ + + + auvergrid + https://cclcgvomsli01.in2p3.fr:8443/voms/auvergrid/register/start.action + http://www.auvergrid.fr/ + + + fusion + http://fusion.bifi.unizar.es/?page_id=122 + http://fusion.bifi.unizar.es/ + This work benefited from services provided by the Fusion Virtual Organisation, supported by the national resource providers of the EGI Federation + + + vo.panda.gsi.de + https://grid12.lal.in2p3.fr:8443/voms/vo.panda.gsi.de + http://panda-wiki.gsi.de/cgi-bin/view/Computing/PandaGrid + + + comput-er.it + https://voms2.cnaf.infn.it:8443/voms/comput-er.it/ + http://www.comput-er.it/ + + + nordugrid.org + https://voms.ndgf.org:8443/voms/nordugrid.org + http://www.nordugrid.org/NorduGridVO + + + gridmosi.ici.ro + https://voms.grid.ici.ro:8443/voms/gridmosi.ici.ro/ + http://www.gridmosi.ro + + + cms + https://lcg-voms.cern.ch:8443/vo/cms/vomrs + http://cms.cern.ch/iCMS/ + We thank the computing centres in the Worldwide LHC computing Grid for the provisioning and excellent performance of computing infrastructure essential to our analyses. + + + icarus-exp.org + https://vomsmania.cnaf.infn.it:8443/voms/icarus-exp.org + http://icarus.lngs.infn.it + + + vo.renabi.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.renabi.fr + http://www.renabi.fr + + + env.see-grid-sci.eu + https://voms.ipp.acad.bg:8443/voms/env.see-grid-sci.eu/ + http://wiki.egee-see.org/index.php/SG_Environmental_VO + + + vo.apc.univ-paris7.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.apc.univ-paris7.fr/register/start.action + http://www.apc.univ-paris7.fr/ + + + calice + https://grid-voms.desy.de:8443/voms/calice/register/start.action + https://twiki.cern.ch/twiki/bin/view/CALICE/ + The support on the computing elements (CE) from all the worldwide GRID, and the support on the storage elements (SE), in particular Germany DESY GRID SE and France Lyon SE, are acknowledged gratefully. (List of publications https://twiki.cern.ch/twiki/bin/view/CALICE/CalicePapers) + + + vo.metacentrum.cz + http://metavo.metacentrum.cz/en/application/index.html + http://vo.metacentrum.cz/ + The access to computing and storage facilities owned by parties and projects contributing to the National Grid Infrastructure MetaCentrum, provided under the programme "Projects of Large Infrastructure for Research, Development, and Innovations" (LM2010005) is highly appreciated/acknowledged. + + + vo.llr.in2p3.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.llr.in2p3.fr + http://polywww.in2p3.fr + + + vo.ingv.it + https://vomsmania.cnaf.infn.it:8443/voms/vo.ingv.it/ + http://vo.ingv.it + + + ams02.cern.ch + http://ams.cern.ch + http://ams.cern.ch + + + dech + https://glite-io.scai.fraunhofer.de:8443/voms/dech/ + https://twiki.cern.ch/twiki/bin/view/EGEE/DECHFirstJobs + + + trgrida + https://voms.ulakbim.gov.tr:8443/voms/trgrida/ + https://voms.ulakbim.gov.tr:8443/voms/trgrida/ + + + envirogrids.vo.eu-egee.org + https://lcg-voms.cern.ch:8443/vo/envirogrids.vo.eu-egee.org/vomrs + http://www.envirogrids.net/ + + + dteam + https://voms.hellasgrid.gr:8443/voms/dteam + http://wiki.egi.eu/wiki/Dteam_vo + + + cesga + https://voms.egi.cesga.es:8443/voms/cesga/admin/home.action + http://www.egee.cesga.es/vo.html + + + imath.cesga.es + i-math.cesga.es + i-math.cesga.es + + + uscms + + + + + pamela + https://voms.cnaf.infn.it:8443/voms/pamela/register/start.action + http://pamela.roma2.infn.it + + + vo.formation.idgrilles.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.formation.idgrilles.fr + http://www.france-grilles.fr + + + vo.rhone-alpes.idgrilles.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.rhone-alpes.idgrilles.fr + http://www.tidra.org + + + vo.paus.pic.es + https://voms.pic.es:8443/voms/vo.paus.pic.es + http://www.ice.csic.es/research/PAU/PAU-welcome.html + + + fedcloud.egi.eu + https://perun.metacentrum.cz/perun-registrar-cert/?vo=fedcloud.egi.eu + http://www.egi.eu/infrastructure/cloud/ + + + vo.lpta.in2p3.fr + + + + + d4science.research-infrastructures.eu + https://voms.research-infrastructures.eu:8443/voms/d4science.research-infrastructures.eu/ + http://www.d4science.org + + + isravo.isragrid.org.il + https://ngi-il-voms3.isragrid.org.il:8443/voms/isravo.isragrid.org.il/ + http://www.isragrid.org.il + + + cppm + https://marvoms.in2p3.fr:8443/voms/cppm/ + http://marwww.in2p3.fr + + + astro.vo.eu-egee.org + https://grid12.lal.in2p3.fr:8443/voms/astro.vo.eu-egee.org/register + https://grid12.lal.in2p3.fr:8443/voms/astro.vo.eu-egee.org/ + + + km3net.org + https://voms02.scope.unina.it:8443/voms/km3net.org/ + http://www.km3net.org/home.php + This work benefited from services, data and scientific results provided by the KM3NeT.org Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + ipv6.hepix.org + https://voms2.cnaf.infn.it:8443/voms/ipv6.hepix.org/admin/home.action + https://voms2.cnaf.infn.it:8443/voms/ipv6.hepix.org/admin/home.action + + + atlas.ac.il + https://voms.hep.tau.ac.il:8443/voms/atlas.ac.il/ + https://voms.hep.tau.ac.il:8443/voms/atlas.ac.il/ + The crucial computing support from all WLCG partners is acknowledged gratefully, in particular from CERN and the ATLAS Tier-1 facilities at TRIUMF (Canada), NDGF (Denmark, Norway, Sweden), CCIN2P3 (France), KIT/GridKA (Germany), INFN-CNAF (Italy), NL-T1 (Netherlands), PIC (Spain), ASGC (Taiwan), RAL (UK) and BNL (USA) and in the Tier-2 facilities worldwide" + + + vo.ipnl.in2p3.fr + http://www.ipnl.in2p3.fr/spip.php?article302&lang=fr + http://www.ipnl.in2p3.fr/spip.php?article302&lang=fr + + + bing.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/bing.vo.ibergrid.eu/admin/home.action + http://www.brainimaging.pt + + + vo.lapp.in2p3.fr + https://cclcgvomsli01.in2p3.fr:8443/voms/vo.lapp.in2p3.fr + http://lapp.in2p3.fr/spip.php?rubrique80 + + + swetest + https://swevo.ific.uv.es:8443/voms/swetest/register/start.action + http://swevo.ific.uv.es/vo/swetest/vo-swetest.html + This work benefited from services provided by the SWETEST Virtual Organisation, supported by the national resource NGI IBERGRID. + + + vo.mcia.fr + https://grid12.lal.in2p3.fr:8443/voms/vo.mcia.fr + http://www.mcia.univ-bordeaux.fr/ + + + cometa + http://www.consorzio-cometa.it/en/accesso + http://www.consorzio-cometa.it/ + + + edteam + https://voms.lip.pt:8443/voms/edteam/webui/request/user/create + http://www.eu-eela.org/ + + + verce.eu + https://verce-voms.scai.fraunhofer.de:8443/voms/verce.eu/ + http://www.verce.eu + This work benefited from services provided by the verce.eu Virtual Organisation, supported by the VERCE project and the national resource providers of the EGI Federation. + + + lofar + https://voms.grid.sara.nl:8443/voms/lofar/register/start.action + http://www.lofar.org + + + vo.plgrid.pl + https://portal.plgrid.pl + http://www.plgrid.pl/en + + + vo.landslides.mossaic.org + https://voms.gridpp.ac.uk:8443/voms/vo.landslides.mossaic.org/register/start.action + http://mossaic.org/ + + + dzero + https://voms.fnal.gov:8443/voms/dzero/register/start.action + http://www-d0.fnal.gov/ + + + lsgrid + https://voms.grid.sara.nl:8443/voms/lsgrid + http://www.sara.nl/project/life-science-grid + This work was carried out on the Dutch national e-infrastructure with the support of SURF Cooperative. + + + cernatschool.org + https://www.gridpp.ac.uk/wiki/CERN%40school#Enrollment + http://cernatschool.web.cern.ch/content/cernschool-vo + + + ukqcd + https://grid-voms.desy.de:8443/voms/ildg/ + http://ukqcd.ac.uk/ + + + vo.helio-vo.eu + https://voms.gridpp.ac.uk:8443/voms/vo.helio-vo.eu + http://www.helio-vo.eu/ + + + fkppl.kisti.re.kr + + + + + vo.ifisc.csic.es + https://voms.ific.uv.es:8443/voms/vo.ifisc.csic.es + https://voms.ific.uv.es:8443/voms/vo.ifisc.csic.es + + + vo.dch-rp.eu + https://voms.ct.infn.it:8443/voms/vo.dch-rp.eu + http://www.dch-rp.eu/ + This work benefited from services and resources provided by the vo.dch-rp.eu Virtual Organization, supported by the national resource providers of the EGI Federation. + + + dream.hipcat.net + https://voms.hpcc.ttu.edu:8443/voms/dream/user/home.action + http://highenergy.phys.ttu.edu/dream/ + n/a (list of publications: http://highenergy.phys.ttu.edu/dream/results/publications/publications.html) + + + nw_ru + https://gt1.pnpi.nw.ru:8443/voms/nw_ru/ + http://egee.pnpi.nw.ru + + + social.vo.ibergrid.eu + https://voms01.ncg.ingrid.pt:8443/voms/social.vo.ibergrid.eu/register/start.action + http://ibergrid.lip.pt/USP + This work benefited from services provided by the Ibergrid Social Virtual Organisation, supported by the national resource providers of the EGI Federation + + + lsst + https://voms.fnal.gov:8443/voms/lsst + http://www.lsst.org/lsst/ + + + voce + https://voce-register.farm.particle.cz/voce/ + http://egee.cesnet.cz/en/voce/ + + + vo.sixt.cern.ch + http://sixtrack.web.cern.ch/SixTrack/ + http://sixtrack.web.cern.ch/SixTrack/ + + + seismo.see-grid-sci.eu + https://voms.ulakbim.gov.tr:8443/voms/seismo.see-grid-sci.eu/register/start.action + http://wiki.egee-see.org/index.php/SG_Seismology_VO + + + vo.cs.br + + + + + t2k.org + https://voms.gridpp.ac.uk:8443/voms/t2k.org/register/start.action + http://www.t2k.org + n/a (list of publications: http://t2k-experiment.org/publications/) + + + net.egi.eu + https://vomsmania.cnaf.infn.it:8443/voms/net.egi.eu/ + http://net.egi.eu + + + sagrid.ac.za + https://voms.sagrid.ac.za:8443/voms/sagrid.ac.za/register.action + http://www.sagrid.ac.za + This work was produced in part due to the usage of the resources provided by the sagrid.ac.za VO, supported by DST contract under the SANREN project. Support of the Africa-Arabia Regional Operations Centre and the EGI.eu is also acknowledged. + + + chipster.csc.fi + https://voms.fgi.csc.fi:8443/ + http://chipster.csc.fi + This work benefited from services provided by the Chipster Virtual Organisation, supported by the national resource providers of the EGI Federation. + + + geohazards.terradue.com + https://voms.ba.infn.it:8443/voms/geohazards.terradue.com + https://voms.ba.infn.it:8443/voms/geohazards.terradue.com + This work used the EGI infrastructure with the support of 100%IT, CESGA, CYFRONET-CLOUD, GoeGrid, HG-09-Okeanos-Cloud and RECAS-BARI. + + + hydrology.terradue.com + https://voms.ba.infn.it:8443/voms/hydrology.terradue.com + https://voms.ba.infn.it:8443/voms/hydrology.terradue.com + This work used the EGI infrastructure with the support of 100%IT, CESGA, CYFRONET-CLOUD, GoeGrid, RECAS-BARI and BEgrid-BELNET. + + + vo.magrid.ma + https://voms.magrid.ma:8443/voms/vo.magrid.ma + http://www.magrid.ma + The authors acknowledge the support of CNRST/MAGRID (http://www.magrid.ma) for providing computing resources on the Moroccan Grid Infrastructure. - Results obtained in this paper were computed on the magrid virtual organization of the Moroccan Grid Infrastructure (http://www.magrid.ma). We thank the CNRST/MaGrid providing the technical support, computing and storage facilities. - We acknowledge the use of Grid computing resources deployed and operated by CNRST/MaGrid (http://www.magrid.ma) in Morocco. + + + vo.chain-project.eu + https://voms.ct.infn.it:8443/voms/vo.chain-project.eu/ + http://www.chain-project.eu/ + This work benefited from services and resources provided by the vo.chain-project.eu Virtual Organization, supported by the national resource providers of the EGI Federation. + + + vo.nbis.se + https://perun.metacentrum.cz/cert/registrar/?vo=vo.nbis.se + https://bils.se + This work used the EGI infrastructure with the support of INFN (Italy) and IN2P3-IRES (France) + + + vo.dariah.eu + https://voms.ct.infn.it:8443/voms/vo.dariah.eu/register/start.action + https://wiki.egi.eu/wiki/EGI_Virtual_Organisation_for_arts_and_humanities:_vo.dariah.eu + This work used the EGI infrastructure with the dedicated support of the RECAS-BARI provider. + + + vo.africa-grid.org + https://voms.ct.infn.it:8443/voms/vo.africa-grid.org/register/start.action + http://www.africa-grid.org/ + This work benefited from services and resources provided by the vo.africa-grid.org Virtual Organization, supported by the national resource providers of the EGI Federation. + + + extras-fp7.eu + https://voms.ba.infn.it:8443/voms/extras-fp7.eu/register/start.action + http://www.extras-fp7.eu + This work used the EGI infrastructure with the support of CYFRONET- CLOUD and RECAS-BARI. + + + astro.vo.eu-egee.org + https://grid12.lal.in2p3.fr:8443/voms/astro.vo.eu-egee.org/register + https://grid12.lal.in2p3.fr:8443/voms/astro.vo.eu-egee.org/ + This work benefited from services provided by the astro.vo.eu-egee.org Virtual Organisation, supported by the national resource providers of the EGI Federation + + + vo.emsodev.eu + https://voms2.hellasgrid.gr:8443/voms/vo.emsodev.eu/register/start.action + + + The EMSODEV project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No. 676555. + In particular, the EMSODEV Data Management Platform uses the EGI Infrastructure with the support of CESGA, INNF-PADOVA-STACK, NCG-INGRID-PT and RECAS-BARI. + + + + d4science.org + https://vomsmania.cnaf.infn.it:8443/voms/d4science.org/register/start.action + https://wiki.d4science.org/index.php?title=D4Science.org_at_EGI.eu + This work used the EGI infrastructure with the dedicated support of CESGA, GoeGrid, UPV-GRyCAP and INFN-CATANIA-STACK. + + + bioisi + https://perun.cesnet.cz/cert/registrar/?vo=bioisi + http://bioisi.campus.ciencias.ulisboa.pt + This work used the EGI infrastructure with the dedicated support of the NCG-INGRID-PT provider + + + + + egi-ace + + + imagine-project + + + intertwin + + + eosc-hub + + + + + VIRGO + aHR0cHM6Ly93d3cuZ3ctb3BlbnNjaWVuY2Uub3JnL3N0YXRpYy9pbWFnZXMvbG9nby12aXJnby10cmFuc3BfYmNrZy5wbmc= + aHR0cDovL3d3dy52aXJnby1ndy5ldS8= @@ -2907,4 +3324,4 @@ -
+ \ No newline at end of file diff --git a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityContentprovider.java b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityContentprovider.java index 432892af..a7297a42 100644 --- a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityContentprovider.java +++ b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityContentprovider.java @@ -71,11 +71,6 @@ public class CommunityContentprovider { } - @Override - public String toString() { - return String.format("id %s, name %s, selection criteria %s", this.openaireId, this.name, toJson()); - } - public String toJson() { if (selectioncriteria == null) { return ""; } try { @@ -89,4 +84,21 @@ public class CommunityContentprovider { if (selectioncriteria == null) { return ""; } return ""; } + + @Override + public String toString() { + final StringBuilder builder = new StringBuilder(); + builder.append("CommunityContentprovider [\n\topenaireId = ") + .append(openaireId) + .append(",\n\tcommunityId = ") + .append(communityId) + .append(",\n\tname = ") + .append(name) + .append(",\n\tofficialname = ") + .append(officialname) + .append(",\n\tselectioncriteria = ") + .append(selectioncriteria) + .append("\n]"); + return builder.toString(); + } } diff --git a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityDetails.java b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityDetails.java index af17e5a3..3eb67c09 100644 --- a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityDetails.java +++ b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityDetails.java @@ -131,4 +131,49 @@ public class CommunityDetails extends CommunitySummary { this.otherZenodoCommunities = otherZenodoCommunities; } + @Override + public String toString() { + final StringBuilder builder = new StringBuilder(); + builder.append("CommunityDetails [\n\tcreationDate = ") + .append(creationDate) + .append(",\n\tlastUpdateDate = ") + .append(lastUpdateDate) + .append(",\n\tsubjects = ") + .append(subjects) + .append(",\n\tfos = ") + .append(fos) + .append(",\n\tsdg = ") + .append(sdg) + .append(",\n\tadvancedConstraints = ") + .append(advancedConstraints) + .append(",\n\tremoveConstraints = ") + .append(removeConstraints) + .append(",\n\tclaim = ") + .append(claim) + .append(",\n\tmembership = ") + .append(membership) + .append(",\n\totherZenodoCommunities = ") + .append(otherZenodoCommunities) + .append(",\n\tid = ") + .append(id) + .append(",\n\tqueryId = ") + .append(queryId) + .append(",\n\ttype = ") + .append(type) + .append(",\n\tname = ") + .append(name) + .append(",\n\tshortName = ") + .append(shortName) + .append(",\n\tdescription = ") + .append(description) + .append(",\n\tlogoUrl = ") + .append(logoUrl) + .append(",\n\tstatus = ") + .append(status) + .append(",\n\tzenodoCommunity = ") + .append(zenodoCommunity) + .append("\n]"); + return builder.toString(); + } + } diff --git a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityOrganization.java b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityOrganization.java index 5446513b..f0129b48 100644 --- a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityOrganization.java +++ b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityOrganization.java @@ -60,4 +60,19 @@ public class CommunityOrganization { this.website_url = website_url; return this; } + + @Override + public String toString() { + final StringBuilder builder = new StringBuilder(); + builder.append("CommunityOrganization [\n\tcommunityId = ") + .append(communityId) + .append(",\n\tname = ") + .append(name) + .append(",\n\tlogo_url = ") + .append(logo_url) + .append(",\n\twebsite_url = ") + .append(website_url) + .append("\n]"); + return builder.toString(); + } } diff --git a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityProject.java b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityProject.java index 9f952bdb..05cb3d25 100644 --- a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityProject.java +++ b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/CommunityProject.java @@ -73,4 +73,23 @@ public class CommunityProject { this.grantId = grantId; } + @Override + public String toString() { + final StringBuilder builder = new StringBuilder(); + builder.append("CommunityProject [\n\topenaireId = ") + .append(openaireId) + .append(",\n\tcommunityId = ") + .append(communityId) + .append(",\n\tname = ") + .append(name) + .append(",\n\tacronym = ") + .append(acronym) + .append(",\n\tfunder = ") + .append(funder) + .append(",\n\tgrantId = ") + .append(grantId) + .append("\n]"); + return builder.toString(); + } + } diff --git a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/SubCommunity.java b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/SubCommunity.java index c6eedc12..5c6445b0 100644 --- a/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/SubCommunity.java +++ b/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/model/community/SubCommunity.java @@ -89,4 +89,25 @@ public class SubCommunity { this.claim = claim; } + @Override + public String toString() { + final StringBuilder builder = new StringBuilder(); + builder.append("SubCommunity [\n\tsubCommunityId = ") + .append(subCommunityId) + .append(",\n\tcommunityId = ") + .append(communityId) + .append(",\n\tparent = ") + .append(parent) + .append(",\n\tlabel = ") + .append(label) + .append(",\n\tcategory = ") + .append(category) + .append(",\n\tparams = ") + .append(params) + .append(",\n\tclaim = ") + .append(claim) + .append("\n]"); + return builder.toString(); + } + }