File:Chichen itza pdsi 900 2000 1.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 1,440 × 720 pixels, file size: 95 KB)

Captions

Captions

Chichen Itza drought index PDSI 900 - 2000

Summary[edit]

Description
English: Chichén Itzá drought index PDSI 900 - 2000.
Date
Source Own work
Author Merikanto

This image is based on LBDA.

Source of PDSI data

The 'Living Blended Drought Atlas (LBDA)' North American Drought Reconstruction for the last 2000 years

Cook, E.R., Seager, R., Heim, R.R., Vose, R.S., Herweijer, C., and Woodhouse, C. 2010. Megadroughts in North America: Placing IPCC projections of hydroclimatic change in a long-term paleoclimate context. Journal of Quaternary Science, 25(1), 48-61. doi: 10.1002/jqs.1303

NOAA Study Page:

https://www.ncei.noaa.gov/access/paleo-search/study/19119

R code to download and plot data

                                    1. 3
    1. north american drought atlas pdsi data extracting and viewing
  1. "R" code

library(raster) library(terra) library(ncdf4) library(ggplot2) library(pals)

download_data=0

yeara=900 yearb=2000

year1=901

    1. copan NOK
  1. sitename="Copán"
  2. sitee_lat = 14.838139
  3. sitee_lon = -89.142222
    1. chaco

sitename="Chichén Itzá" sitee_lat=20.684167 sitee_lon =-88.567778

    1. chaco
  1. sitename="Chaco Canyon"
  2. sitee_lat=36.058333
  3. sitee_lon =-107.958889
  1. sitename="Mexico City"
  2. sitee_lat=19.433333
  1. sitee_lon=-99.133333
  1. sitename="Mesa Verde"
    1. mesa verde
  1. sitee_lon =-108.488611
  2. sitee_lat =37.183889
    1. los angeles
  1. sitename="Los Angeles"
  2. sitee_lon <- -118.25
  3. sitee_lat <- 34.05
    1. Cahokia
  1. sitee_lat=38.654722
  2. sitee_lon=-90.059444
  1. sitee_lon <- -80
  2. sitee_lat <- 40
  1. https://www.ncei.noaa.gov/access/paleo-search/study/19119

iname1<-"nada_hd2_cl.nc"

url1<-"https://www.ncei.noaa.gov/pub/data/paleo/drought/LBDA2010/nada_hd2_cl.nc"

if(download_data==1) { download.file(url = url1,destfile = iname1) }

  1. iname1<-"./northdata1/mex/NADAv2-2008.nc"

ncin1<- nc_open(iname1) lon <- ncvar_get(ncin1, "lon") lat <- ncvar_get(ncin1, "lat") t <- ncvar_get(ncin1, "time") pdsi0 <- ncvar_get(ncin1, "pdsi")

  1. print(t)
  1. stop(-1)

nc_close(ncin1)

  1. dim(pdsi0)

numu1=which(t==year1)

print(numu1)

print (dim(pdsi0))

  1. stop(-1)

pdsi1 <- pdsi0[numu1,,]

  1. image(pdsi1)

r1 <- raster(pdsi1, xmn=min(lon), xmx=max(lon), ymn=min(lat), ymx=max(lat), crs=CRS("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs+ towgs84=0,0,0"))

print("s")

r1<-flip(r1)

print("s2")

s2<-raster(nrows=1024, ncols=1024)

crs(s2)<-crs(r1) extent(s2)<-extent(r1)

  1. r2<-resample(r1, s2)
  1. writeRaster(r1 , filename="pdsi.nc", bandorder='BSQ',format="NetCDF", overwrite=TRUE)
  1. quit(-1)
  1. r1 <- flip(r1, direction='y')

plot(r1, col=rev(parula(64)))

  1. quit(-1)

print( dim(pdsi0))

  1. pdsix0=as.matrix(pdsi0)
  1. print( dim( t(pdsix0)))
  1. quit(-1)

pdsix0<- aperm(pdsi0, c(3,2,1))

print( dim(pdsix0))

r_brick <- brick(pdsix0, xmn=min(lat), xmx=max(lat), ymn=min(lon), ymx=max(lon), crs=CRS("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs+ towgs84=0,0,0"))

str(r_brick)

  1. quit(-1)
  1. print( dim( t(pdsi0)))

r_brick <- flip(t(r_brick), direction='y')

pdsi_series <- extract(r_brick, SpatialPoints(cbind(sitee_lon,sitee_lat)), method='simple')

print(pdsi_series)

  1. quit(-1)

print("pazka")

selyears2=seq(from=yeara, to=yearb, by=1)

  1. selitems2<-2005-selyears2

selitems2=selyears2 pdsis2=t(pdsi_series[yeara:yearb])

  1. sitee_lat
  1. print(selyears2)
  2. print(selitems2)
  3. print(pdsis2)

x=selyears2 y=pdsis2

  1. valu2=values <- loess(y ~ x)
  1. y2=predict(valu2)
  2. dev.new(width = 1200, height = 600, unit = "px")

title1=paste0("Drought index PDSI at ", sitename)

pdf(file = paste0("out.pdf"), width = 16, height = 8, colormodel = "rgb")

plot(x, y, type="l", lwd=2, col="red", lty=1, main=title1,

       xlab="Year AD",
       ylab="PDSI",
       cex.lab=2, cex.axis=1.5, cex.main=2, cex.sub=1.5
       ,xaxt="n"
       )
   

axis(1, at = seq(yeara, yearb, by = 50), cex.axis=1.5)

  grid(nx = NULL, ny = NULL,
    lty = 2,      # Grid line type
    col = "gray", # Grid line color
    
    lwd = 1)  
  

lines(x,y , col="#3f0000", lwd=5,add=T)

  1. axis(1, xaxp=c(700, 1800, 19), las=2)
  1. lines(x,y,col = "red",lwd = 4, add=T)


dev.off()

system("pdf2svg out.pdf out.svg")

print(".") quit("yes")


Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current11:21, 10 January 2024Thumbnail for version as of 11:21, 10 January 20241,440 × 720 (95 KB)Merikanto (talk | contribs)Uploaded own work with UploadWizard

There are no pages that use this file.

Metadata