polarwatch / internship24

PolarWatch internship
0 stars 0 forks source link

Milestone3: Compute climatology of sea ice concentration #7

Closed shospital closed 2 months ago

shospital commented 3 months ago
shospital commented 2 months ago
import xarray as xr

server = "https://polarwatch.noaa.gov/erddap/griddap"
dataset_id = "ERDDAP_DATASET_ID"

full_URL = '/'.join([server, dataset_id])
ds = xr.open_dataset(full_URL, chunks={"time": "auto"})
ds = ds.sel(time=slice('2024-01-01', '2024-01-07'))
shospital commented 2 months ago

Frequency: weekly Climatology date range: 2006-2020 Questions for data analysis:

example https://climate.copernicus.eu/climate-indicators/sea-ice

shospital commented 2 months ago

temporal trends article and sample codes at https://medium.com/@jaydharpure2007/exploring-temporal-trends-analyzing-time-series-and-gridded-data-with-python-50eac2a13354

@tntly let me know if you can access the article.

tntly commented 2 months ago

Thank you, @shospital. I’ve completed the analysis of the anomalies and trends and am currently working on the t-test sections. I’ve uploaded the milestone 3 notebook to my branch if you want to review the plots I’ve finished so far.

shospital commented 2 months ago

looks great! please submit PR.

shospital commented 2 months ago

@tntly In the notebook, the sea ice concentration says (%), but it's proportion 0-1.