Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/Buffer-7.0.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Buffer-7.0
The themes for Buffer 7.0 are -
Problem Statement:
Farmers usually decide irrigation systems, fertilisers used and next crop to be grown based on experience alone, no data, no precision.
40% of crop losses in India are due to improper temperature, moisture & pH conditions, all preventable, based on previous data.
No instant alerts are provided, and problems are detected only when visible damage appears. By then it is already too late.
In a nutshell, real time crop health percentage and actionabilities are displayed to the farmer.

In this project, we have used:
Tree Data Structure (Decision Tree)
ArrayLists, Hashmap, LinkedList, PriorityQueue (Heap), Custom Objects (Classes)

Video link:
https://drive.google.com/drive/folders/162KtzR86uqoaGvlt7xmZl8wVf60M5KkJ

1. Enterprise Systems & Process Optimization
2. GreenTech
3. Cybersecurity and Digital Defense
4. Open Innovation
1 change: 1 addition & 0 deletions Team 101- Farmforecast/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

38 changes: 38 additions & 0 deletions Team 101- Farmforecast/demo/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>


<groupId>com.buffer</groupId>
<artifactId>demo</artifactId>
<version>1.0-SNAPSHOT</version>


<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<mainClass>com.buffer.GreenTechDSA</mainClass>
</configuration>
</plugin>
</plugins>
</build>


</project>
Loading