Project

General

Profile

« Previous | Next » 

Revision 52274

Change ContextUtils to get concept label from new Context API

View differences:

modules/uoa-claims/trunk/src/test/java/eu/dnetlib/data/claims/migration/parser/DMFParserTest.java
104 104
        Context context = dmfContextHandler.extractContextFromDMF(contextDmf);
105 105

  
106 106
        Assert.assertEquals("egi::country::gr", context.getOpenaireId());
107
        Assert.assertEquals("EGI> EGI Countries> Greece", context.getTitle());
107
        Assert.assertEquals("EGI Federation> EGI Countries> Greece", context.getTitle());
108 108
    }
109 109

  
110 110
}
modules/uoa-claims/trunk/src/test/java/eu/dnetlib/data/claims/migration/parser/ContextUtilsTest.java
1
package eu.dnetlib.data.claims.migration.parser;
2

  
3
import eu.dnetlib.data.claimsDemo.ContextUtils;
4
import org.junit.Assert;
5
import org.junit.Test;
6

  
7
/**
8
 * Created by argirok on 29/5/2018.
9
 */
10
public class ContextUtilsTest {
11

  
12
    @Test
13
    public void dmf2ContextTest() throws Exception {
14

  
15
        String id= "egi::country::gr";
16

  
17
        Assert.assertEquals("EGI Federation> EGI Countries> Greece", ContextUtils.extractLabel(id));
18
        id= "egi";
19
        Assert.assertEquals("EGI Federation", ContextUtils.extractLabel(id));
20
        id="egi::classification";
21
        Assert.assertEquals("EGI Federation> EGI classification scheme", ContextUtils.extractLabel(id));
22
        id="egi::classification::natsc";
23
        Assert.assertEquals("EGI Federation> EGI classification scheme> Natural Sciences", ContextUtils.extractLabel(id));
24
        id="egi::classification::natsc::math";
25
        Assert.assertEquals("EGI Federation> EGI classification scheme> Mathematics", ContextUtils.extractLabel(id));
26
        id="egi::classification::natsc::math::applied";
27
        Assert.assertEquals("EGI Federation> EGI classification scheme> Applied Mathematics", ContextUtils.extractLabel(id));
28
        id="egi::classification::natsc::math::applied";
29
        Assert.assertEquals("EGI Federation> EGI classification scheme> Applied Mathematics", ContextUtils.extractLabel(id));
30
        id="aginfra::projects";
31
        Assert.assertEquals("AGINFRA+> AGINFRA+ Projects", ContextUtils.extractLabel(id));
32
        id="aginfra::projects::1";
33
        Assert.assertEquals("AGINFRA+> AGINFRA+ Projects> European Foodbusiness Transfer Laboratory for stimulating entrepreneurial skills, for fostering innovation and for business creation in the Food Sector", ContextUtils.extractLabel(id));
34

  
35
/*
36

  
37
0
38
id	"aginfra::projects"
39
label	"AGINFRA+ Projects"
40
1
41
id	"aginfra::subcommunity"
42
label	"AGINFRA+ communities"
43
0
44
id	"aginfra::projects::1"
45
label	"European Foodbusiness Transfer Laboratory for stimulating entrepreneurial skills, for fostering innovation and for business creation in the Food Sector"
46
concepts
47
 */
48
    }
49
}
modules/uoa-claims/trunk/src/main/java/eu/dnetlib/data/claims/migration/handler/DMFContextHandler.java
1 1
package eu.dnetlib.data.claims.migration.handler;
2 2

  
3
import eu.dnetlib.api.enabling.ISLookUpService;
4 3
import eu.dnetlib.data.claims.migration.entity.Context;
5 4
import eu.dnetlib.data.claims.migration.parser.DMFParser;
6 5
import eu.dnetlib.data.claimsDemo.ContextUtils;
7 6
import eu.dnetlib.data.claimsDemo.QueryGenerator;
8 7
import eu.dnetlib.data.claimsDemo.SQLStoreException;
9 8
import eu.dnetlib.data.claimsDemo.SqlDAO;
10
import gr.uoa.di.driver.util.ServiceLocator;
11 9
import org.apache.log4j.Logger;
12 10
import org.xml.sax.SAXException;
13 11

  
......
51 49
        }
52 50
        context.setOpenaireId(openaireId);
