# Hand-written NAMESPACE — do not edit by hand
# Edit by modifying this file directly.

# ---- Temporal Analysis ----
export(mk_test)
export(sens_slope)
export(change_point_detection)
export(seasonal_decompose_climate)
export(autocorrelation_climate)
export(trend_significance)
export(rolling_trend)
export(temporal_homogeneity)

# ---- Spatial Analysis ----
export(morans_i)
export(hot_cold_spots)
export(spatial_interpolate)
export(spatial_trend_field)
export(cluster_climate_zones)
export(spatial_anomaly)
export(elevation_lapse_rate)

# ---- Extreme Events ----
export(fit_gev)
export(rgev_sim)
export(return_period)
export(peaks_over_threshold)
export(extreme_value_index)
export(heat_wave_detection)
export(cold_spell_detection)
export(drought_spell)

# ---- Climate Indices ----
export(spi)
export(spei)
export(pdsi_simple)
export(heat_index)
export(wind_chill)
export(frost_days)
export(growing_degree_days)
export(diurnal_temp_range)

# ---- Detection & Attribution ----
export(detection_attribution)
export(fingerprint_analysis)
export(optimal_fingerprint)

# ---- Utilities ----
export(fill_gaps_climate)
export(homogenize_series)
export(aggregate_climate)
export(anomaly_baseline)
export(standardize_climate)
export(climate_summary)

# ---- S3 Methods ----
S3method(plot, climate_test)
S3method(print, climate_test)
S3method(print, gev_fit)
S3method(summary, climate_test)

# ---- Imports from stats ----
importFrom(stats,Box.test)
importFrom(stats,acf)
importFrom(stats,aggregate)
importFrom(stats,approx)
importFrom(stats,ar)
importFrom(stats,coef)
importFrom(stats,complete.cases)
importFrom(stats,confint)
importFrom(stats,cor)
importFrom(stats,decompose)
importFrom(stats,density)
importFrom(stats,dnorm)
importFrom(stats,filter)
importFrom(stats,fitted)
importFrom(stats,kmeans)
importFrom(stats,lm)
importFrom(stats,loess)
importFrom(stats,median)
importFrom(stats,na.omit)
importFrom(stats,nlm)
importFrom(stats,optim)
importFrom(stats,p.adjust)
importFrom(stats,pacf)
importFrom(stats,pbeta)
importFrom(stats,pgamma)
importFrom(stats,pnorm)
importFrom(stats,predict)
importFrom(stats,qbeta)
importFrom(stats,qgamma)
importFrom(stats,qnorm)
importFrom(stats,quantile)
importFrom(stats,residuals)
importFrom(stats,rgamma)
importFrom(stats,rexp)
importFrom(stats,rnorm)
importFrom(stats,runif)
importFrom(stats,sd)
importFrom(stats,setNames)
importFrom(stats,smooth.spline)
importFrom(stats,spec.pgram)
importFrom(stats,stl)
importFrom(stats,ts)
importFrom(stats,var)

# ---- Imports from graphics ----
importFrom(graphics,abline)
importFrom(graphics,arrows)
importFrom(graphics,axis)
importFrom(graphics,barplot)
importFrom(graphics,box)
importFrom(graphics,grid)
importFrom(graphics,hist)
importFrom(graphics,legend)
importFrom(graphics,lines)
importFrom(graphics,matlines)
importFrom(graphics,matplot)
importFrom(graphics,mtext)
importFrom(graphics,par)
importFrom(graphics,plot)
importFrom(graphics,points)
importFrom(graphics,polygon)
importFrom(graphics,text)
importFrom(graphics,title)

# ---- Imports from utils ----
importFrom(utils,head)
importFrom(utils,tail)
importFrom(utils,read.csv)
importFrom(utils,write.csv)
