diff --git a/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/CommunityImporterController.java b/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/CommunityImporterController.java index 04d85026..af903e65 100644 --- a/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/CommunityImporterController.java +++ b/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/CommunityImporterController.java @@ -29,10 +29,10 @@ import eu.dnetlib.openaire.community.db.CommunityService; import eu.dnetlib.openaire.exporter.exceptions.CommunityException; import eu.dnetlib.openaire.exporter.model.community.CommunityContentprovider; import eu.dnetlib.openaire.exporter.model.community.CommunityDetails; +import eu.dnetlib.openaire.exporter.model.community.CommunityMembershipType; import eu.dnetlib.openaire.exporter.model.community.CommunityOrganization; import eu.dnetlib.openaire.exporter.model.community.CommunityProject; import eu.dnetlib.openaire.exporter.model.community.CommunityStatus; -import eu.dnetlib.openaire.exporter.model.community.CommunitySummary; import eu.dnetlib.openaire.exporter.model.community.CommunityType; import eu.dnetlib.openaire.exporter.model.community.SubCommunity; import eu.dnetlib.openaire.exporter.model.community.selectioncriteria.SelectionCriteria; @@ -73,6 +73,7 @@ public class CommunityImporterController { private final static String CPROFILE_FOS = "fos"; private final static String CPROFILE_SDG = "sdg"; private final static String CPROFILE_ADVANCED_CONSTRAINT = "advancedConstraints"; + private final static String CPROFILE_REMOVE_CONSTRAINT = "removeConstraints"; // community project private final static String CPROJECT_FUNDER = "funder"; @@ -145,7 +146,7 @@ public class CommunityImporterController { private void importCommunity(final Context context) { try { - final CommunityDetails community = asCommunityProfile(context); + final CommunityDetails community = asCommunityDetails(context); final List datasources = getCommunityInfo(context, CONTENTPROVIDERS_ID_SUFFIX, c -> asCommunityDataprovider(context.getId(), c)); @@ -156,12 +157,18 @@ public class CommunityImporterController { final List orgs = getCommunityInfo(context, ORGANIZATION_ID_SUFFIX, c -> asCommunityOrganization(context.getId(), c)); + final List otherZenodoCimmunities = + getCommunityInfo(context, ZENODOCOMMUNITY_ID_SUFFIX, c -> asZenodoCommunity(c)); + + community.setOtherZenodoCommunities(otherZenodoCimmunities); + final List subs = context.getCategories() .entrySet() .stream() .filter(e -> !e.getKey().equals(context.getId() + CONTENTPROVIDERS_ID_SUFFIX)) .filter(e -> !e.getKey().equals(context.getId() + PROJECTS_ID_SUFFIX)) .filter(e -> !e.getKey().equals(context.getId() + ORGANIZATION_ID_SUFFIX)) + .filter(e -> !e.getKey().equals(context.getId() + ZENODOCOMMUNITY_ID_SUFFIX)) .map(e -> e.getValue()) .map(cat -> asSubCommunities(context.getId(), null, cat.getLabel(), cat.getConcepts())) .flatMap(List::stream) @@ -177,74 +184,64 @@ public class CommunityImporterController { } } - private static CommunitySummary asCommunitySummary(final Context c) { - final CommunitySummary summary = new CommunitySummary(); + private static CommunityDetails asCommunityDetails(final Context c) { - summary.setId(c.getId()); - summary.setShortName(c.getLabel()); - summary.setLastUpdateDate(convertToLocalDateTime(c.getLastUpdateDate())); - summary.setCreationDate(convertToLocalDateTime(c.getCreationDate())); - summary.setQueryId(c.getId() + PIPE_SEPARATOR + c.getLabel()); - summary.setType(CommunityType.valueOf(c.getType())); + final CommunityDetails details = new CommunityDetails(); + + details.setId(c.getId()); + details.setShortName(c.getLabel()); + details.setLastUpdateDate(convertToLocalDateTime(c.getLastUpdateDate())); + details.setCreationDate(convertToLocalDateTime(c.getCreationDate())); + details.setQueryId(c.getId() + PIPE_SEPARATOR + c.getLabel()); + details.setType(CommunityType.valueOf(c.getType())); + details.setMembership(CommunityMembershipType.open); + // TODO: Considerare anche i campi claim final Map> params = c.getParams(); if (params.containsKey(CSUMMARY_DESCRIPTION)) { - summary.setDescription(asCsv(params.get(CSUMMARY_DESCRIPTION))); + details.setDescription(asCsv(params.get(CSUMMARY_DESCRIPTION))); } if (params.containsKey(CSUMMARY_LOGOURL)) { - summary.setLogoUrl(asCsv(params.get(CSUMMARY_LOGOURL))); + details.setLogoUrl(asCsv(params.get(CSUMMARY_LOGOURL))); } if (params.containsKey(CSUMMARY_STATUS)) { - summary.setStatus(CommunityStatus.valueOf(firstValue(params, CSUMMARY_STATUS))); + details.setStatus(CommunityStatus.valueOf(firstValue(params, CSUMMARY_STATUS))); } if (params.containsKey(CSUMMARY_NAME)) { - summary.setName(asCsv(params.get(CSUMMARY_NAME))); + details.setName(asCsv(params.get(CSUMMARY_NAME))); } else { - summary.setName(c.getLabel()); + details.setName(c.getLabel()); } - - // TODO: gestire meglio le zenodo communities (main + other) if (params.containsKey(CSUMMARY_ZENODOC)) { - summary.setZenodoCommunity(asCsv(params.get(CSUMMARY_ZENODOC))); + details.setZenodoCommunity(asCsv(params.get(CSUMMARY_ZENODOC))); } - - // TODO: Considerare anche i campi membership e claim - - return summary; - } - - private static CommunityDetails asCommunityProfile(final Context c) { - - final CommunityDetails p = new CommunityDetails(asCommunitySummary(c)); - p.setLastUpdateDate(convertToLocalDateTime(c.getLastUpdateDate())); - final Map> params = c.getParams(); if (params.containsKey(CPROFILE_SUBJECT)) { - p.setSubjects(splitValues(asValues(params.get(CPROFILE_SUBJECT)), CSV_DELIMITER)); + details.setSubjects(splitValues(asValues(params.get(CPROFILE_SUBJECT)), CSV_DELIMITER)); } if (params.containsKey(CPROFILE_FOS)) { - p.setFos(splitValues(asValues(params.get(CPROFILE_FOS)), CSV_DELIMITER)); + details.setFos(splitValues(asValues(params.get(CPROFILE_FOS)), CSV_DELIMITER)); } if (params.containsKey(CPROFILE_SDG)) { - p.setSdg(splitValues(asValues(params.get(CPROFILE_SDG)), CSV_DELIMITER)); + details.setSdg(splitValues(asValues(params.get(CPROFILE_SDG)), CSV_DELIMITER)); } if (params.containsKey(CPROFILE_ADVANCED_CONSTRAINT)) { // In the map the string is the serialization of the json representing the selection criteria so it is a valid json - p.setAdvancedConstraints(SelectionCriteria.fromJson(asCsv(params.get(CPROFILE_ADVANCED_CONSTRAINT)))); - + details.setAdvancedConstraints(SelectionCriteria.fromJson(asCsv(params.get(CPROFILE_ADVANCED_CONSTRAINT)))); + } + if (params.containsKey(CPROFILE_REMOVE_CONSTRAINT)) { + // In the map the string is the serialization of the json representing the selection criteria so it is a valid json + details.setRemoveConstraints(SelectionCriteria.fromJson(asCsv(params.get(CPROFILE_REMOVE_CONSTRAINT)))); } - - // TODO Vanno considerati anche i REMOVE_CONSTRAINTS ? - if (params.containsKey(CPROFILE_CREATIONDATE)) { try { final Date d = org.apache.commons.lang3.time.DateUtils.parseDate(asCsv(params.get(CPROFILE_CREATIONDATE)), pattern); - p.setCreationDate(convertToLocalDateTime(d)); + details.setCreationDate(convertToLocalDateTime(d)); } catch (final Exception e) { log.debug("Exception on date format: " + e.getMessage()); } } - return p; + return details; } private static CommunityProject asCommunityProject(final String communityId, final Concept c) { @@ -281,6 +278,10 @@ public class CommunityImporterController { return o; } + private static String asZenodoCommunity(final Concept c) { + return firstValue(c.getParams(), CZENODOCOMMUNITY_ID); + } + private static List asSubCommunities(final String communityId, final String parent, final String category, final List concepts) { final List list = new ArrayList<>(); for (final Concept c : concepts) { diff --git a/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/db/CommunityService.java b/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/db/CommunityService.java index 1c38675e..d9e10a05 100644 --- a/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/db/CommunityService.java +++ b/apps/dnet-exporter-api/src/main/java/eu/dnetlib/openaire/community/db/CommunityService.java @@ -49,7 +49,8 @@ public class CommunityService { // 1) Import tramite profili: // 1.1) Completare CommunityImporterController // 2) Subcommunities: visualizzazione tramite le context api - // 3) Come ritornare i campi delle community_orgs ? + // 3) Come ritornare i campi delle community_orgs ? // Creare un metodo nuovo i valori devono arrivare dal wf di provision, esempio: + // https://services.openaire.eu/is/mvc/ui/isManager.do#/profile/4801c33c-66ca-4ab6-af64-aa812194ec61_V29ya2Zsb3dEU1Jlc291cmNlcy9Xb3JrZmxvd0RTUmVzb3VyY2VUeXBl // 4) Verificare Tickets: #8835, #8854, #6483, #3259, #3494 @Autowired diff --git a/apps/dnet-exporter-api/src/test/resources/eu/dnetlib/openaire/community/old_community_profile.xml b/apps/dnet-exporter-api/src/test/resources/eu/dnetlib/openaire/community/old_community_profile.xml new file mode 100644 index 00000000..8449a1ff --- /dev/null +++ b/apps/dnet-exporter-api/src/test/resources/eu/dnetlib/openaire/community/old_community_profile.xml @@ -0,0 +1,2910 @@ + +
+ + + + + +
+ + + + 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 + + + + + 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 + true + + + + + + jsdtl + + + + utc-martrec + + + + utc-uti + + + + stp + + + + c2smart + + + + stride-utc + + + + crowd4roads + + + + lemo + + + + imov3d + + + + tra2018 + + + + optimum + + + + stars + + + + iecteim + + + + iccpt2019 + + + + + + + BE OPEN + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL3NldHRpbmdzL2xvZ28tYmUtb3Blbi13aGl0ZS1iZy5zdmc= + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS8= + + + OpenAIRE + aHR0cHM6Ly93d3cub3BlbmFpcmUuZXUvdGVtcGxhdGVzL3lvb3RoZW1lL2NhY2hlLzI5L0xvZ29fSG9yaXpvbnRhbC0yOWZhMjBmNC53ZWJw + aHR0cHM6Ly93d3cub3BlbmFpcmUuZXU= + + + CERTH-HIT + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2NlcnRoLWhpdC1feDE0MC5wbmc/dG9rZW49NjIxZjE2NzdkNjgwZjM0Mzg0ODVlYjc4NmRlZDY2MjA= + aHR0cHM6Ly93d3cuY2VydGguZ3I= + + + Athena Research Center + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2FyYy1feDE0MC5wbmc/dG9rZW49ZmM3YWE1ZTg3NjgyMzk3ZTZmMDk0NmUyNzZlMDE0MjU= + aHR0cHM6Ly93d3cuYXRoZW5hcmMuZ3IvZW4vaG9tZQ== + + + DLR + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2Rsci1feDE0MC5wbmc/dG9rZW49ZjZmYjNhNmNkNjc1YzM0OGZmNmMyMzcwZDJlYzE5ZWE= + aHR0cHM6Ly93d3cuZGxyLmRlLw== + + + ECTRI + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2VjdHJpLV94MTQwLnBuZz90b2tlbj02ODZhMjdlNWE1OTE1YjU1YjQ3MWEyNGU5NzI2ZDkzYg== + aHR0cHM6Ly93d3cuZWN0cmkub3JnLw== + + + EURNEX + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2V1cm5leC1feDE0MC5wbmc/dG9rZW49NTNiYjBkYWRkZjBhMTgxYTgxMzJmYWFmM2QyMjBlM2E= + aHR0cHM6Ly93d3cuZXVybmV4Lm9yZy8= + + + European Association of Aviation Training and Education Organizations + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2VhdGVvLV94MTQwLnBuZz90b2tlbj1hOTU3NWM5OWI1Mzg1YTE0NWJmZDM3ODY5NDVlZGJhNQ== + aHR0cDovL2VhdGVvLmV1Lw== + + + FEHRL + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2ZlaHJsLV94MTQwLnBuZz90b2tlbj1kYWNlYmUyOTU1NGQzNjJkZDNjMjg1ZTA3ZjQ1NjVhOA== + aHR0cHM6Ly93d3cuZmVocmwub3JnLw== + + + FIT consulting + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL21vdmluZy1pbm5vdmF0aW9uLV94MTQwLnBuZz90b2tlbj01ZDlkOWU5ZmM5MmY5MzBiZmI3NzlmMzI5Y2EzMzZjZA== + aHR0cHM6Ly93d3cuZml0Y29uc3VsdGluZy5pdC8= + + + HUMANIST + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2h1bWFuaXN0LV94MTQwLnBuZz90b2tlbj00NDRiNTNhOGYwNTk1NGY4YTE4YTZlYmM0OWExYTliYw== + aHR0cDovL3d3dy5odW1hbmlzdC12Y2UuZXUv + + + Institute of Transport Economics + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3RvaS1feDE0MC5wbmc/dG9rZW49ODdmNzY2OTFhYWQ4ZDU2ZWIwY2NmMDU1Nzc1OWI5ZDI= + aHR0cHM6Ly93d3cudG9pLm5vL2VuZ2xpc2gv + + + Konnekt-able + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL2tvbm5la3RhYmxlLV94MTQwLnBuZz90b2tlbj0xNzRhOWYzMjdjYTJhOTU4YzZmYjE2MmEyNGU3MjhiOA== + aHR0cHM6Ly93d3cua29ubmVrdGFibGUubmV0Lw== + + + National Technical University of Athens + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL250dWFfMS1feDE0MC5wbmc/dG9rZW49OTNiZTZhNDUzOWFlNmVmNGRhYjRlY2RmOTliNzIxMTI= + aHR0cHM6Ly93d3cubnR1YS5nci9lbg== + + + Osborne Carke + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL29zYm9ybmUtY2xhcmtlLV94MTQwLnBuZz90b2tlbj0wZGQ3NWFiNGQ0NGYxYmFiOTQ3MTc1OWUyNDA4MGM3Yw== + aHR0cHM6Ly93d3cub3Nib3JuZWNsYXJrZS5jb20v + + + Scipedia + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3NjaXBlZGlhLV94MTQwLnBuZz90b2tlbj02YTM5MzAxMWQwMTdjOGY0M2E3ZDcyZWZjZWRiMzNiZA== + aHR0cHM6Ly93d3cuc2NpcGVkaWEuY29tLw== + + + UITP + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3VpdHAtX3gxNDAucG5nP3Rva2VuPTg2ZWEyNWYwZjIyMjliNzIxYmYyNmI4Y2YzNDFkYTJk + aHR0cHM6Ly93d3cudWl0cC5vcmcv + + + VDI/VDE-IT + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3ZkaXZkZS1pdC1sb2dvLV94MTQwLnBuZz90b2tlbj1kZmM0ZTJiMDgwOWE0MDc3ZTQzMThiNTg2ODU5MjZmOQ== + aHR0cHM6Ly92ZGl2ZGUtaXQuZGUv + + + WEGEMT + aHR0cHM6Ly9iZW9wZW4tcHJvamVjdC5ldS9zdG9yYWdlL2ZpbGVzL3dlZ2VtdC1feDE0MC5wbmc/dG9rZW49ZThkNzY1MGFjNGJlZjhkNjhkMDZkOTRlMTYzMTFmMWM= + aHR0cDovL3d3dy53ZWdlbXQuY29tLw== + + + + + + + +