Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new datasets: STORY EXTEME POLLUTION (INDIA/PAQUISTAN) #175

Closed
12 tasks done
AparicioSF opened this issue Jul 17, 2024 · 11 comments
Closed
12 tasks done

Add new datasets: STORY EXTEME POLLUTION (INDIA/PAQUISTAN) #175

AparicioSF opened this issue Jul 17, 2024 · 11 comments
Assignees

Comments

@AparicioSF
Copy link
Contributor

AparicioSF commented Jul 17, 2024

  • Carbon monoxide maps - Sentinel-5P

    • Data integration - carbon monoxide N1-CO
    • Yaml configuration
    • eodashboard integration working link
  • Fire datasets (VIIRS I-Band) - I think it can be downloaded from here source

    • Data integration (Modis_SNPP_2023)
    • Yaml configuration
    • eodashboard integration working link
  • Wind dataset (horizontal winds at 100m) - source

    • Data integration
    • Yaml configuration (in principle working but wrong config)
    • eodashboard integration working (in principle working but wrong config)
  • Science Hub Challenge (datasets in Xcube)

@AlessandroScremin
Copy link
Contributor

AlessandroScremin commented Jul 22, 2024

Carbon monoxide should be already avaialbe as global layer

Fires: VIIRS 375 are avaialbe only till 2021. IF needed for 2023 onlhy MODIS avaialbe and was already ingested in the GEODB

Wind dataset ingested GLOBALLY for 2023.

@FedericoRondoni
could you please add the yaml and MD file for Fires (MODIS only) and wind Dataset?

here the references:
wind datasets:
VIS_ERA5_SINGLELEVEL_WIND_U_100M_GLOBAL > ac99bb32-a94d-4f4f-b8dd-c0098ca07665
evalscript:
//VERSION=3
function setup() {
return {
input: [{
bands: ["WindU100m", "dataMask"], // Specify correct band names here
}],
output: {
bands: 4,
sampleType: "UINT8"
}
};
}

function evaluatePixel(sample) {
// Correctly access WindU100m band instead of windu10m
var arr = colorBlend(sample.WindU100m, [-4, -3, -2, -1, 0, 1, 2, 3, 4], [
[11,53,135],
[11,116,197],
[78,181,250],
[171,234,243],
[244,252,237],
[251,212,95],
[247,133,0],
[221,24,0],
[163,1,0]
]);

if (sample.dataMask == 1) {
arr.push(255);
} else {
arr.push(0);
}

return arr;
}

VIS_ERA5_SINGLELEVEL_WIND_V_100M_GLOBAL > f70007f3-da80-4c23-b3ae-adc8634ca7c7
evalscript:
//VERSION=3
function setup() {
return {
input: [{
bands: ["WindV100m", "dataMask"], // Specify correct band names here
}],
output: {
bands: 4,
sampleType: "UINT8"
}
};
}

function evaluatePixel(sample) {
// Correctly access WindV100m band instead of windu10m
var arr = colorBlend(sample.WindV100m, [-4, -3, -2, -1, 0, 1, 2, 3, 4], [
[11,53,135],
[11,116,197],
[78,181,250],
[171,234,243],
[244,252,237],
[251,212,95],
[247,133,0],
[221,24,0],
[163,1,0]
]);

if (sample.dataMask == 1) {
arr.push(255);
} else {
arr.push(0);
}

return arr;
}

@lubojr lubojr added this to RACE Jul 24, 2024
@lubojr lubojr moved this to In Progress in RACE Jul 24, 2024
@santilland
Copy link
Collaborator

Needs to be for 2023, will be checked for Fire datasets (VIIRS I-Band)

@FedericoRondoni
Copy link
Contributor

@santilland @lubojr, concerning the Fire story MODIS dataset, I have checked, and the YAML file is already present. I think you created it.
I have applied some changes related to the details of the dataset and added the GeoDB ones as resources. I don't know what the Collection-only resource is or if the GeoDB is correctly accessed (it creates some issues). It would be great if you could clarify this point for this and future indicators.

In any case, I think that for this story, we are good.

Here you can find the pull request: #183
And here is the one for the assets: eurodatacube/eodash-assets#54

@santilland
Copy link
Collaborator

Hello @FedericoRondoni yes, you are correct, Lubo already integrated this dataset. The collection-only resource is something we use when special functionality is needed in the client that has not yet been mapped to STAC based logic. So, the MODIS dataset combines multiple datasets using an area selection. So not all the data in geodb can be shown at once.
We are working on defining a STAC based process definition that will replace this approach in the future. So for uncommon, non standard data integration we can take care of integration.
You can find the current integration here:
https://www.eodashboard.org/explore?indicator=Modis_SNPP_2023
I will remove the for now unnecessary Resource configuration you added to the Yaml file, which seems to create an issue.

@santilland
Copy link
Collaborator

@FedericoRondoni i pushed a commit to your branch, make sure you do a pull before continuing your edits

@FedericoRondoni
Copy link
Contributor

@FedericoRondoni i pushed a commit to your branch, make sure you do a pull before continuing your edits

Hi @santilland I'm not sure I know what you mean. I don't see any action from my side to be done. Sorry in advance if it is a silly question, but I still don't know all the GitHub aspects.

@santilland
Copy link
Collaborator

@FedericoRondoni if you are working directly on github, all should be fine, sorry for the confusion. It would only be necessary to do a git pull if you are working in the branch locally on your computer and then pushing the changes

@aapopescu
Copy link
Contributor

@FedericoRondoni , here is the JN with the information for the yamls of the "maps generated from study"
3_OpenChallengeNotebook[RMSH]-[Challenge1]Sinnathamby_Kaminski_Zoghbi.ipynb.zip

@FedericoRondoni
Copy link
Contributor

YAML files ready and pulled with this request #186

@FedericoRondoni
Copy link
Contributor

@AparicioSF currently working on the description of the indicators SHC1_era5_u_winds SHC2_era5_v_winds

@FedericoRondoni
Copy link
Contributor

@santilland @lubojr description of SHC1 and SHC2 created and uploaded. Commits already merged

@github-project-automation github-project-automation bot moved this from In Progress to Done in RACE Nov 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

No branches or pull requests

6 participants