Spaces:
Sleeping
Sleeping
vikashkodati
commited on
Commit
β’
a77a325
1
Parent(s):
2afdd63
right context with sdk
Browse files
README.md
CHANGED
@@ -1,29 +1,47 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
|
7 |
-
#
|
8 |
|
9 |
-
|
10 |
|
11 |
-
|
12 |
|
13 |
-
|
14 |
-
-
|
15 |
-
-
|
16 |
-
-
|
|
|
17 |
|
|
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
|
22 |
-
- The Clay model **code** lives on [Github](https://github.com/Clay-foundation/model). License: [Apache](https://github.com/Clay-foundation/model/LICENSE). The latest release is [v0.0.1](https://github.com/Clay-foundation/model/releases/tag/v0.0.1)
|
23 |
-
- The Clay model **weights** on [Hugging Face](https://huggingface.co/made-with-clay/Clay/). License: [OpenRAIL-M](https://github.com/Clay-foundation/model/blob/main/LICENSE-MODEL.md).
|
24 |
-
- The Clay **documentation** [lives on this site](https://clay-foundation.github.io/model/). License: [CC-BY](http://creativecommons.org/licenses/by/4.0/).
|
25 |
-
- *Coming Soon* > We maintain a set of **embeddings** on [Source Cooperative](https://beta.source.coop/clay/). License: [ODC-BY](https://opendatacommons.org/licenses/by/).
|
26 |
|
27 |
-
|
28 |
|
|
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Terrasentinels
|
3 |
+
emoji: π
|
4 |
+
colorFrom: pink
|
5 |
+
colorTo: yellow
|
6 |
+
sdk: streamlit
|
7 |
+
sdk_version: 1.38.0
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
---
|
11 |
|
12 |
+
# Data Fetcher AI Agent
|
13 |
|
14 |
+
This Streamlit app simulates fetching Sentinel-2 satellite imagery data and storing it in a PostgreSQL database. It's designed to demonstrate the process of data collection and storage for further analysis using tools like MindsDB for anomaly detection.
|
15 |
|
16 |
+
## Features
|
17 |
|
18 |
+
- Input your OpenAI API key securely
|
19 |
+
- Input geographical coordinates (latitude and longitude)
|
20 |
+
- Specify date range for data collection
|
21 |
+
- Simulate data storage in PostgreSQL
|
22 |
+
- Prepare data for analysis with MindsDB
|
23 |
|
24 |
+
## How to Use
|
25 |
|
26 |
+
1. Enter your OpenAI API key in the sidebar (this is required to run the app)
|
27 |
+
2. Enter your Earth Engine Project ID (or use the default)
|
28 |
+
3. Input the latitude and longitude of your area of interest
|
29 |
+
4. Select the start and end dates for your data collection period
|
30 |
+
5. Provide a name for your image
|
31 |
+
6. Click "Fetch Sentinel-2 Image" to simulate the data collection and storage process
|
32 |
|
33 |
+
## Security Note
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
Your API key is not stored and is only used for the current session. It's securely handled and not displayed after entry.
|
36 |
|
37 |
+
## Note
|
38 |
|
39 |
+
This app is a simulation and does not actually connect to Earth Engine or store data in PostgreSQL. It's designed to demonstrate the user interface and workflow of such a system.
|
40 |
+
|
41 |
+
## Future Improvements
|
42 |
+
|
43 |
+
- Implement actual connection to Earth Engine
|
44 |
+
- Set up real-time data storage in PostgreSQL
|
45 |
+
- Integrate MindsDB for anomaly detection and data analysis
|
46 |
+
|
47 |
+
Feel free to contribute to this project or use it as a starting point for your own data analysis workflows!
|