53 51
        try {
54
            context.setTitle(ContextUtils.extractEgiLabel(context.getOpenaireId()));
52
            context.setTitle(ContextUtils.extractLabel(context.getOpenaireId()));
55 53

  
56 54
        } catch (Exception e) {
57 55
            log.error("ContextUtils: Couldn't get Egi label for id " + context.getOpenaireId(),e);
modules/uoa-claims/trunk/src/main/java/eu/dnetlib/data/claimsDemo/ContextUtils.java
1 1
package eu.dnetlib.data.claimsDemo;
2 2

  
3
import eu.dnetlib.api.enabling.ISLookUpService;
3
import com.google.gson.Gson;
4 4
import eu.dnetlib.data.claims.migration.handler.ClaimHandler;
5 5
import org.apache.log4j.Logger;
6
import org.w3c.dom.Document;
7
import org.w3c.dom.Node;
8
import org.w3c.dom.NodeList;
9
import org.xml.sax.SAXException;
10 6

  
11
import javax.xml.parsers.DocumentBuilder;
12
import javax.xml.parsers.DocumentBuilderFactory;
13
import javax.xml.parsers.ParserConfigurationException;
14
import javax.xml.xpath.*;
15
import java.io.IOException;
16
import java.io.InputStream;
7
import java.util.List;
17 8

  
18 9
/**
19 10
 * Created by kiatrop on 27/1/2016.
20 11
 */
21 12
public class ContextUtils {
22 13
    private static final Logger logger = Logger.getLogger(ClaimHandler.class);
14
    private SearchUtils searchUtils = new SearchUtils();
23 15

  
24
//        private static Document document = null;
16
    public static String extractLabel(String code) throws Exception {
17
        String[] codeParts = code.split("::");
18
        String level0 = "";
19
        String level1 = "";
20
        String level2 = "";
21
        String level3 = "";
22
        if (codeParts.length >0) {
23
            String json = SearchUtils.fetchContext("s/");
24
            level0 = getLabel(json, codeParts[0]);
25
        }
26
        if (codeParts.length >1) {
27
            String json = SearchUtils.fetchContext("/"+codeParts[0]);
28
            level1 = getLabel(json, codeParts[0]+"::"+codeParts[1]);
29
        }
30
        if (codeParts.length >2) {
31
            String json = SearchUtils.fetchContext("/category/"+codeParts[0]+"::"+codeParts[1]);
32
            level2 = getLabel(json, codeParts[0]+"::"+codeParts[1]+"::"+codeParts[2]);
33
        }
34
        if (codeParts.length >3) {
35
            String json = SearchUtils.fetchContext("/category/concept/"+codeParts[0]+"::"+codeParts[1]+"::"+codeParts[2]);
36
            level3 = getSubLabel(json, codeParts[0]+"::"+codeParts[1]+"::"+codeParts[2], codeParts[0]+"::"+codeParts[1]+"::"+codeParts[2]+"::"+codeParts[3],((codeParts.length>4)?(codeParts[0]+"::"+codeParts[1]+"::"+codeParts[2]+"::"+codeParts[3]+"::"+codeParts[4]):null));
37
        }
25 38

  
26
        //private static String isLookUpAddress = "http://node6.t.openaire.research-infrastructures.eu:8280/is/services/isLookUp";
27
        //String registryAddress = "http://node6.t.openaire.research-infrastructures.eu:8280/is/services/isRegistry";
28 39

  
29
    private ISLookUpService isLookUpService = null;
40
        return level0+(level1.length()>0?("> "+level1+ (level3.length()>0?("> "+level3):((level2.length()>0)?("> "+level2 ):""))):"");
30 41

  
31
    public static Document getXmlDocument(String communityId) {
32
        Document document = null;
33
        InputStream inputStream = ContextUtils.class.getClassLoader().getResourceAsStream("eu/dnetlib/data/claimsDemo/"+communityId+".xml");
34
        System.out.println("eu/dnetlib/data/claimsDemo/"+communityId+".xml");
35
        DocumentBuilderFactory factory =  DocumentBuilderFactory.newInstance();
36
        DocumentBuilder builder = null;
37
        try {
38
            builder = factory.newDocumentBuilder();
42
    }
39 43

  
40
        } catch (ParserConfigurationException e) {
41
            logger.error("Parse configuration Exception",e);
44
    public static String getLabel(String json, String  id) {
45
         if (json == null) {
46
            return null;
42 47
        }
48
        Gson gson = new Gson();
49
        Concept[] concepts = gson.fromJson(json, Concept[].class);
43 50

  
44
        //StringBuilder xmlStringBuilder = new StringBuilder();
45
        try {
46
            document = builder.parse(inputStream);
51
        if (concepts != null && concepts.length > 0) {
52
            for (int i = 0; i < concepts.length; i++) {
47 53

  
48
        } catch (SAXException e) {
49
            logger.error("SAXException",e);
54
                Concept concept = concepts[i];
55
                if(concept.type !=null && (concept.type.equals("funding"))){
56
                    continue;
57
                }
50 58

  
51
        } catch (IOException e) {
52
            logger.error("IOException",e);
53
        }
54
        return document;
55
    }
59
                    if (concept.id.equals(id)) {
60
                        return concept.label;
61
                    }
56 62

  
57
    public static String extractEgiLabel(String code) throws XPathExpressionException {
58
        String[] codeParts = code.split("::");
59
        StringBuilder builder = new StringBuilder();
63
                }
64
            }
60 65

  
61
        StringBuilder reconstructedCode = new StringBuilder();
62
        if (codeParts.length > 0) {
63
            reconstructedCode.append(codeParts[0]);
66
        return "";
67

  
68
    }
69
    private static String getSubLabel(String json, String  id, String subId, String subsubId) {
70
        if (json == null) {
71
            return null;
64 72
        }
73
        Gson gson = new Gson();
74
        Concept[] concepts = gson.fromJson(json, Concept[].class);
65 75

  
66
        for(int i=0; i< codeParts.length; i++) {
67
            if (i == 0) {
68
                //System.out.println("1");
69
                builder.append(findContextLabel(reconstructedCode.toString(),codeParts[0]));
76
        if (concepts != null && concepts.length > 0) {
77
            for (int i = 0; i < concepts.length; i++) {
70 78

  
71
            } else if (i == 1) {
72
                reconstructedCode.append("::").append(codeParts[1]);
73
                builder.append("> ").append(findCategoryLabel(reconstructedCode.toString(),codeParts[0]));
79
                Concept concept = concepts[i];
80
                if(concept.type !=null && (concept.type.equals("funding"))){
81
                    continue;
82
                }
74 83

  
75
            } else {
76
                reconstructedCode.append("::").append(codeParts[i]);
77
                builder.append("> ").append(findConceptLabel(reconstructedCode.toString(),codeParts[0]));
84
                    if (concept.id.equals(id)) {
85
                        if (concept.getConcepts() != null) {
86
                            for (int j = 0; j < concept.getConcepts().size(); j++) {
87
                                Concept subConcept = concept.getConcepts().get(j);
88
                                if (subConcept.id.equals(subId)){
89
                                    if(subsubId == null ||subConcept.concepts ==null) {
90
                                        return subConcept.label;
91
                                    }else{
92
                                        for (int k = 0; k < subConcept.getConcepts().size(); k++) {
93
                                            Concept subSubConcept = subConcept.getConcepts().get(k);
94
                                            if (subSubConcept.id.equals(subsubId)) {
95
                                                return subSubConcept.label;
96
                                            }
97
                                        }
98
                                    }
99
                                    break;
100
                                }
101

  
102
                            }
103
                        }
104
                    }
105

  
78 106
            }
107
        } else {
108
            return null;
79 109
        }
110
        return "";
80 111

  
81
        return builder.toString();
82 112
    }
83 113

  
84 114

  
85
    private static String findContextLabel(String conceptCode, String communityId) throws XPathExpressionException {
86
//        System.out.println("concept code: " + conceptCode) ;
87
        XPathFactory xPathfactory = XPathFactory.newInstance();
88
        XPath xpath = xPathfactory.newXPath();
89 115

  
90
        XPathExpression expr = xpath.compile("//context[@id='"+ conceptCode + "']");
91
        NodeList nodeList = (NodeList)expr.evaluate(getXmlDocument(communityId),  XPathConstants.NODESET);
116
        class Concept{
117
            String id;
118
            String label;
119
            String type;
120
            Boolean hasSubConcept;
121
            List<Concept> concepts;
92 122

  
93
        Node nNode = nodeList.item(0);
94
        return nNode.getAttributes().getNamedItem("label").getTextContent();
95
    }
123
            public String getId() {
124
                return id;
125
            }
96 126

  
97
    private static String findCategoryLabel(String categoryCode, String communityId) throws XPathExpressionException {
98
//      System.out.println("Category code: " + categoryCode) ;
99
        XPathFactory xPathfactory = XPathFactory.newInstance();
100
        XPath xpath = xPathfactory.newXPath();
127
            public void setId(String id) {
128
                this.id = id;
129
            }
101 130

  
102
        XPathExpression expr = xpath.compile("//category[@id='"+ categoryCode + "']");
103
        NodeList nodeList = (NodeList)expr.evaluate(getXmlDocument(communityId),  XPathConstants.NODESET);
131
            public String getLabel() {
132
                return label;
133
            }
104 134

  
105
        Node nNode = nodeList.item(0);
106
        return nNode.getAttributes().getNamedItem("label").getTextContent();
107
    }
135
            public void setLabel(String label) {
136
                this.label = label;
137
            }
108 138

  
109
    private static String findConceptLabel(String conceptCode, String communityId) throws XPathExpressionException {
110
//        System.out.println("Concept code: " + conceptCode) ;
111
        XPathFactory xPathfactory = XPathFactory.newInstance();
112
        XPath xpath = xPathfactory.newXPath();
139
            public String getType() {
140
                return type;
141
            }
113 142

  
114
        XPathExpression expr = xpath.compile("//concept[@id='"+ conceptCode + "']");
115
        NodeList nodeList = (NodeList)expr.evaluate(getXmlDocument(communityId),  XPathConstants.NODESET);
143
            public void setType(String type) {
144
                this.type = type;
145
            }
116 146

  
117
        Node nNode = nodeList.item(0);
118
        return nNode.getAttributes().getNamedItem("label").getTextContent();
147
            public Boolean getHasSubConcept() {
148
                return hasSubConcept;
149
            }
150

  
151
            public void setHasSubConcept(Boolean hasSubConcept) {
152
                this.hasSubConcept = hasSubConcept;
153
            }
154

  
155
            public List<Concept> getConcepts() {
156
                return concepts;
157
            }
158

  
159
            public void setConcepts(List<Concept> concepts) {
160
                this.concepts = concepts;
161
            }
162

  
163
            @Override
164
            public String toString() {
165
                return "Concept{" +
166
                        "id='" + id + '\'' +
167
                        ", label='" + label + '\'' +
168
                        ", type='" + type + '\'' +
169
                        ", hasSubConcept=" + hasSubConcept +
170
                        ", concepts=" + concepts +
171
                        '}';
172
            }
173
        }
174

  
175
    public static void main(String[] args) throws Exception {
176
        System.out.println(ContextUtils.extractLabel("egi::classification::natsc::math::applied"));
119 177
    }
120

  
121 178
}
modules/uoa-claims/trunk/src/main/java/eu/dnetlib/data/claimsDemo/SearchUtils.java
44 44
    private static String dataciteNewAPIUrl="https://api.datacite.org/works/";
45 45
    private static String orcidUrlPrefix="https://pub.orcid.org/v2.1/";
46 46
    private static String orcidUrlSuffix="/works";
47
//    private static String contextsAPIUrl="https://dev-openaire.d4science.org/openaire/context";
48
    private static String contextsAPIUrl="http://beta.services.openaire.eu:8080/openaire/context";
47 49
    private boolean useApi=true;
48 50
    private ClaimValidation claimValidation = null;
49 51

  
......
113 115

  
114 116
            return getRequest(getOrcidUrl(id));
115 117
    }
118
    public static String fetchContext(String suffix) throws Exception{
116 119

  
120
        return getRequest(getContextsAPIUrl()+suffix);
121
    }
122

  
117 123
     public static String getProjectApiUrl(String id, boolean production)  {
118 124

  
119 125
        return ((production)?apiUrlForProjectsProduction:apiUrlForProjects)+"/projects?openaireProjectID="+id;
......
146 152

  
147 153
        return orcidUrlPrefix+id+orcidUrlSuffix;
148 154
    }
155
    private static String getContextsAPIUrl()  {
149 156

  
157
        return contextsAPIUrl;
158
    }
150 159

  
151 160
    /**
152 161
     * Get result and objIdentifier  form openaire Search
modules/uoa-claims/trunk/src/main/resources/eu/dnetlib/data/claims/migration/springContext-claimsDemo.properties
15 15
services.claims.mail.angularUrl = http://duffy.di.uoa.gr:3000/claims-project-manager?token=
16 16
services.claims.mail.specialRecipients = invalid_recipient@email.com
17 17

  
18
services.claimsDemo.results.pathToSaveRecord = /home/argirok/claims_www/records/
19
services.claimsDemo.reports.pathToSaveReport = /home/argirok/claims_www/reports/
18
services.claimsDemo.results.pathToSaveRecord = /home/argirok/claims/records/
19
services.claimsDemo.reports.pathToSaveReport = /home/argirok/claims/reports/
modules/uoa-claims/trunk/src/main/resources/eu/dnetlib/data/claimsDemo/aginfra.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<RESOURCE_PROFILE>
3
    <HEADER>
4
        <RESOURCE_IDENTIFIER value="87eac9b0-7339-4a10-8d02-272e5c2de391_Q29udGV4dERTUmVzb3VyY2VzL0NvbnRleHREU1Jlc291cmNlVHlwZQ=="/>
5
        <RESOURCE_TYPE value="ContextDSResourceType"/>
6
        <RESOURCE_KIND value="ContextDSResources"/>
7
        <RESOURCE_URI value=""/>
8
        <DATE_OF_CREATION value="2018-05-03T13:12:39+00:00"/>
9
    </HEADER>
10
    <BODY>
11
        <CONFIGURATION>
12
            <context type="community" id="aginfra" label="AGINFRA+">
13
                <param name="hidden">true</param>
14
                <param name="description">AGINFRA+</param>
15
                <param name="logourl"/>
16
                <param name="name">AGINFRA+</param>
17
                <param name="manager">argirokokogiannaki@gmail.com,alessia.bardi@isti.cnr.it,pedroprincipe@sdum.uminho.pt</param>
18
                <param name="subject">food security, forestry, agricolture, agri, food, fisheries and aquaculture, food safety and human nutrition, plant production and protection, animal production and health, food distribution, information management, agri-food economics and policy, forestry, agri-food education and extension, natural resources and environment, farming practices and systems, agriculture - general, food technology, engineering technology and Research</param>
19
                <param name="suggestedAcknowledgement">AGINFRA+ - Accelerating user-driven e-infrastructure innovation in Food &amp; Agriculture has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 731001.</param>
20
                <category id="aginfra::projects" claim="true" label="AGINFRA+ Projects">
21
                    <concept claim="true" id="aginfra::projects::1" label="European Foodbusiness Transfer Laboratory for stimulating entrepreneurial skills, for fostering innovation and for business creation in the Food Sector">
22
                        <param name="projectfullname">European Foodbusiness Transfer Laboratory for stimulating entrepreneurial skills, for fostering innovation and for business creation in the Food Sector</param>
23
                        <param name="CD_PROJECT_NUMBER">554453-EPP-1-2014-1-FR-EPPKA2-KA</param>
24
                        <param name="url">https://foodlab-eu.com/project</param>
25
                        <param name="fundingSchema">Erasmus+</param>
26
                        <param name="funder"/>
27
                        <param name="acronym">FOODLAB</param>
28
                        <param name="suggestedAcknowledgement">The European Commission support for the production of this publication does not constitute endorsement of the contents which reflects the views only of the authors, and the Commission cannot be held responsible for any use which may be made of the information contained therein.</param>
29
                    </concept>
30
                    <concept claim="true" id="aginfra::projects::2" label="Transnational training for improving professionals' knowledge on grapevine virus">
31
                        <param name="projectfullname">Transnational training for improving professionals' knowledge on grapevine virus</param>
32
                        <param name="CD_PROJECT_NUMBER">2015-1-FR1-KA202-015329</param>
33
                        <param name="url">http://www.pathogen-project.eu/</param>
34
                        <param name="fundingSchema">Erasmus+</param>
35
                        <param name="funder"/>
36
                        <param name="acronym">PATHOGEN</param>
37
                        <param name="suggestedAcknowledgement"/>
38
                    </concept>
39
                    <concept claim="true" id="aginfra::projects::3" label="Farm-Oriented Open Data in Europe">
40
                        <param name="projectfullname">Farm-Oriented Open Data in Europe</param>
41
                        <param name="CD_PROJECT_NUMBER">621074</param>
42
                        <param name="url">http://www.foodie-project.eu/index.php</param>
43
                        <param name="fundingSchema">ICT-PSP</param>
44
                        <param name="funder"/>
45
                        <param name="acronym">FOODIE</param>
46
                        <param name="suggestedAcknowledgement">This project is partially funded under the ICT Policy Support Programme (ICT PSP) as part of the Competitiveness and Innovation Framework Programme by the European Commission under grant agreement no. 621074</param>
47
                        <param name="example">http://www.foodie-project.eu/downloads.php?idc=35</param>
48
                    </concept>
49
                    <concept claim="true" id="aginfra::projects::4" label="Increasing the efficiency of farming through on open standards based AgroIT platform">
50
                        <param name="projectfullname">Increasing the efficiency of farming through on open standards based AgroIT platform</param>
51
                        <param name="CD_PROJECT_NUMBER">621031</param>
52
                        <param name="url">https://www.agroit.eu/</param>
53
                        <param name="fundingSchema">ICT-PSP</param>
54
                        <param name="funder"/>
55
                        <param name="acronym">AgroIT</param>
56
                        <param name="suggestedAcknowledgement">This project is partially funded by the European Community under the ICT Policy Support Programme (ICT PSP)</param>
57
                    </concept>
58
                    <concept label="None" id="aginfra::projects::5" claim="true">
59
                        <param name="CD_PROJECT_NUMBER">LIFE13 ENVFR/001512</param>
60
                        <param name="url">http://www.adviclim.eu/</param>
61
                        <param name="fundingSchema">LIFE</param>
62
                        <param name="funder"/>
63
                        <param name="acronym">Adviclim</param>
64
                        <param name="suggestedAcknowledgement">With the contribution of the LIFE financial instrument of the European Union under the contract number: LIFE13 ENVFR/001512</param>
65
                    </concept>
66
                    <concept claim="true" id="aginfra::projects::6" label="Strengthening European Food Chain Sustainability by Quality and Procurement Policy">
67
                        <param name="projectfullname">Strengthening European Food Chain Sustainability by Quality and Procurement Policy</param>
68
                        <param name="CD_PROJECT_NUMBER">678024</param>
69
                        <param name="url">https://www.strength2food.eu/</param>
70
                        <param name="fundingSchema">H2020</param>
71
                        <param name="funder">EC</param>
72
                        <param name="acronym">Strength2Food</param>
73
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 678024.</param>
74
                        <param name="example">https://www.strength2food.eu/publications/</param>
75
                    </concept>
76
                    <concept label="Future Internet Business Collaboration Networks in Agri-Food, Transport and Logistics" claim="true" id="aginfra::projects::7">
77
                        <param name="projectfullname">Future Internet Business Collaboration Networks in Agri-Food, Transport and Logistics</param>
78
                        <param name="CD_PROJECT_NUMBER">604123</param>
79
                        <param name="url">https://www.fispace.eu/</param>
80
                        <param name="fundingSchema">FP7</param>
81
                        <param name="funder">EC</param>
82
                        <param name="acronym">FIspace</param>
83
                        <param name="suggestedAcknowledgement">FIspace has received funding from the European Commission under the FP7 programme.</param>
84
                        <param name="example">https://www.fispace.eu/publications.html</param>
85
                    </concept>
86
                    <concept claim="true" id="aginfra::projects::8" label="Personalised public services in support of the implementation of the Common Agricultural Policy">
87
                        <param name="projectfullname">Personalised public services in support of the implementation of the Common Agricultural Policy</param>
88
                        <param name="CD_PROJECT_NUMBER">693171</param>
89
                        <param name="url">https://www.recap-h2020.eu/</param>
90
                        <param name="fundingSchema">H2020</param>
91
                        <param name="funder">EC</param>
92
                        <param name="acronym">RECAP</param>
93
                        <param name="suggestedAcknowledgement"> This project has received funding from the European Union's Horizon 2020 Research and Innovation Programme under Grant Agreement No. 693171.</param>
94
                    </concept>
95
                    <concept claim="true" id="aginfra::projects::9" label="Metrics, Models and Foresight for European SUStainable Food And Nutrition Security">
96
                        <param name="projectfullname">Metrics, Models and Foresight for European SUStainable Food And Nutrition Security</param>
97
                        <param name="CD_PROJECT_NUMBER">633692</param>
98
                        <param name="url">http://www.susfans.org/</param>
99
                        <param name="fundingSchema">H2020</param>
100
                        <param name="funder">EC</param>
101
                        <param name="acronym">SUSFANS</param>
102
                        <param name="suggestedAcknowledgement"/>
103
                        <param name="example">http://www.susfans.org/portfolio</param>
104
                    </concept>
105
                    <concept label="Integrated and innovative key actions for mycotoxin management in the food and feed chain" id="aginfra::projects::10" claim="true">
106
                        <param name="projectfullname">Integrated and innovative key actions for mycotoxin management in the food and feed chain</param>
107
                        <param name="CD_PROJECT_NUMBER">678781</param>
108
                        <param name="url">http://www.mycokey.eu/</param>
109
                        <param name="fundingSchema">H2020</param>
110
                        <param name="funder">EC</param>
111
                        <param name="acronym">MycoKey</param>
112
                    </concept>
113
                    <concept label="Smart Food and Agribusiness: Future Internet for Safe and Healthy Food from Farm to Fork" claim="true" id="aginfra::projects::11">
114
                        <param name="projectfullname">Smart Food and Agribusiness: Future Internet for Safe and Healthy Food from Farm to Fork</param>
115
                        <param name="CD_PROJECT_NUMBER">285326</param>
116
                        <param name="url">http://smartagrifood.eu/</param>
117
                        <param name="fundingSchema">FP7</param>
118
                        <param name="funder">EC</param>
119
                        <param name="acronym">SmartAgriFood</param>
120
                        <param name="suggestedAcknowledgement">SmartAgriFood is funded by the EU Seventh Framework Programme under the FI.ICT-2011.1.8 Work Programme</param>
121
                    </concept>
122
                    <concept id="aginfra::projects::12" claim="true" label="Tools for Assessment and Planning of Aquaculture Sustainability">
123
                        <param name="projectfullname">Tools for Assessment and Planning of Aquaculture Sustainability</param>
124
                        <param name="CD_PROJECT_NUMBER">678396</param>
125
                        <param name="url">http://tapas-h2020.eu/</param>
126
                        <param name="fundingSchema">H2020</param>
127
                        <param name="funder">EC</param>
128
                        <param name="acronym">TAPAS</param>
129
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 678396.</param>
130
                        <param name="example">http://tapas-h2020.eu/home-publications/</param>
131
                    </concept>
132
                    <concept id="aginfra::projects::13" label="Next generation, Cost-effective, Compact, Multifunctional Web Enabled Ocean Sensor Systems Empowering Marine, Maritime and Fisheries Management" claim="true">
133
                        <param name="projectfullname">Next generation, Cost-effective, Compact, Multifunctional Web Enabled Ocean Sensor Systems Empowering Marine, Maritime and Fisheries Management</param>
134
                        <param name="CD_PROJECT_NUMBER">614102</param>
135
                        <param name="url">http://www.nexosproject.eu/</param>
136
                        <param name="fundingSchema">FP7</param>
137
                        <param name="funder">EC</param>
138
                        <param name="acronym">NeXOS</param>
139
                        <param name="suggestedAcknowledgement">NeXOS has received funding from the European Union’s Seventh Programme for research, technological development and demonstration under grant agreement No 614102</param>
140
                        <param name="example">http://www.nexosproject.eu/dissemination/publications</param>
141
                    </concept>
142
                    <concept id="aginfra::projects::14" label="Robot Fleets for Highly Effective Agriculture and Forestry Management" claim="true">
143
                        <param name="projectfullname">Robot Fleets for Highly Effective Agriculture and Forestry Management</param>
144
                        <param name="CD_PROJECT_NUMBER">245986</param>
145
                        <param name="url">http://www.rhea-project.eu/</param>
146
                        <param name="fundingSchema">FP7</param>
147
                        <param name="funder">EC</param>
148
                        <param name="acronym">RHEA</param>
149
                        <param name="suggestedAcknowledgement">The research leading to these results has received funding from the European Union’s Seventh Framework Programme [FP7/2007-2013] under Grant Agreement nº 245986 </param>
150
                        <param name="example">http://www.rhea-project.eu/Workshops/Workshop1/RHEA-2011-_Proceedings_of_the_1st_RHEA-WorkShop.pdf</param>
151
                    </concept>
152
                    <concept label="Optimizing the management and sustainable use of forest genetic resources in Europe" claim="true" id="aginfra::projects::15">
153
                        <param name="projectfullname">Optimizing the management and sustainable use of forest genetic resources in Europe</param>
154
                        <param name="CD_PROJECT_NUMBER">676876</param>
155
                        <param name="url">http://www.gentree-h2020.eu/</param>
156
                        <param name="fundingSchema">H2020</param>
157
                        <param name="funder">EC</param>
158
                        <param name="acronym">GENTREE</param>
159
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 676876.</param>
160
                        <param name="example">http://www.gentree-h2020.eu/resources/publications/</param>
161
                    </concept>
162
                    <concept label="Distributed, Integrated and Harmonised Forest Information for Bioeconomy Outlooks" claim="true" id="aginfra::projects::16">
163
                        <param name="projectfullname">Distributed, Integrated and Harmonised Forest Information for Bioeconomy Outlooks</param>
164
                        <param name="CD_PROJECT_NUMBER">633464</param>
165
                        <param name="url">http://diabolo-project.eu/</param>
166
                        <param name="fundingSchema">H2020</param>
167
                        <param name="funder">EC</param>
168
                        <param name="acronym">DIABOLO</param>
169
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 633464.</param>
170
                        <param name="example">http://diabolo-project.eu/category/research-papers/</param>
171
                    </concept>
172
                    <concept id="aginfra::projects::17" label="PROVIding smart DElivery of public goods by EU agriculture and forestry" claim="true">
173
                        <param name="projectfullname">PROVIding smart DElivery of public goods by EU agriculture and forestry</param>
174
                        <param name="CD_PROJECT_NUMBER">633838</param>
175
                        <param name="url">http://www.provide-project.eu/</param>
176
                        <param name="fundingSchema">H2020</param>
177
                        <param name="funder">EC</param>
178
                        <param name="acronym">PROVIDE</param>
179
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 633838.</param>
180
                    </concept>
181
                    <concept id="aginfra::projects::18" claim="true" label="Agricultural Low Cost Integral System of nodes with communication networks for remote water management with sensors and monitoring of the vegetative state of crops">
182
                        <param name="projectfullname">Agricultural Low Cost Integral System of nodes with communication networks for remote water management with sensors and monitoring of the vegetative state of crops</param>
183
                        <param name="CD_PROJECT_NUMBER">618123</param>
184
                        <param name="url">http://www.ict-agri.eu/node/38662</param>
185
                        <param name="fundingSchema">FP7</param>
186
                        <param name="funder">EC</param>
187
                        <param name="acronym">ICT-AGRI</param>
188
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Seventh Framework Programme for research, technological development and demonstration under grant agreement no 618123 [ICT-AGRI 2].</param>
189
                    </concept>
190
                    <concept claim="true" id="aginfra::projects::19" label="LAND Management: Assessment, Research, Knowledge base">
191
                        <param name="projectfullname">LAND Management: Assessment, Research, Knowledge base</param>
192
                        <param name="CD_PROJECT_NUMBER">635201</param>
193
                        <param name="url">http://landmark2020.eu/</param>
194
                        <param name="fundingSchema">H2020</param>
195
                        <param name="funder">EC</param>
196
                        <param name="acronym">LANDMARK</param>
197
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 635201.</param>
198
                        <param name="example">http://landmark2020.eu/publication-trees/</param>
199
                    </concept>
200
                    <concept label="Soil Care for profitable and sustainable crop production in Europe" claim="true" id="aginfra::projects::20">
201
                        <param name="projectfullname">Soil Care for profitable and sustainable crop production in Europe</param>
202
                        <param name="CD_PROJECT_NUMBER">677407</param>
203
                        <param name="url">https://www.soilcare-project.eu/</param>
204
                        <param name="fundingSchema">H2020</param>
205
                        <param name="funder">EC</param>
206
                        <param name="acronym">SOILCARE</param>
207
                        <param name="suggestedAcknowledgement">The SOILCARE project is co-funded by European Commission, Directorate General for Research under Framework Programme HORIZON 2020, [H2020-SFS-2015-2] (Contract Number [677407])</param>
208
                    </concept>
209
                    <concept id="aginfra::projects::21" label="Innovative tools enabling drinking WATER PROTECTion in rural and urban environments" claim="true">
210
                        <param name="projectfullname">Innovative tools enabling drinking WATER PROTECTion in rural and urban environments</param>
211
                        <param name="CD_PROJECT_NUMBER">727450</param>
212
                        <param name="url">https://water-protect.eu/</param>
213
                        <param name="fundingSchema">H2020</param>
214
                        <param name="funder">EC</param>
215
                        <param name="acronym">WATERPROTECT</param>
216
                        <param name="suggestedAcknowledgement"/>
217
                    </concept>
218
                    <concept label="None" claim="true" id="aginfra::projects::22">
219
                        <param name="CD_PROJECT_NUMBER">654182</param>
220
                        <param name="url">http://www.envriplus.eu/</param>
221
                        <param name="fundingSchema">H2020</param>
222
                        <param name="funder">EC</param>
223
                        <param name="acronym">ENVRIplus</param>
224
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 654182.</param>
225
                        <param name="example">http://www.envriplus.eu/publications/</param>
226
                    </concept>
227
                    <concept claim="true" label="Internet of Food and Farm 2020" id="aginfra::projects::23">
228
                        <param name="projectfullname">Internet of Food and Farm 2020</param>
229
                        <param name="CD_PROJECT_NUMBER">731884</param>
230
                        <param name="url">https://www.iof2020.eu/</param>
231
                        <param name="fundingSchema">H2020</param>
232
                        <param name="funder">EC</param>
233
                        <param name="acronym">IOF2020</param>
234
                        <param name="suggestedAcknowledgement">IoF2020 has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement no. 731884</param>
235
                    </concept>
236
                    <concept label="Sweet Pepper Harvesting Robot" claim="true" id="aginfra::projects::24">
237
                        <param name="projectfullname">Sweet Pepper Harvesting Robot</param>
238
                        <param name="CD_PROJECT_NUMBER">644313</param>
239
                        <param name="url">http://www.sweeper-robot.eu/</param>
240
                        <param name="fundingSchema">H2020</param>
241
                        <param name="funder">EC</param>
242
                        <param name="acronym">SWEEPER</param>
243
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 644313.</param>
244
                    </concept>
245
                    <concept id="aginfra::projects::25" label="Future Internet Enabled Agricultural Applications" claim="true">
246
                        <param name="projectfullname">Future Internet Enabled Agricultural Applications</param>
247
                        <param name="CD_PROJECT_NUMBER">632874</param>
248
                        <param name="url">http://fractals-fp7.com/</param>
249
                        <param name="fundingSchema">FP7</param>
250
                        <param name="funder">EC</param>
251
                        <param name="acronym">FRACTALS</param>
252
                        <param name="suggestedAcknowledgement"/>
253
                    </concept>
254
                    <concept id="aginfra::projects::26" label="Low-cost, hand-held, and non-invasive optical sensor for multiparametric field analysis of grapes and leaves in vineyards" claim="true">
255
                        <param name="projectfullname">Low-cost, hand-held, and non-invasive optical sensor for multiparametric field analysis of grapes and leaves in vineyards</param>
256
                        <param name="CD_PROJECT_NUMBER">262011</param>
257
                        <param name="fundingSchema">FP7</param>
258
                        <param name="funder">EC</param>
259
                        <param name="acronym">PREMIVM</param>
260
                        <param name="suggestedAcknowledgement">The research leading to these results has received funding from the European Community’s Seventh Framework Programme FP7/2007-2013 managed by REA-Research Executive Agency under grant agreement n° 262011</param>
261
                    </concept>
262
                    <concept id="aginfra::projects::27" label="Space for Agricultural Innovation" claim="true">
263
                        <param name="projectfullname">Space for Agricultural Innovation</param>
264
                        <param name="CD_PROJECT_NUMBER">652642</param>
265
                        <param name="url">http://agrispin.eu/</param>
266
                        <param name="fundingSchema">H2020</param>
267
                        <param name="funder">EC</param>
268
                        <param name="acronym">AGRISPIN</param>
269
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 652642</param>
270
                        <param name="example">http://agrispin.eu/publicaons/</param>
271
                    </concept>
272
                    <concept id="aginfra::projects::28" label="Authentication and Authorisation for Research and Collaboration" claim="true">
273
                        <param name="projectfullname">Authentication and Authorisation for Research and Collaboration</param>
274
                        <param name="CD_PROJECT_NUMBER">730941</param>
275
                        <param name="url">https://aarc-project.eu/</param>
276
                        <param name="fundingSchema">H2020</param>
277
                        <param name="funder">EC</param>
278
                        <param name="acronym">AARC2</param>
279
                        <param name="suggestedAcknowledgement">AARC2 is funded by the European Union’s Horizon 2020 research and innovation programme under Grant Agreement 730941.</param>
280
                    </concept>
281
                    <concept claim="true" id="aginfra::projects::29" label="European Open Science Cloud - pilot">
282
                        <param name="projectfullname">European Open Science Cloud - pilot</param>
283
                        <param name="CD_PROJECT_NUMBER">739563</param>
284
                        <param name="url">https://eoscpilot.eu/</param>
285
                        <param name="fundingSchema">H2020</param>
286
                        <param name="funder">EC</param>
287
                        <param name="acronym">EOSC-pilot</param>
288
                        <param name="suggestedAcknowledgement">EOSCPilot.eu has received funding from the European Commission’s Horizon 2020 research and innovation programme under the Grant Agreement no 739563.</param>
289
                    </concept>
290
                    <concept label="BUSINESS INTELLIGENCE SERVICE FOR THE MANAGEMENT OF CROPS BASED ON CLOUD AND BIG DATA" id="aginfra::projects::30" claim="true">
291
                        <param name="projectfullname">BUSINESS INTELLIGENCE SERVICE FOR THE MANAGEMENT OF CROPS BASED ON CLOUD AND BIG DATA</param>
292
                        <param name="CD_PROJECT_NUMBER">672453</param>
293
                        <param name="fundingSchema">H2020</param>
294
                        <param name="funder">EC</param>
295
                        <param name="acronym">BYNSE</param>
296
                        <param name="suggestedAcknowledgement"/>
297
                    </concept>
298
                    <concept claim="true" id="aginfra::projects::31" label="Demonstration of a cloud-based precision farming management system for a sustainable and intensive agriculture to secure long-term food supply in Europe">
299
                        <param name="projectfullname">Demonstration of a cloud-based precision farming management system for a sustainable and intensive agriculture to secure long-term food supply in Europe</param>
300
                        <param name="CD_PROJECT_NUMBER">672655</param>
301
                        <param name="fundingSchema">H2020</param>
302
                        <param name="funder">EC</param>
303
                        <param name="acronym">AgriCloud</param>
304
                        <param name="suggestedAcknowledgement"/>
305
                    </concept>
306
                    <concept label="Demonstration of a cloud-based precision farming management system for a sustainable and intensive agriculture to secure long-term food supply in Europe - Phase II" id="aginfra::projects::32" claim="true">
307
                        <param name="projectfullname">Demonstration of a cloud-based precision farming management system for a sustainable and intensive agriculture to secure long-term food supply in Europe - Phase II</param>
308
                        <param name="CD_PROJECT_NUMBER">720176</param>
309
                        <param name="fundingSchema">H2020</param>
310
                        <param name="funder">EC</param>
311
                        <param name="acronym">AgriCloud P2</param>
312
                        <param name="suggestedAcknowledgement"/>
313
                    </concept>
314
                    <concept claim="true" label="Data-Driven Bioeconomy" id="aginfra::projects::33">
315
                        <param name="projectfullname">Data-Driven Bioeconomy</param>
316
                        <param name="CD_PROJECT_NUMBER">732064</param>
317
                        <param name="url">https://www.databio.eu/en/</param>
318
                        <param name="fundingSchema">H2020</param>
319
                        <param name="funder">EC</param>
320
                        <param name="acronym">DataBio</param>
321
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 732064</param>
322
                        <param name="example">https://www.databio.eu/en/publications/</param>
323
                    </concept>
324
                    <concept id="aginfra::projects::34" label="Safe Food and Feed through an Integrated ToolBox for Mycotoxin Management" claim="true">
325
                        <param name="projectfullname">Safe Food and Feed through an Integrated ToolBox for Mycotoxin Management</param>
326
                        <param name="CD_PROJECT_NUMBER">678012</param>
327
                        <param name="url">https://www.mytoolbox.eu/</param>
328
                        <param name="fundingSchema">H2020</param>
329
                        <param name="funder">EC</param>
330
                        <param name="acronym">MyToolBox</param>
331
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme (link is external) under grant agreement No 678012.</param>
332
                        <param name="example">https://www.mytoolbox.eu/publications/papers</param>
333
                    </concept>
334
                    <concept claim="true" id="aginfra::projects::35" label="Drone-based integrated monitoring system for early detection of crop pathology and pest control in high tech greenhouse agriculture">
335
                        <param name="projectfullname">Drone-based integrated monitoring system for early detection of crop pathology and pest control in high tech greenhouse agriculture</param>
336
                        <param name="CD_PROJECT_NUMBER">697900</param>
337
                        <param name="fundingSchema">H2020</param>
338
                        <param name="funder">EC</param>
339
                        <param name="acronym">GIDROM</param>
340
                        <param name="suggestedAcknowledgement"/>
341
                    </concept>
342
                    <concept claim="true" label="Embedding crop diversity and networking for local high quality food systems" id="aginfra::projects::36">
343
                        <param name="projectfullname">Embedding crop diversity and networking for local high quality food systems</param>
344
                        <param name="CD_PROJECT_NUMBER">633571</param>
345
                        <param name="url">http://www.diversifood.eu/</param>
346
                        <param name="fundingSchema">H2020</param>
347
                        <param name="funder">EC</param>
348
                        <param name="acronym">DIVERSIFOOD</param>
349
                        <param name="suggestedAcknowledgement">This project received funding from the European Union's Horizon 2020 Research and Innovation program under Grant Agreement n° 633571</param>
350
                        <param name="example">http://www.diversifood.eu/publications/</param>
351
                    </concept>
352
                    <concept claim="true" id="aginfra::projects::37" label="Traditional tomato varieties and cultural practices: a case for agricultural diversification with impact on food security and health of European population">
353
                        <param name="projectfullname">Traditional tomato varieties and cultural practices: a case for agricultural diversification with impact on food security and health of European population</param>
354
                        <param name="CD_PROJECT_NUMBER">634561</param>
355
                        <param name="url">http://traditom.eu/</param>
356
                        <param name="fundingSchema">H2020</param>
357
                        <param name="funder">EC</param>
358
                        <param name="acronym">TRADITOM</param>
359
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 634561.</param>
360
                        <param name="example">http://traditom.eu/publications/</param>
361
                    </concept>
362
                    <concept label="Linking genetic resources, genomes and phenotypes of Solanaceous crops" claim="true" id="aginfra::projects::38">
363
                        <param name="projectfullname">Linking genetic resources, genomes and phenotypes of Solanaceous crops</param>
364
                        <param name="CD_PROJECT_NUMBER">677379</param>
365
                        <param name="url">http://www.g2p-sol.eu/</param>
366
                        <param name="fundingSchema">H2020</param>
367
                        <param name="funder">EC</param>
368
                        <param name="acronym">G2P-SOL</param>
369
                        <param name="suggestedAcknowledgement">The G2P-SOL project (Title: Linking genetic resources, genomes and phenotypes of Solanaceous crops) has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 677379.</param>
370
                        <param name="example">http://www.g2p-sol.eu/Publications.html</param>
371
                    </concept>
372
                    <concept label="Improve performance of organic agriculture by boosting organic seed and plant breeding efforts across Europe" claim="true" id="aginfra::projects::39">
373
                        <param name="projectfullname">Improve performance of organic agriculture by boosting organic seed and plant breeding efforts across Europe</param>
374
                        <param name="CD_PROJECT_NUMBER">727230</param>
375
                        <param name="url">https://www.liveseed.eu/</param>
376
                        <param name="fundingSchema">H2020</param>
377
                        <param name="funder">EC</param>
378
                        <param name="acronym">LIVESEED</param>
379
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 727230 and by the Swiss State Secretariat for Education, Research and Innovation under contract number 17.00090.</param>
380
                        <param name="example">https://www.liveseed.eu/resources/scientific-articles/</param>
381
                    </concept>
382
                    <concept id="aginfra::projects::40" claim="true" label="Transition paths to sustainable legume based systems in Europe">
383
                        <param name="projectfullname">Transition paths to sustainable legume based systems in Europe</param>
384
                        <param name="CD_PROJECT_NUMBER">727973</param>
385
                        <param name="url">https://www.true-project.eu/</param>
386
                        <param name="fundingSchema">H2020</param>
387
                        <param name="funder">EC</param>
388
                        <param name="acronym">TRUE</param>
389
                        <param name="suggestedAcknowledgement"> TRansition paths to sUstainable legume-based systems in Europe (TRUE) has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No. 727973</param>
390
                        <param name="example">https://www.true-project.eu/resources-links/linked-resources/</param>
391
                    </concept>
392
                    <concept id="aginfra::projects::41" label="Innovine Project" claim="true">
393
                        <param name="projectfullname">Innovine Project</param>
394
                        <param name="CD_PROJECT_NUMBER">311775</param>
395
                        <param name="url">http://www.innovine.eu/home.html</param>
396
                        <param name="fundingSchema">FP7</param>
397
                        <param name="funder">EC</param>
398
                        <param name="acronym">INNOVINE</param>
399
                        <param name="suggestedAcknowledgement">Innovine is a European collaborative project that has received funding from the European Union’s Seventh Framework Programme for research, technological development and demonstration under grant agreement n° 311775.</param>
400
                        <param name="example">http://www.innovine.eu/publications-ressources.html</param>
401
                    </concept>
402
                    <concept label="None" id="aginfra::projects::42" claim="true">
403
                        <param name="CD_PROJECT_NUMBER">633531</param>
404
                        <param name="url">https://www.feed-a-gene.eu/</param>
405
                        <param name="fundingSchema">H2020</param>
406
                        <param name="funder">EC</param>
407
                        <param name="acronym">FEED-A-GENE</param>
408
                        <param name="suggestedAcknowledgement">The Feed-a-Gene Project has received funding from the European Union’s H2020 Programme under grant agreement no 633531.</param>
409
                        <param name="example">https://www.feed-a-gene.eu/media/scientific-papers</param>
410
                    </concept>
411
                    <concept claim="true" id="aginfra::projects::43" label="Multidisciplinary Approach to Practical and Acceptable Precision Livestock Farming for SMEs in Europe and world-wide">
412
                        <param name="projectfullname">Multidisciplinary Approach to Practical and Acceptable Precision Livestock Farming for SMEs in Europe and world-wide</param>
413
                        <param name="CD_PROJECT_NUMBER">227138</param>
414
                        <param name="fundingSchema">FP7</param>
415
                        <param name="funder">EC</param>
416
                        <param name="acronym">BrightAnimal</param>
417
                        <param name="suggestedAcknowledgement"/>
418
                    </concept>
419
                    <concept claim="true" id="aginfra::projects::44" label="Practical implementation of precision livestock technologies and services at European pig farms using the living lab methodology">
420
                        <param name="projectfullname">Practical implementation of precision livestock technologies and services at European pig farms using the living lab methodology</param>
421
                        <param name="CD_PROJECT_NUMBER">311989</param>
422
                        <param name="fundingSchema">FP7</param>
423
                        <param name="funder">EC</param>
424
                        <param name="acronym">ALL-SMART-PIGS</param>
425
                        <param name="suggestedAcknowledgement"/>
426
                    </concept>
427
                    <concept label="Innovative and sustainable systems combining automatic milking and precision grazing" claim="true" id="aginfra::projects::45">
428
                        <param name="projectfullname">Innovative and sustainable systems combining automatic milking and precision grazing</param>
429
                        <param name="CD_PROJECT_NUMBER">314879</param>
430
                        <param name="url">https://autograssmilk.dk/</param>
431
                        <param name="fundingSchema">FP7</param>
432
                        <param name="funder">EC</param>
433
                        <param name="acronym">AUTOGRASSMILK</param>
434
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Seventh Framework Programme managed by REA-Research Executive Agency [FP7/2007-2013] under grant agreement no. SME-2012-2-314879.</param>
435
                        <param name="example">https://autograssmilk.dk/litterature/</param>
436
                    </concept>
437
                    <concept label="DIVERSITY OF LOCAL PIG BREEDS AND PRODUCTION SYSTEMS FOR HIGH QUALITY TRADITIONAL PRODUCTS AND SUSTAINABLE PORK CHAINS" id="aginfra::projects::46" claim="true">
438
                        <param name="projectfullname">DIVERSITY OF LOCAL PIG BREEDS AND PRODUCTION SYSTEMS FOR HIGH QUALITY TRADITIONAL PRODUCTS AND SUSTAINABLE PORK CHAINS</param>
439
                        <param name="CD_PROJECT_NUMBER">634476</param>
440
                        <param name="url">https://treasure.kis.si/</param>
441
                        <param name="fundingSchema">H2020</param>
442
                        <param name="funder">EC</param>
443
                        <param name="acronym">TREASURE</param>
444
                        <param name="suggestedAcknowledgement"/>
445
                        <param name="example">https://treasure.kis.si/reviews-and-publications/</param>
446
                    </concept>
447
                    <concept id="aginfra::projects::47" claim="true" label="Innovative Management of Animal Genetic Resources">
448
                        <param name="projectfullname">Innovative Management of Animal Genetic Resources</param>
449
                        <param name="CD_PROJECT_NUMBER">677353</param>
450
                        <param name="url">http://www.imageh2020.eu/</param>
451
                        <param name="fundingSchema">H2020</param>
452
                        <param name="funder">EC</param>
453
                        <param name="acronym">IMAGE</param>
454
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 677353</param>
455
                        <param name="example">http://www.imageh2020.eu/conteudo.php?idm=22&amp;lang=en</param>
456
                    </concept>
457
                    <concept id="aginfra::projects::48" label="Genomic management Tools to Optimise Resilience and Efficiency" claim="true">
458
                        <param name="projectfullname">Genomic management Tools to Optimise Resilience and Efficiency</param>
459
                        <param name="CD_PROJECT_NUMBER">727213</param>
460
                        <param name="url">https://www.gentore.eu/</param>
461
                        <param name="fundingSchema">H2020</param>
462
                        <param name="funder">EC</param>
463
                        <param name="acronym">GenTORE</param>
464
                        <param name="suggestedAcknowledgement">GenTORE is a Horizon 2020 project running from 1 June 2017 to 31 May 2022. This research received funding from the European Union's H2020 Research and Innovation Program under agreement No. 727213.</param>
465
                    </concept>
466
                    <concept claim="true" label="Towards an e-infrastructure Roadmap for Open Science in Agriculture" id="aginfra::projects::49">
467
                        <param name="projectfullname">Towards an e-infrastructure Roadmap for Open Science in Agriculture</param>
468
                        <param name="CD_PROJECT_NUMBER">730988</param>
469
                        <param name="url">http://www.erosa.aginfra.eu/</param>
470
                        <param name="fundingSchema">H2020</param>
471
                        <param name="funder">EC</param>
472
                        <param name="acronym">e-ROSA</param>
473
                        <param name="suggestedAcknowledgement">e-ROSA -  e-infrastructure Roadmap for Open Science in Agriculture has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 730988.</param>
474
                        <param name="example">http://www.erosa.aginfra.eu/publications</param>
475
                    </concept>
476
                    <concept claim="true" label="An Earth obseRvation Model based RicE information Service" id="aginfra::projects::50">
477
                        <param name="projectfullname">An Earth obseRvation Model based RicE information Service</param>
478
                        <param name="CD_PROJECT_NUMBER">606983</param>
479
                        <param name="fundingSchema">FP7</param>
480
                        <param name="funder">EC</param>
481
                        <param name="acronym">ERMES</param>
482
                        <param name="suggestedAcknowledgement"/>
483
                    </concept>
484
                    <concept claim="true" id="aginfra::projects::51" label="Sustainable techno-economic solutions for the agricultural value chain">
485
                        <param name="projectfullname">Sustainable techno-economic solutions for the agricultural value chain</param>
486
                        <param name="CD_PROJECT_NUMBER">690142</param>
487
                        <param name="url">http://www.agrocycle.eu/</param>
488
                        <param name="fundingSchema">H2020</param>
489
                        <param name="funder">EC</param>
490
                        <param name="acronym">AgroCycle</param>
491
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 690142</param>
492
                    </concept>
493
                    <concept label="Innovative approaches to turn agricultural waste into ecological and economic assets" id="aginfra::projects::52" claim="true">
494
                        <param name="projectfullname">Innovative approaches to turn agricultural waste into ecological and economic assets</param>
495
                        <param name="CD_PROJECT_NUMBER">688338</param>
496
                        <param name="url">http://noaw2020.eu/</param>
497
                        <param name="fundingSchema">H2020</param>
498
                        <param name="funder">EC</param>
499
                        <param name="acronym">NoAW</param>
500
                        <param name="suggestedAcknowledgement">The project leading to this application has funding from European Union’s Horizon 2020 research and innovation programme under grant agreement No 688338.</param>
501
                    </concept>
502
                    <concept id="aginfra::projects::53" label="Bringing added value to agriculture and forest sectors by closing the research and innovation divide" claim="true">
503
                        <param name="projectfullname">Bringing added value to agriculture and forest sectors by closing the research and innovation divide</param>
504
                        <param name="CD_PROJECT_NUMBER">696394</param>
505
                        <param name="url">http://www.agriforvalor.eu/</param>
506
                        <param name="fundingSchema">H2020</param>
507
                        <param name="funder">EC</param>
508
                        <param name="acronym">AGRIFORVALOR</param>
509
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union´s Horizon 2020 research and innovation programme under grant agreement No 696394.</param>
510
                        <param name="example">http://www.agriforvalor.eu/downloads/</param>
511
                    </concept>
512
                    <concept id="aginfra::projects::54" claim="true" label="NEFERTITI: Innovation in Demo Farms">
513
                        <param name="projectfullname">NEFERTITI: Innovation in Demo Farms</param>
514
                        <param name="CD_PROJECT_NUMBER">772705</param>
515
                        <param name="fundingSchema">H2020</param>
516
                        <param name="funder">EC</param>
517
                        <param name="acronym">NEFERTITI</param>
518
                        <param name="suggestedAcknowledgement">NEFERTITI has received funding from the European Union’s Horizon 2020 Programme for Research &amp; Innovation under grant agreement n°772705.</param>
519
                    </concept>
520
                    <concept claim="true" label="Collective Awareness PlatformS for Environmentally-sound Land management based on data technoLogies and Agrobiodiversity" id="aginfra::projects::55">
521
                        <param name="projectfullname">Collective Awareness PlatformS for Environmentally-sound Land management based on data technoLogies and Agrobiodiversity</param>
522
                        <param name="CD_PROJECT_NUMBER">688813</param>
523
                        <param name="url">http://www.capsella.eu/</param>
524
                        <param name="fundingSchema">H2020</param>
525
                        <param name="funder">EC</param>
526
                        <param name="acronym">CAPSELLA</param>
527
                        <param name="suggestedAcknowledgement">Capsella has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 688813</param>
528
                        <param name="example">http://www.capsella.eu/conference-papers/</param>
529
                    </concept>
530
                    <concept id="aginfra::projects::56" label="FArming Tools for external nutrient Inputs and water Management" claim="true">
531
                        <param name="projectfullname">FArming Tools for external nutrient Inputs and water Management</param>
532
                        <param name="CD_PROJECT_NUMBER">633945</param>
533
                        <param name="url">http://fatima-h2020.eu/</param>
534
                        <param name="fundingSchema">H2020</param>
535
                        <param name="funder">EC</param>
536
                        <param name="acronym">FATIMA</param>
537
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 633945.</param>
538
                    </concept>
539
                    <concept claim="true" label="Advisory platform for small farms based on earth observation" id="aginfra::projects::57">
540
                        <param name="projectfullname">Advisory platform for small farms based on earth observation</param>
541
                        <param name="CD_PROJECT_NUMBER">687412</param>
542
                        <param name="url">http://apollo-h2020.eu/</param>
543
                        <param name="fundingSchema">H2020</param>
544
                        <param name="funder">EC</param>
545
                        <param name="acronym">APOLLO</param>
546
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 687412.</param>
547
                    </concept>
548
                    <concept label="Data Driven Dairy Decisions 4 Farmers" claim="true" id="aginfra::projects::58">
549
                        <param name="projectfullname">Data Driven Dairy Decisions 4 Farmers</param>
550
                        <param name="CD_PROJECT_NUMBER">696367</param>
551
                        <param name="url">http://www.4d4f.eu/</param>
552
                        <param name="fundingSchema">H2020</param>
553
                        <param name="funder">EC</param>
554
                        <param name="acronym">4D4F</param>
555
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 696367.</param>
556
                    </concept>
557
                    <concept label="Aerial Data Collection and Analysis, and Automated Ground Intervention for Precision Farming" claim="true" id="aginfra::projects::59">
558
                        <param name="projectfullname">Aerial Data Collection and Analysis, and Automated Ground Intervention for Precision Farming</param>
559
                        <param name="CD_PROJECT_NUMBER">644227</param>
560
                        <param name="url">http://flourish-project.eu/</param>
561
                        <param name="fundingSchema">H2020</param>
562
                        <param name="funder">EC</param>
563
                        <param name="acronym">Flourish</param>
564
                        <param name="suggestedAcknowledgement">The Flourish project is funded by the European Community's Horizon 2020 programme under grant agreement no 644227-Flourish and from the Swiss State Secretariat for Education, Research and Innovation (SERI) under contract number 15.0029.</param>
565
                        <param name="example">http://flourish-project.eu/documents/</param>
566
                    </concept>
567
                    <concept claim="true" id="aginfra::projects::60" label="Integration of Farm Management Information Systems to support real-time management decisions and compliance of management standards">
568
                        <param name="projectfullname">Integration of Farm Management Information Systems to support real-time management decisions and compliance of management standards</param>
569
                        <param name="CD_PROJECT_NUMBER">212117</param>
570
                        <param name="url">http://www.futurefarm.eu/</param>
571
                        <param name="fundingSchema">FP7</param>
572
                        <param name="funder">EC</param>
573
                        <param name="acronym">FutureFarm</param>
574
                        <param name="suggestedAcknowledgement">Funded by the Seventh Research Framework Programme (FP7) of the European Union under the Cooperation programme in the Food, Agriculture, Fisheries and Biotechnology theme. Grant Agreement No 212117 (Work Programme KBBE-2007-1-4-05 "The farm of tomorrow").</param>
575
                        <param name="example">http://www.futurefarm.eu/publications</param>
576
                    </concept>
577
                    <concept id="aginfra::projects::61" claim="true" label="WATER AND ENERGY ADVANCED MANAGEMENT FOR IRRIGATION">
578
                        <param name="projectfullname">WATER AND ENERGY ADVANCED MANAGEMENT FOR IRRIGATION</param>
579
                        <param name="CD_PROJECT_NUMBER">619061</param>
580
                        <param name="fundingSchema">FP7</param>
581
                        <param name="funder">EC</param>
582
                        <param name="acronym">WEAM4i</param>
583
                        <param name="suggestedAcknowledgement"/>
584
                    </concept>
585
                    <concept label="A web-based system for real-time Monitoring and Decision Making for Integrated Vineyard Management" id="aginfra::projects::62" claim="true">
586
                        <param name="projectfullname">A web-based system for real-time Monitoring and Decision Making for Integrated Vineyard Management</param>
587
                        <param name="CD_PROJECT_NUMBER">262059</param>
588
                        <param name="url">http://www.modem-ivm.eu</param>
589
                        <param name="fundingSchema">FP7</param>
590
                        <param name="funder">EC</param>
591
                        <param name="acronym">MoDeM_IVM</param>
592
                        <param name="suggestedAcknowledgement">MoDeM_IVM is funded by the European Union's Seventh Framework Programme managed by REA-Research Executive Agency ([FP7/2007-2013] [ FP7/2007-2011]) under grant agreement n° [262059]</param>
593
                    </concept>
594
                    <concept claim="true" id="aginfra::projects::63" label="Crop, Livestock and Forests Integrated System for Intelligent Automation, Processing and Control">
595
                        <param name="projectfullname">Crop, Livestock and Forests Integrated System for Intelligent Automation, Processing and Control</param>
596
                        <param name="CD_PROJECT_NUMBER">604659</param>
597
                        <param name="url">http://www.clafis-project.eu/</param>
598
                        <param name="fundingSchema">FP7</param>
599
                        <param name="funder">EC</param>
600
                        <param name="acronym">CLAFIS</param>
601
                        <param name="suggestedAcknowledgement"/>
602
                        <param name="example">http://www.clafis-project.eu/index.php/dissemination</param>
603
                    </concept>
604
                    <concept label="Linked Open Earth Observation Data for Precision Farming" id="aginfra::projects::64" claim="true">
605
                        <param name="projectfullname">Linked Open Earth Observation Data for Precision Farming</param>
606
                        <param name="CD_PROJECT_NUMBER">611141</param>
607
                        <param name="url">http://www.linkedeodata.eu/</param>
608
                        <param name="fundingSchema">FP7</param>
609
                        <param name="funder">EC</param>
610
                        <param name="acronym">LEO</param>
611
                        <param name="suggestedAcknowledgement"/>
612
                        <param name="example">http://www.linkedeodata.eu/Publications</param>
613
                    </concept>
614
                    <concept label="AUTONOMOUS CLOUD-COMPUTING VINEYARD ROBOT TO OPTIMISE YIELD MANAGEMENT AND WINE QUALITY" claim="true" id="aginfra::projects::65">
615
                        <param name="projectfullname">AUTONOMOUS CLOUD-COMPUTING VINEYARD ROBOT TO OPTIMISE YIELD MANAGEMENT AND WINE QUALITY</param>
616
                        <param name="CD_PROJECT_NUMBER">605630</param>
617
                        <param name="url">http://vinbot.eu/</param>
618
                        <param name="fundingSchema">FP7</param>
619
                        <param name="funder">EC</param>
620
                        <param name="acronym">VINBOT</param>
621
                        <param name="suggestedAcknowledgement"/>
622
                    </concept>
623
                    <concept label="Online Professional Irrigation Scheduling Expert System" claim="true" id="aginfra::projects::66">
624
                        <param name="projectfullname">Online Professional Irrigation Scheduling Expert System</param>
625
                        <param name="CD_PROJECT_NUMBER">613717</param>
626
                        <param name="url">http://www.opiris.eu/</param>
627
                        <param name="fundingSchema">FP7</param>
628
                        <param name="funder">EC</param>
629
                        <param name="acronym">OpIRIS</param>
630
                        <param name="suggestedAcknowledgement"/>
631
                        <param name="example">http://www.opiris.eu/index.php/publications/</param>
632
                    </concept>
633
                    <concept claim="true" id="aginfra::projects::67" label="Development of an automatic irrigation and fertilization system">
634
                        <param name="projectfullname">Development of an automatic irrigation and fertilization system</param>
635
                        <param name="CD_PROJECT_NUMBER">286772</param>
636
                        <param name="fundingSchema">FP7</param>
637
                        <param name="funder">EC</param>
638
                        <param name="acronym">OPTIFERT</param>
639
                        <param name="suggestedAcknowledgement"/>
640
                    </concept>
641
                    <concept claim="true" label="A precise irrigation sensor system to provide an accurate indication of water status in crops and deliver increased yields to farmers" id="aginfra::projects::68">
642
                        <param name="projectfullname">A precise irrigation sensor system to provide an accurate indication of water status in crops and deliver increased yields to farmers</param>
643
                        <param name="CD_PROJECT_NUMBER">720032</param>
644
                        <param name="url">http://saturas-ag.com/</param>
645
                        <param name="fundingSchema">H2020</param>
646
                        <param name="funder">EC</param>
647
                        <param name="acronym">StemSense</param>
648
                        <param name="suggestedAcknowledgement"/>
649
                    </concept>
650
                    <concept claim="true" id="aginfra::projects::69" label="None">
651
                        <param name="CD_PROJECT_NUMBER">674786</param>
652
                        <param name="fundingSchema">H2020</param>
653
                        <param name="funder">EC</param>
654
                        <param name="acronym">VitiPrecision 2020</param>
655
                        <param name="suggestedAcknowledgement"/>
656
                    </concept>
657
                    <concept label="Robot shoots herbicide only on weeds, reducing usage by more than 90%" id="aginfra::projects::70" claim="true">
658
                        <param name="projectfullname">Robot shoots herbicide only on weeds, reducing usage by more than 90%</param>
659
                        <param name="CD_PROJECT_NUMBER">736354</param>
660
                        <param name="fundingSchema">H2020</param>
661
                        <param name="funder">EC</param>
662
                        <param name="acronym">ASTERIX</param>
663
                        <param name="suggestedAcknowledgement"/>
664
                    </concept>
665
                    <concept id="aginfra::projects::71" claim="true" label="Subarea specific irrigation system for pivot- and linear fertigation techniques">
666
                        <param name="projectfullname">Subarea specific irrigation system for pivot- and linear fertigation techniques</param>
667
                        <param name="CD_PROJECT_NUMBER">720184</param>
668
                        <param name="fundingSchema">H2020</param>
669
                        <param name="funder">EC</param>
670
                        <param name="acronym">SMART Fertigation</param>
671
                        <param name="suggestedAcknowledgement"/>
672
                    </concept>
673
                    <concept id="aginfra::projects::72" claim="true" label="Novel sensor based soil-plant-climate control system for European smart farming">
674
                        <param name="projectfullname">Novel sensor based soil-plant-climate control system for European smart farming</param>
675
                        <param name="CD_PROJECT_NUMBER">717797</param>
676
                        <param name="fundingSchema">H2020</param>
677
                        <param name="funder">EC</param>
678
                        <param name="acronym">SenSOP-II</param>
679
                        <param name="suggestedAcknowledgement"/>
680
                    </concept>
681
                    <concept id="aginfra::projects::73" label="Smart Irrigation Control System with 40% Savings in Water for Universal Use" claim="true">
682
                        <param name="projectfullname">Smart Irrigation Control System with 40% Savings in Water for Universal Use</param>
683
                        <param name="CD_PROJECT_NUMBER">720235</param>
684
                        <param name="url">http://yodfatengineers.com/</param>
685
                        <param name="fundingSchema">H2020</param>
686
                        <param name="funder">EC</param>
687
                        <param name="acronym">IRRISAVE</param>
688
                        <param name="suggestedAcknowledgement"/>
689
                    </concept>
690
                    <concept claim="true" label="Real time and online monitoring of the debittering stage in the table olive processing" id="aginfra::projects::74">
691
                        <param name="projectfullname">Real time and online monitoring of the debittering stage in the table olive processing</param>
692
                        <param name="CD_PROJECT_NUMBER">697335</param>
693
                        <param name="url">http://www.global-olive.es/en/</param>
694
                        <param name="fundingSchema">H2020</param>
695
                        <param name="funder">EC</param>
696
                        <param name="acronym">TELEOLIVA</param>
697
                        <param name="suggestedAcknowledgement"/>
698
                    </concept>
699
                    <concept id="aginfra::projects::75" claim="true" label="EARTH OBSERVATION FARMING">
700
                        <param name="projectfullname">EARTH OBSERVATION FARMING</param>
701
                        <param name="CD_PROJECT_NUMBER">650082</param>
702
                        <param name="fundingSchema">H2020</param>
703
                        <param name="funder">EC</param>
704
                        <param name="acronym">EO-FARM</param>
705
                        <param name="suggestedAcknowledgement"/>
706
                    </concept>
707
                    <concept id="aginfra::projects::76" claim="true" label="Interactive Soil Quality Assessment in Europe and China for Agricultural Productivity and Environmental Resilience">
708
                        <param name="projectfullname">Interactive Soil Quality Assessment in Europe and China for Agricultural Productivity and Environmental Resilience</param>
709
                        <param name="CD_PROJECT_NUMBER">635750</param>
710
                        <param name="url">http://www.isqaper-project.eu/</param>
711
                        <param name="fundingSchema">H2020</param>
712
                        <param name="funder">EC</param>
713
                        <param name="acronym">iSQAPER</param>
714
                        <param name="suggestedAcknowledgement">iSQAPER is funded by: - The European Union’s Horizon 2020 Programme for research &amp; innovation under grant agreement no 635750 - Ministry of Science and Technology, China (grant nr:2016YFE011270) - Chinese Academy of Sciences (grant nr:16146KYSB20150001) - Swiss State Secretariat for Education, Research and Innovation. Contract: 15.0170-1</param>
715
                        <param name="example">http://www.isqaper-project.eu/downloads/publications</param>
716
                    </concept>
717
                    <concept id="aginfra::projects::77" claim="true" label="Transfer of INNOvative techniques for sustainable WAter use in FERtigated crops">
718
                        <param name="projectfullname">Transfer of INNOvative techniques for sustainable WAter use in FERtigated crops</param>
719
                        <param name="CD_PROJECT_NUMBER">689687</param>
720
                        <param name="url">http://www.fertinnowa.com/</param>
721
                        <param name="fundingSchema">H2020</param>
722
                        <param name="funder">EC</param>
723
                        <param name="acronym">FERTINNOWA</param>
724
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 689687</param>
725
                    </concept>
726
                    <concept id="aginfra::projects::78" claim="true" label="Solutions for improving Agroecosystem and Crop Efficiency for water and nutrient use">
727
                        <param name="projectfullname">Solutions for improving Agroecosystem and Crop Efficiency for water and nutrient use</param>
728
                        <param name="CD_PROJECT_NUMBER">727247</param>
729
                        <param name="url">http://www.solace-eu.net/</param>
730
                        <param name="fundingSchema">H2020</param>
731
                        <param name="funder">EC</param>
732
                        <param name="acronym">SolACE</param>
733
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 727247 (SolACE)</param>
734
                        <param name="example">http://www.solace-eu.net/publications.html</param>
735
                    </concept>
736
                    <concept id="aginfra::projects::79" label="Shared Innovation Space for Sustainable Productivity of Grasslands in Europe" claim="true">
737
                        <param name="projectfullname">Shared Innovation Space for Sustainable Productivity of Grasslands in Europe</param>
738
                        <param name="CD_PROJECT_NUMBER">727368</param>
739
                        <param name="url">http://www.inno4grass.eu/en/</param>
740
                        <param name="fundingSchema">H2020</param>
741
                        <param name="funder">EC</param>
742
                        <param name="acronym">Inno4Grass</param>
743
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 727368</param>
744
                    </concept>
745
                    <concept id="aginfra::projects::80" claim="true" label="Peer-to-Peer Learning: Accessing Innovation through Demonstration">
746
                        <param name="projectfullname">Peer-to-Peer Learning: Accessing Innovation through Demonstration</param>
747
                        <param name="CD_PROJECT_NUMBER">727388</param>
748
                        <param name="url">https://www.plaid-h2020.eu/</param>
749
                        <param name="fundingSchema">H2020</param>
750
                        <param name="funder">EC</param>
751
                        <param name="acronym">PLAID</param>
752
                        <param name="suggestedAcknowledgement">This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 727388 (PLAID).</param>
753
                    </concept>
754
                </category>
755
                <category claim="true" label="AGINFRA+ communities" id="aginfra::subcommunity"/>
756
                <category label="AGINFRA+ Content providers" claim="false" id="aginfra::contentproviders">
757
                    <concept claim="true" id="aginfra::contentproviders::1" label="FoodTech">
758
                        <param name="openaireId">opendoar____::1a551829d50f1400b0dab21fdd969c04</param>
759
                        <param name="name"/>
760
                        <param name="officialname">Repository of the Faculty of Food Technology and Biotechnology</param>
761
                    </concept>
762
                    <concept claim="true" id="aginfra::contentproviders::2" label="CEMOA">
763
                        <param name="openaireId">opendoar____::49af6c4e558a7569d80eee2e035e2bd7</param>
764
                        <param name="name"/>
765
                        <param name="officialname">CemOA</param>
766
                    </concept>
767
                    <concept claim="true" id="aginfra::contentproviders::3" label="OEPRINTS">
768
                        <param name="openaireId">opendoar____::0266e33d3f546cb5436a10798e657d97</param>
769
                        <param name="name"/>
770
                        <param name="officialname">Organic Eprints</param>
771
                    </concept>
772
                    <concept label="AGRITROP" claim="true" id="aginfra::contentproviders::4">
773
                        <param name="openaireId">opendoar____::fd4c2dc64ccb8496e6f1f94c85f30d06</param>
774
                        <param name="name"/>
775
                        <param name="officialname">Agritrop</param>
776
                    </concept>
777
                    <concept claim="true" id="aginfra::contentproviders::5" label="EOA">
778
                        <param name="openaireId">opendoar____::41bfd20a38bb1b0bec75acf0845530a7</param>
779
                        <param name="name"/>
780
                        <param name="officialname">Epsilon Open Archive</param>
781
                    </concept>
782
                    <concept id="aginfra::contentproviders::6" label="OPINV" claim="true">
783
                        <param name="openaireId">opendoar____::87ae6fb631f7c8a627e8e28785d9992d</param>
784
                        <param name="name"/>
785
                        <param name="officialname">Opin Visindi</param>
786
                    </concept>
787
                </category>
788
            </context>
789
        </CONFIGURATION>
790
        <STATUS/>
791
        <SECURITY_PARAMETERS/>
792
    </BODY>
793
</RESOURCE_PROFILE>

Also available in: Unified diff