forked from perma-id/w3id.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Sebastiano-G/w3id.org
- Loading branch information
Showing
166 changed files
with
2,590 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Turn off MultiViews | ||
Options -MultiViews | ||
|
||
# Directive to ensure *.rdf files served as appropriate content type, | ||
# if not present in main apache config | ||
AddType application/rdf+xml .rdf | ||
AddType application/rdf+xml .owl | ||
AddType text/turtle .ttl | ||
AddType application/n-triples .n3 | ||
AddType application/ld+json .jsonld | ||
# Rewrite engine setup | ||
RewriteEngine On | ||
#Change the path to the folder here | ||
# RewriteBase https://github.com/kai-vu/companion-planting-decision-support/ | ||
|
||
# Rewrite rule to serve JSON-LD content from the vocabulary URI if requested | ||
# Placed before HTML to support serving JSON-LD from a browser (e.g., JSON Playground) | ||
RewriteCond %{HTTP_ACCEPT} application/ld\+json | ||
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.jsonld [R=303,L] | ||
|
||
# Rewrite rule to serve HTML content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} !application/rdf\+xml.*(text/html|application/xhtml\+xml) | ||
RewriteCond %{HTTP_ACCEPT} text/html [OR] | ||
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml [OR] | ||
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.* | ||
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/index.html [R=303,L] | ||
|
||
# Rewrite rule to serve RDF/XML content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} \*/\* [OR] | ||
RewriteCond %{HTTP_ACCEPT} application/rdf\+xml | ||
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.owl [R=303,L] | ||
|
||
# Rewrite rule to serve N-Triples content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} application/n-triples | ||
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.nt [R=303,L] | ||
|
||
# Rewrite rule to serve TTL content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} text/turtle [OR] | ||
RewriteCond %{HTTP_ACCEPT} text/\* [OR] | ||
RewriteCond %{HTTP_ACCEPT} \*/turtle | ||
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.ttl [R=303,L] | ||
|
||
RewriteCond %{HTTP_ACCEPT} .+ | ||
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/406.html [R=406,L] | ||
# Default response | ||
# --------------------------- | ||
# Rewrite rule to serve the RDF/XML content from the vocabulary URI by default | ||
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.owl [R=303,L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Companion Planting Ontology | ||
|
||
## Introduction | ||
This repository contains the Companion Planting Ontology, a resource developed by the [Knowledge in AI](https://kai.cs.vu.nl/) group of Vrije Universiteit Amsterdam, for the purpose of understanding and implementing companion planting strategies in agriculture. Companion planting is the practice of growing certain plants in proximity for pest control, pollination, providing habitat for beneficial creatures, maximizing use of space, and to otherwise increase crop productivity. | ||
|
||
## Purpose of the Ontology | ||
- **Enhancing Agricultural Knowledge**: To provide a structured and detailed knowledge base about companion planting. | ||
- **Facilitating Decision Making**: To assist gardeners and farmers in making informed decisions about plant pairings. | ||
- **Promoting Biodiversity**: To encourage biodiversity in gardens and farms through informed plant choices. | ||
- **Optimizing Plant Health and Yield**: To help in selecting plant combinations that improve growth and yield. | ||
- **Pest Management**: To offer natural alternatives for pest control through strategic plant placement. | ||
- **Educational Tool**: To serve as an educational resource for students and enthusiasts in agriculture and gardening. | ||
|
||
## Competency Questions | ||
The ontology is designed to answer key questions that aid in understanding and applying companion planting principles effectively. Some of these questions include: | ||
|
||
- What plants are beneficial to grow together for pest control? | ||
- Which plant combinations should be avoided in a garden or farm setting? | ||
- What are the best companion plants for a specific crop (e.g., tomatoes)? | ||
- How can companion planting be used to combat specific pests (e.g., aphids)? | ||
|
||
Feel free to explore the ontology and contribute to its development. Your insights and feedback are valuable in enhancing this knowledge base. | ||
|
||
## Contact | ||
The mainteners of the ontology are researchers at the Knowledge in Artificial Intelligence group (kai.cs.vu.nl) at the Computer Science Department, Vrije Universiteit Amsterdam. | ||
|
||
**Currently responsible person**: Romana Pernisch (github: pernisch, email: [email protected]) | ||
|
||
Group contact: | ||
GitHub: kai-vu (https://github.com/kai-vu) | ||
Email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,10 @@ Webpage: https://fusion-jena.github.io/GerPS-Datafield | |
Redirect: https://w3id.org/GerPS-onto/FIMDatenfelder# > https://fusion-jena.github.io/GerPS-Datafield | ||
|
||
## Contact | ||
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID | | ||
|---------------------|-------------------------------------|--------------------------------|---------------------------------------|--------------------------------------------------|-------------------|------------------------------------------------| | ||
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0002-2197-8377 | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) | | ||
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) | | ||
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | ---- | [stbachinger](https://github.com/stbachinger) | | ||
| Silvia Lehmann | Friedrich-Schiller-Universität Jena | [email protected] | ---| 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- --- | [selvleh](https://github.com/silvleh) | | ||
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID | | ||
| -------------------- | ----------------------------------- | -------------------------------- | ------------------------------------- | ------------------------------------------------ | ----- | --------------------------------------------- | | ||
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0002-2197-8377 | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) | | ||
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) | | ||
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [stbachinger](https://github.com/stbachinger) | | ||
| Maximilian Enderling | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0007-5039-8538 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [BMI24](https://github.com/BMI24) | | ||
| Marianne Mauch | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0003-1478-1867 | 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- | [gitmagit](https://github.com/gitmagit) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,10 @@ Webpage: https://fusion-jena.github.io/gerps-ontology/ | |
Redirekt: https://w3id.org/GerPS-onto/ontology > https://fusion-jena.github.io/gerps-ontology/ | ||
|
||
## Contact | ||
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID | | ||
|---------------------|-------------------------------------|--------------------------------|---------------------------------------|--------------------------------------------------|-------------------|------------------------------------------------| | ||
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | --- | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) | | ||
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) | | ||
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | ---- | [stbachinger](https://github.com/stbachinger) | | ||
| Silvia Lehmann | Friedrich-Schiller-Universität Jena | [email protected] | ---| 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- --- | [selvleh](https://github.com/silvleh) | | ||
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID | | ||
| -------------------- | ----------------------------------- | -------------------------------- | ------------------------------------- | ------------------------------------------------ | ----- | --------------------------------------------- | | ||
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0002-2197-8377 | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) | | ||
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) | | ||
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [stbachinger](https://github.com/stbachinger) | | ||
| Maximilian Enderling | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0007-5039-8538 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [BMI24](https://github.com/BMI24) | | ||
| Marianne Mauch | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0003-1478-1867 | 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- | [gitmagit](https://github.com/gitmagit) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
RewriteEngine on | ||
RewriteRule ^$ https://zorzano.github.io/KITI/ontology/ [R=302,L] | ||
RewriteRule ^(.*)$ https://zorzano.github.io/KITI/ontology/$1 [R=302,L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## KITI repository | ||
This permanent w3id is meant to associate the KITI entry in w3id to its repository. KITI is a Knowledge Graph for the Internet of Things Ecosystem. Its ontology is published through w3id | ||
|
||
https://w3id.org/KITI/ontology redirects to https://zorzano.github.io/KITI/ontology/ | ||
|
||
Maintainer: Francisco Javier Zorzano Mier (@zorzano) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Enable CORS for all origins | ||
Header set Access-Control-Allow-Origin * | ||
|
||
# Turn off MultiViews to avoid conflicts | ||
Options -MultiViews | ||
|
||
# Rewrite engine setup | ||
RewriteEngine On | ||
|
||
# Base URL | ||
RewriteBase /OntoMS | ||
|
||
# Serve HTML content by default for browsers or text/html requests | ||
RewriteCond %{HTTP_ACCEPT} text/html [OR] | ||
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.* | ||
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ [R=303,L] | ||
|
||
# Redirect to Turtle representation for requests with text/turtle | ||
RewriteCond %{HTTP_ACCEPT} text/turtle [OR] | ||
RewriteCond %{HTTP_ACCEPT} application/x-turtle | ||
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.ttl [R=303,L] | ||
|
||
# Redirect to RDF/XML for application/rdf+xml requests | ||
RewriteCond %{HTTP_ACCEPT} application/rdf\+xml [OR] | ||
RewriteCond %{HTTP_ACCEPT} application/xml [OR] | ||
RewriteCond %{HTTP_ACCEPT} text/xml | ||
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.owl [R=303,L] | ||
|
||
# Redirect to JSON-LD for application/ld+json requests | ||
RewriteCond %{HTTP_ACCEPT} application/ld\+json [OR] | ||
RewriteCond %{HTTP_ACCEPT} application/json | ||
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.jsonld [R=303,L] | ||
|
||
# Redirect to N-Triples for application/n-triples or text/n3 requests | ||
RewriteCond %{HTTP_ACCEPT} application/n-triples [OR] | ||
RewriteCond %{HTTP_ACCEPT} text/n3 [OR] | ||
RewriteCond %{HTTP_ACCEPT} text/rdf+n3 | ||
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.nt [R=303,L] | ||
|
||
# Fallback: Serve HTML for any unsupported request | ||
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ [R=303,L] |
Oops, something went wrong.