Updating SBD1 links and ditches
This commit is contained in:
parent
c38572a547
commit
9787e54ea6
@ -116,8 +116,6 @@ RES <- cbind(rep(WELL,17),2009:2025,rep(C$program[1],17),RES) %>% as_tibble
|
||||
colnames(RES) <- c("wdid","year","program","active")
|
||||
return(RES)
|
||||
}
|
||||
CREP_PERM
|
||||
CREP_TEMP
|
||||
for(i in SBD1_TEMP_FALLOW %>% pull(wdid) %>% unique){
|
||||
|
||||
CURRENT <- IN_PROGRAM(i,SBD1_TEMP_FALLOW)
|
||||
@ -133,7 +131,7 @@ PROGRAM_ALL(SBD1_TEMP_FALLOW),
|
||||
PROGRAM_ALL(SB22_DATA)) %>% unique %>% mutate(active=as.numeric(active))
|
||||
ALL_PROGRAMS <- ALL_PROGRAMS%>% pivot_wider(values_from=active,names_from=program)%>% replace(is.na(.), 0)
|
||||
ALL_PROGRAMS <- ALL_PROGRAMS %>% mutate(CREP_any=ifelse(CREP_perm+CREP_temp>0,1,0)) %>% select(wdid,year,CREP_any,everything())
|
||||
|
||||
dir.create("Data/Output_Data",showWarnings=FALSE,recursive=TRUE)
|
||||
write_csv(ALL_PROGRAMS,"Data/Output_Data/Fallow_Program_Data.csv")
|
||||
saveRDS(ALL_PROGRAMS,"Data/Output_Data/Fallow_Program_Data.rds")
|
||||
|
||||
|
||||
49
2_Proc.r
49
2_Proc.r
@ -1,34 +1,41 @@
|
||||
library(tidyverse)
|
||||
library(janitor)
|
||||
###################
|
||||
STRUCTURES <- read_csv('https://dwr.state.co.us/Rest/GET/api/v2/structures/?format=csv&dateFormat=dateOnly&fields=wdid%2CciuCode%2CstructureType%2CwaterSource%2CassociatedCaseNumbers%2CassociatedPermits%2CassociatedContacts%2CwaterDistrict%2Csubdistrict%2Ccounty%2CmanagementDistrictName%2Clatdecdeg%2Clongdecdeg&division=3',skip=2) %>% clean_names() %>% mutate(wdid=as.character(wdid))
|
||||
WELLS <- STRUCTURES %>% filter(structure_type=='WELL')
|
||||
WELLS <- WELLS %>% filter(ciu_code %in% c('A','H')) #Keep only active wells or wells with historic records of pumping
|
||||
WELLS <- WELLS %>% select( wdid,contacts=associated_contacts,latitude=latdecdeg,longitude=longdecdeg)
|
||||
|
||||
#Read the data files which include the current list of wells by subdistrict, to create indicator variables. This is the list of wells currently in the subdistrict using hydrobase search filter. Note that the time of entry is not found here and added later.
|
||||
SBD_LINK <- rbind(read_csv("Data/SBD_Data/StructureList_SBD1.csv") %>% mutate(SBD=1),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD2.csv") %>% mutate(SBD=2),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD3.csv") %>% mutate(SBD=3),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD4.csv") %>% mutate(SBD=4),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD5.csv") %>% mutate(SBD=5),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD6.csv") %>% mutate(SBD=6)) %>% clean_names %>% mutate(wdid=as.character(wdid))
|
||||
SBD_LINK <- rbind(read_csv("Data/SBD_Data/StructureList_SBD1.csv") %>% clean_names %>% mutate(sbd=1) %>% select(wdid,sbd),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD2.csv")%>% clean_names %>% mutate(sbd=2) %>% select(wdid,sbd),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD3.csv")%>% clean_names %>% mutate(sbd=3) %>% select(wdid,sbd),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD4.csv")%>% clean_names %>% mutate(sbd=4) %>% select(wdid,sbd),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD5.csv")%>% clean_names %>% mutate(sbd=5) %>% select(wdid,sbd),
|
||||
read_csv("Data/SBD_Data/StructureList_SBD6.csv")%>% clean_names %>% mutate(sbd=6) %>% select(wdid,sbd)) %>% mutate(wdid=as.character(wdid))
|
||||
SBD_LINK <- SBD_LINK %>% pivot_wider(values_from=sbd,names_from=sbd,names_prefix="SBD") %>% replace(is.na(.), 0)
|
||||
SBD_LINK[2:7][SBD_LINK[2:7]>0] <- 1
|
||||
SBD1_WELLS <- SBD_LINK %>% select(wdid) %>% unique
|
||||
SBD1_WELLS <- SBD_LINK %>% filter(SBD1==1) %>% select(wdid)
|
||||
############Data from each of the Annuall Replacement Plans or in the case of 2000 the Plan of Water Management. A list of wells in Subdistrict one was collected to create a time depdent indicator for being in SBD1.
|
||||
SBD1_WELLS <- read_csv("Data/ARP/SBD1_Wells.csv")%>% group_by(wdid) %>% filter(year==min(year)) %>% mutate(wdid=as.character(wdid)) %>% rename(SBD1_year=year) %>% ungroup %>% inner_join(SBD1_WELLS)
|
||||
SBD1_WELLS %>% group_by(SBD1_year) %>% summarize(n())
|
||||
SBD1_WELLS %>% filter(wdid=='2706148')
|
||||
SBD1_WELLS <- SBD1_WELLS %>% left_join( (read_csv("Data/ARP/SBD1_Wells.csv")%>% group_by(wdid) %>% filter(year==min(year)) %>% mutate(wdid=as.character(wdid)) %>% rename(SBD1_year=year) %>% ungroup))
|
||||
WELLS <- WELLS[!(WELLS$wdid %in% c(SBD1_WELLS %>% filter(is.na(SBD1_year)) %>% pull(wdid))),]#Drop odd records which were never in the SBD1 reports but are listed as SBD1 wells
|
||||
SBD1_WELLS <- SBD1_WELLS %>% filter(!is.na(SBD1_year))
|
||||
|
||||
|
||||
#######Original Wells based on map
|
||||
#This data comes from a manual map of SBD1 in 2009 made in QGIS. Wells are intersected with the hand drawn layer. The wells identified as being in the SBD1 region at this time should be assumed to have entered the subdistrict at the start of the program (2006 with first pumping data in 2009). This fixes the problem that some wells are identified as being in SBD1 in ARP reports but only because they were missed in earlier reports. It looks like most updated wells were missed due to category issues, such as not knowing the well was used for agriculture. This process should find most wells that were enrolled at the start, and later picked up so as to treat them as 2006/2009 wells instead of treating them as having entered in say 2016 or 2020 when they were first picked up by the SBD1 list.
|
||||
SBD1_FROM_MAP <- read_csv("Data/SBD_Data/Intersect_SBD1_Area_Wells.csv")
|
||||
SBD1_FROM_MAP <- SBD1_FROM_MAP %>% pull(WELL_ID) %>% unique
|
||||
SBD1_FROM_MAP <- SBD1_FROM_MAP[(SBD1_FROM_MAP %in% SBD1_WELLS$wdid) ] #Remove any wells that are still not in SBD1. These were most likely picked up in error. For example if part of the parcel is in SBD1 but the well serves another parcel outside of the area, or because I drew the boundary too large.
|
||||
SBD1_WELLS[SBD1_WELLS$wdid %in% SBD1_FROM_MAP,"SBD1_year"] <- 2011
|
||||
SBD1_WELLS %>% filter(SBD1_year!=2011)
|
||||
|
||||
SBD1_FROM_MAP <- read_csv("Data/SBD_Data/SBD1_Map_Wells.csv") %>% mutate(wdid=as.character(wdid)) %>% mutate(IN_EXTENT=1)
|
||||
SBD1_WELLS <- SBD1_FROM_MAP %>% full_join(SBD1_WELLS) %>% mutate(IN_EXTENT=ifelse(is.na(IN_EXTENT),0,1))
|
||||
SBD1_WELLS <- SBD1_WELLS %>% filter(!is.na(SBD1_year))%>% mutate(SBD1_year=ifelse(IN_EXTENT==1,2011,SBD1_year)) %>% select(-IN_EXTENT)
|
||||
SBD_LINK <- SBD1_WELLS %>% full_join(SBD_LINK) %>% mutate(SBD1_year=ifelse(is.na(SBD1_year),Inf,SBD1_year),SBD1=ifelse(SBD1_year==Inf,0,1)) #Make sure both data sets conform.
|
||||
WELLS
|
||||
######################Static Data
|
||||
WELL_DATA <- read_csv("Data/Structure_Data/Structures_with_Diversions.csv")%>% clean_names() %>% mutate(wdid=as.character(wdid)) %>% select(wdid,contacts,latitude,longitude) #Start with well data
|
||||
|
||||
STATIC_DATA <- WELL_DATA%>% left_join(SBD1_WELLS) %>% left_join(SBD_LINK) %>% replace(is.na(.), 0) #Include subdistrict indicators
|
||||
STATIC_DATA$SBD1_year <- ifelse(STATIC_DATA$SBD1_year==0,Inf,STATIC_DATA$SBD1_year )
|
||||
STATIC_DATA <- STATIC_DATA %>% left_join(read_csv("Data/Output_Data/Ditch_Indicators.csv")%>% mutate(wdid=as.character(wdid)))%>% replace(is.na(.), 0)
|
||||
STATIC_DATA <- WELLS%>% left_join(SBD_LINK) %>% mutate(SBD1_year=ifelse(is.na(SBD1_year),Inf,SBD1_year))
|
||||
STATIC_DATA[,-1:-5] <- STATIC_DATA[,-1:-5] %>% replace(is.na(.), 0) #Include subdistrict indicators
|
||||
DITCH_DATA <- readRDS("Data/Crop_Parcel_Data/Well_Ditch_Link.rds")
|
||||
STATIC_DATA <- STATIC_DATA %>% left_join(DITCH_DATA )
|
||||
DITCH_COL_NAMES <-colnames(STATIC_DATA)[grep("ditch",colnames(STATIC_DATA))]
|
||||
STATIC_DATA[,DITCH_COL_NAMES] <- STATIC_DATA[,DITCH_COL_NAMES]%>% replace(is.na(.),0)
|
||||
|
||||
STATIC_DATA <- STATIC_DATA%>% left_join(read_csv("Data/Output_Data/Crops_Before_2009.csv") %>% mutate(wdid=as.character(wdid))) #Add crop data
|
||||
STATIC_DATA$CROPS_PRE_2009 <- ifelse(is.na(STATIC_DATA$per_alfalfa),0,1) #Make an indicator to tell if crops were grown in 2002 or 2005, or if no crop data was available.
|
||||
|
||||
20
Data/Crop_Parcel_Data/Proc_Ditches.r
Normal file
20
Data/Crop_Parcel_Data/Proc_Ditches.r
Normal file
@ -0,0 +1,20 @@
|
||||
library(tidyverse)
|
||||
ALL_PARCEL_DATA <- read_csv("WELL_DITCH_PARCEL.csv")
|
||||
NAMES <- colnames(ALL_PARCEL_DATA )
|
||||
PARCEL_LINK <- ALL_PARCEL_DATA %>% select(NAMES[grep("PARCEL_ID|GW_ID|SW_WDID",NAMES )])
|
||||
PARCEL_LINK <- PARCEL_LINK %>% pivot_longer(-PARCEL_ID,values_to='wdid',names_to="type") %>% filter(!is.na(wdid))
|
||||
PARCEL_LINK$type <- ifelse(grepl("SW",PARCEL_LINK$type ),"SW","GW")
|
||||
|
||||
WELL <- PARCEL_LINK %>% filter(type=='GW') %>% select(-type) %>% unique
|
||||
DITCH <- PARCEL_LINK %>% filter(type=='SW') %>% rename(ditch_id=wdid) %>% select(-type) %>% unique
|
||||
|
||||
DITCH_WELL <- WELL %>% inner_join(DITCH) %>% select(-PARCEL_ID) %>% unique
|
||||
|
||||
#TOP_20 <- (DITCH_WELL %>% group_by(ditch_id) %>% summarize(num=n()) %>% arrange(desc(num)))[1:20,] %>% pull(ditch_id)
|
||||
#DITCH_WELL$ditch_id[!(DITCH_WELL$ditch_id %in% TOP_20) ] <- "Other"
|
||||
DITCH_WELL <- DITCH_WELL %>% unique
|
||||
DITCH_WELL <- DITCH_WELL %>% pivot_wider(values_from=ditch_id,names_from=ditch_id,names_prefix="ditch_")
|
||||
DITCH_WELL[,-1] <- ifelse(is.na(DITCH_WELL[,-1]),0,1)
|
||||
DITCH_WELL <- DITCH_WELL %>% mutate(wdid=as.character(wdid))
|
||||
|
||||
saveRDS(DITCH_WELL,"Well_Ditch_Link.rds")
|
||||
2847
Data/SBD_Data/SBD1_Map_Wells.csv
Normal file
2847
Data/SBD_Data/SBD1_Map_Wells.csv
Normal file
File diff suppressed because it is too large
Load Diff
2819
Data/SBD_Data/StructureList_SBD1.csv
Normal file
2819
Data/SBD_Data/StructureList_SBD1.csv
Normal file
File diff suppressed because it is too large
Load Diff
212
Data/SBD_Data/StructureList_SBD2.csv
Normal file
212
Data/SBD_Data/StructureList_SBD2.csv
Normal file
@ -0,0 +1,212 @@
|
||||
WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information,
|
||||
"2005009","W1005 WELL NO 05","FIELD #1, WELL #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1005","20200-R, 20200-R-R","12212634","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","10","38.0 N","8.0 E","N","","","","","403405.0","4156388.0","37.549444","-106.093541","02/05/2018 13:58","https://dwr.state.co.us/Tools/Structures/2005009",
|
||||
"2005060","W1554 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","10086-S","06052206/100489","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","2","38.0 N","8.0 E","N","","","","","405007.0","4158156.0","37.565544","-106.075637","05/24/2005 09:46","https://dwr.state.co.us/Tools/Structures/2005060",
|
||||
"2005063","W0169 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0169","14252-F, 76888-F","GP13-3298-8","RUE, BRIAN AND ANDREA","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","NW","NE","NW","6","39.0 N","7.0 E","N","","","","","389366.0","4168918.0","37.660778","-106.254335","02/20/2013 16:44","https://dwr.state.co.us/Tools/Structures/2005063",
|
||||
"2005087","W0205 WELL NO 01","BROWN #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0029, W0205","1837-R","03062392/03062374","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","12","38.0 N","8.0 E","N","","","","","406792.0","4156621.0","37.551893","-106.055233","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005087",
|
||||
"2005099","W2469 WELL NO 06","MIDDLE SP K","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2469","15521-R","08093038","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","30","40.0 N","5.0 E","N","","","","","369812.0","4171208.0","37.678846","-106.476377","05/10/2021 13:48","https://dwr.state.co.us/Tools/Structures/2005099",
|
||||
"2005100","W0247 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0247","1449-R","05-8-4726","CALDON, CASEY F.; PERRY, THOMAS R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","14","38.0 N","8.0 E","N","","","","","405851.0","4155116.0","37.538234","-106.065691","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005100",
|
||||
"2005101","W0247 WELL NO 08","P #1 NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0247","5330-F, 15401-R-R, 55761-F","02-01564-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","23","38.0 N","8.0 E","N","","","","","405786.0","4154329.0","37.531135","-106.066326","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005101",
|
||||
"2005111","W2546 WELL NO 02","SHRIVER #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2546","10086-R","14-21146-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NE","SW","2","38.0 N","8.0 E","N","","","","","405543.0","4158341.0","37.567266","-106.069592","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005111",
|
||||
"2005557","W2599 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","81CW0077, W2599","5980-R","062015000849","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","5","38.0 N","8.0 E","N","","","","","400152.0","4157807.0","37.561885","-106.130554","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005557",
|
||||
"2005565","82CW124 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0124","24775-F, 24775-F-R","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","33","38.0 N","9.0 E","N","","","","","412556.0","4150605.0","37.498240","-105.989271","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005565",
|
||||
"2005566","82CW124 WELL NO 01AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0124","24946-F","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NE","NE","33","38.0 N","9.0 E","N","","","","","412597.0","4150806.0","37.500056","-105.988831","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005566",
|
||||
"2005607","81CW137 WELL NO 02R","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","81CW0137","25485-F, 25485-F-R","15-06621-4","CLAIR, DON; RAKHRA MUSHROOM FARM CORP","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","26","38.0 N","10.0 E","N","","","","","425675.0","4151388.0","37.506447","-105.840949","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005607",
|
||||
"2005615","79CW021 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0021","20874-S-R","23-08714-8","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","38.0 N","9.0 E","N","","","","","411016.0","4155450.0","37.541757","-106.007277","11/19/2002 00:00","https://dwr.state.co.us/Tools/Structures/2005615",
|
||||
"2005616","79CW021 WELL NO 01RR","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0021","24007-F","23-08714-8","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","38.0 N","9.0 E","N","","","","","410822.0","4155445.0","37.541694","-106.009472","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005616",
|
||||
"2005618","80CW067 WELL NO 01R","POOLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","80CW0067","14877-R, 14877-R-R","07-8-1072","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","13","38.0 N","8.0 E","N","","","","","406973.0","4154731.0","37.534878","-106.052944","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005618",
|
||||
"2005619","80CW067 WELL NO 01RR","ELEVATOR 1/4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","80CW0067","24268-F","07-8-1072","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","13","38.0 N","8.0 E","N","","","","","406966.0","4154530.0","37.533066","-106.052998","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005619",
|
||||
"2005861","83CW091 WELL NO 02R","GRAVEL WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","83CW0091, 85CW0061","1137-R-R","12062641/12062668","MATHIAS CONCRETE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NE","SW","20","39.0 N","8.0 E","N","","","","","400948.0","4162896.0","37.607832","-106.122231","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005861",
|
||||
"2005881","84CW026 WELL NO 02A","#2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","84CW0026","28881-F","08050269/05083086","DEACON, MARK Q.","RGWCD SD2","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","4","38.0 N","8.0 E","N","","","","","401757.0","4158601.0","37.569213","-106.112491","02/04/2013 14:42","https://dwr.state.co.us/Tools/Structures/2005881",
|
||||
"2005882","84CW026 WELL NO 02AA","GAS #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","84CW0026","22425-F, 22425-F-R","08050269/05083086","DEACON, MARK Q.","RGWCD SD2","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","4","38.0 N","8.0 E","N","","","","","401760.0","4158537.0","37.568637","-106.112448","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005882",
|
||||
"2006001","W2298 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2298","","GP11-3186-12","ABSMEIER, ADRIAN","RGWCD SD2","10/31/2011","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","25","38.0 N","10.0 E","N","","","","","425984.0","4151550.0","37.507932","-105.837470","02/04/2013 14:45","https://dwr.state.co.us/Tools/Structures/2006001",
|
||||
"2006002","W2298 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2298","","GP11-3187-12","ABSMEIER, ADRIAN","RGWCD SD2","10/31/2011","10/31/2025","3","20","ALAMOSA","","","","NW","SW","25","38.0 N","10.0 E","N","","","","","425986.0","4151574.0","37.508148","-105.837450","02/04/2013 14:45","https://dwr.state.co.us/Tools/Structures/2006002",
|
||||
"2006268","79CW024 WELL NO 01A","SHRIVER #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3002, 79CW0024","24005-F","03062351/03062406","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","12","38.0 N","8.0 E","N","","","","","406999.0","4157137.0","37.556564","-106.052955","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006268",
|
||||
"2006400","W2139 WELL NO 08","SPRINKLER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2139","19429-F-R","11060563/11060597","MATHIAS CONCRETE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","20","39.0 N","8.0 E","N","","","","","400550.0","4162800.0","37.606924","-106.126726","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006400",
|
||||
"2006432","W2546 WELL NO 01","SHRIVER #3 WELLS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2546","10085-R","03061813/03061881, 1502007, 22-09271-08","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SE","2","38.0 N","8.0 E","N","","","","","406174.0","4158354.0","37.567448","-106.062450","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006432",
|
||||
"2006433","W3677 WELL NO 01A","SHRIVER #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3677","21716-F","03061813/03061881, 1502007","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","SE","2","38.0 N","8.0 E","N","","","","","406221.0","4157937.0","37.563695","-106.061864","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006433",
|
||||
"2006443","W3692 WELL NO 02A","BROWN #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3692","20763-F, 20763-F-R","03061818/03061833","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","11","38.0 N","8.0 E","N","","","","","406248.0","4156364.0","37.549522","-106.061358","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006443",
|
||||
"2006505","W0122 WELL NO 03","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0122","20245-R","072017003069/10060149","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","10","38.0 N","8.0 E","N","","","","","404179.0","4155987.0","37.545911","-106.084727","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006505",
|
||||
"2006508","W3896 WELL NO 05A","3 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0022, W3896","22685-F","09212321/09212238","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","15","38.0 N","8.0 E","N","","","","","404497.0","4154761.0","37.534896","-106.080969","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006508",
|
||||
"2006510","W3897 WELL NO 01AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3897","22234-F","12062582/12062683","COCHRAN, CHAD; COCHRAN, JERRY; SKY HIGH STATION, LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","1","38.0 N","8.0 E","N","","","","","406612.0","4157774.0","37.562266","-106.057417","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006510",
|
||||
"2006639","W0847 WELL NO 05","CHAPMAN PARK WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0847","9347-F","01081715","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD2","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","NW","NE","SW","36","39.0 N","7.0 E","N","","","","","397407.0","4160033.0","37.581644","-106.161940","05/10/2021 13:49","https://dwr.state.co.us/Tools/Structures/2006639",
|
||||
"2008010","79CW029 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0029","20874-R-R","23-08681-08","SOUTH WIND DAIRY LTD CO (SQUIRE, ALLEN G.); ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","17","38.0 N","9.0 E","N","","","","","411002.0","4154652.0","37.534564","-106.007339","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008010",
|
||||
"2008019","79CW062 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0062","24947-F, 24947-F-R","8105968","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","14","38.0 N","8.0 E","N","","","","","405752.0","4154416.0","37.531916","-106.066722","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008019",
|
||||
"2008138","81CW024 WELL NO 02","COUNTY LINE CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","81CW0024","","06-8-2109","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","7","38.0 N","9.0 E","N","","","","","408244.0","4156508.0","37.551020","-106.038783","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008138",
|
||||
"2008353","W0053 WELL NO 01","WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0053","1700-R, 1700-R-R, 1700-R-R","07-8-1568","LE PLATT, TERRY & TINA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","22","39.0 N","7.0 E","N","","","","","394109.0","4162803.0","37.606232","-106.199686","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008353",
|
||||
"2008354","W0053 WELL NO 02","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0053","7295-R, 7295-R-R","07-8-1399","LE PLATT, TERRY & TINA","RGWCD SD2","10/31/2010","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","22","39.0 N","7.0 E","N","","","","","393709.0","4162796.0","37.606123","-106.204215","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008354",
|
||||
"2008372","W0067 WELL NO IRR 01","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0067","29-R-R","20-02042-08","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","10","38.0 N","8.0 E","N","","","","","404459.0","4157576.0","37.560260","-106.081765","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008372",
|
||||
"2008373","W0067 WELL NO IRR 02","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0067","26-R","20-02041-08","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","10","38.0 N","8.0 E","N","","","","","403682.0","4157578.0","37.560198","-106.090562","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008373",
|
||||
"2008374","W0067 WELL NO IRR 03","9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0067","28-R, 28-R-R","01062049/01062073","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","10","38.0 N","8.0 E","N","","","","","404012.0","4157571.0","37.560169","-106.086825","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008374",
|
||||
"2008395","W0089 WELL NO 01","FARIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0089","1683-R","07-10-1142","FARIS, TANOUS; SCHAEFER, MICHAEL","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","35","39.0 N","7.0 E","N","","","","","395277.0","4160067.0","37.581710","-106.186064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008395",
|
||||
"2008509","W0122 WELL NO 02","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0122","20245-S","072014000386/02060472, 12062550/12062716","STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","10","38.0 N","8.0 E","N","","","","","404198.0","4157011.0","37.555142","-106.084646","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008509",
|
||||
"2008585","W0166 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0166","1380-R","11061487/11061573","MATTHEWS, STEVE & KATHY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","11","38.0 N","7.0 E","N","","","","","395271.0","4156926.0","37.553404","-106.185683","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008585",
|
||||
"2008586","W0167 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0167","26348-","3790431","POOLE CHEMICAL","RGWCD SD2","10/31/2010","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","13","38.0 N","8.0 E","N","","","","","406686.0","4155572.0","37.542429","-106.056299","03/04/2010 10:20","https://dwr.state.co.us/Tools/Structures/2008586",
|
||||
"2008647","W0205 WELL NO 03","PASTURE HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0029, W0205","1839-R","05070549/12060186","DEACON, MARK Q.; HILLIN, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","SE","11","38.0 N","8.0 E","N","","","","","405959.0","4156551.0","37.551178","-106.064653","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008647",
|
||||
"2008653","W0221 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0221","75-R, 75-R-R, 75-R-R","06214823/12204372","CORDOVA, JOSE; PARGIN, JACOB E. & AUBREY R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","28","40.0 N","6.0 E","N","","","","","382575.0","4171480.0","37.683020","-106.331723","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008653",
|
||||
"2008693","W0246 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0246","2287-F","05060751/05060792","KIMBRELL, CASEY","RGWCD SD2","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","NE","NW","30","40.0 N","6.0 E","N","","","","","380053.0","4172075.0","37.688055","-106.360416","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008693",
|
||||
"2008698","W0247 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0247","3790-F","06-6-1103-Perry 3 & 4 South, 06-6-1240-Perry 3 & 4 North","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","14","38.0 N","8.0 E","N","","","","","405378.0","4155150.0","37.538492","-106.071049","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008698",
|
||||
"2008756","W0285 WELL NO 01","DUGAN NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0285","1809-R, 1809-R-R","07-8-1262","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","23","39.0 N","7.0 E","N","","","","","395336.0","4163313.0","37.610968","-106.185860","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008756",
|
||||
"2008797","W0306 WELL NO 02","MK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0306","11142-R-R","10242106/01250051, 17-07570-6, 60610090392","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL; SMOKIN SPUDS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","31","39.0 N","8.0 E","N","","","","","398590.0","4160603.0","37.586911","-106.148624","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008797",
|
||||
"2008853","W0328 WELL NO 02","#5 PIVOT / DITCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0328","11381-F, 11381-F-R, 11381-F-R","07-8-1481, 10061896/10062087","WIDGER, KAREN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","17","38.0 N","8.0 E","N","","","","","400934.0","4156003.0","37.545712","-106.121457","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008853",
|
||||
"2008878","W0342 WELL NO 01","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0342","6192-R","06-8-4610","SCHAEFER, MICHAEL","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","3","38.0 N","7.0 E","N","","","","","394589.0","4159283.0","37.574567","-106.193742","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008878",
|
||||
"2008901","W0349 WELL NO 02","RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0349","1394-R","21-02584-06","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","32","40.0 N","6.0 E","N","","","","","381707.0","4169954.0","37.669158","-106.341317","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008901",
|
||||
"2008930","W0370 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0370","11395-F","07-6-1170","PENA, ROSINE; SANTISTEVEN, DOLLY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","28","39.0 N","7.0 E","N","","","","","393532.0","4162116.0","37.599975","-106.206121","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008930",
|
||||
"2008958","W0388 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0388","45-R","1259310/01201347","LOZOYA, CARLY; SANTI, CHERYL","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","19","39.0 N","8.0 E","N","","","","","399369.0","4163158.0","37.610022","-106.140153","06/20/2022 16:13","https://dwr.state.co.us/Tools/Structures/2008958",
|
||||
"2009000","W0410 WELL NO 02","SHERMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0410","12552-R","19-02634-06","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","33","39.0 N","8.0 E","N","","","","","402147.0","4159250.0","37.575104","-106.108162","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009000",
|
||||
"2009064","W0438 WELL NO 01","POWERS 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0438","11459-R, 77193-F","07-8-1266","B&B FARMS LLC; PAULSON, BRYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","35","39.0 N","7.0 E","N","","","","","396099.0","4160051.0","37.581659","-106.176754","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009064",
|
||||
"2009079","W0447 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0447","7024-R","10060742/10061034-100185","BASHTON, TERRI","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","9","38.0 N","8.0 E","N","","","","","401759.0","4156548.0","37.550712","-106.112193","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009079",
|
||||
"2009080","W0447 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0447","7033-R","07-8-1079","COOPER, MIKE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","9","38.0 N","8.0 E","N","","","","","401768.0","4156807.0","37.553047","-106.112126","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009080",
|
||||
"2009109","W0456 WELL NO 02","S. TRUJILLO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0456","5542-F","06-6-1842","SITTLER, CHRIS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","5","38.0 N","8.0 E","N","","","","","400530.0","4158854.0","37.571362","-106.126417","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009109",
|
||||
"2009125","W0463 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0463","7296-R, 7296-R-R","19-03524-08","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2019","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","22","39.0 N","7.0 E","N","","","","","393739.0","4164098.0","37.617859","-106.204065","09/22/2023 10:20","https://dwr.state.co.us/Tools/Structures/2009125",
|
||||
"2009156","W0475 WELL NO 01","MOCK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0475","10369-R","12061199/12061393","DEACON, MARK Q.; MOCK, ED","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","3","38.0 N","8.0 E","N","","","","","404189.0","4158690.0","37.570272","-106.084967","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009156",
|
||||
"2009201","W0507 WELL NO 01","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0507","11153-F, 11153-F-R, 11153-F-R","24-08700-06","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406592.0","4154280.0","37.530776","-106.057199","12/02/2020 16:57","https://dwr.state.co.us/Tools/Structures/2009201",
|
||||
"2009202","W0507 WELL NO 02","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0507","25311-F, 25311-F-R, 25311-F-R, 25311-F-R","25-07350-06","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406691.0","4154193.0","37.530001","-106.056067","12/02/2020 16:58","https://dwr.state.co.us/Tools/Structures/2009202",
|
||||
"2009238","W0522 WELL NO 01","376RF","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0522","11796-F","09060700/09060727","MONTE VISTA CEMETERY ASSOCIATION","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","34","39.0 N","7.0 E","N","","","","","394242.0","4160907.0","37.589162","-106.197905","01/22/2003 00:00","https://dwr.state.co.us/Tools/Structures/2009238",
|
||||
"2009287","W0553 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW3023, W0553","13638-R, 430-RF, 90501-F","19-02633-06","PACHECO, JAMES A. & RHONDA K.","RGWCD SD2","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","32","39.0 N","8.0 E","N","","","","","400160.0","4159191.0","37.574359","-106.130652","05/03/2021 13:29","https://dwr.state.co.us/Tools/Structures/2009287",
|
||||
"2009289","W0554 WELL NO 02","SHRIVER #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0554","14439-R","01062062/01062086, 14-17788-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","13","38.0 N","8.0 E","N","","","","","407395.0","4155825.0","37.544780","-106.048307","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009289",
|
||||
"2009290","13CW3002 WELL NO 04-R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3002, W0554","4414-F","03062351/03062406","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","12","38.0 N","8.0 E","N","","","","","407001.0","4157076.0","37.556015","-106.052925","09/23/2020 09:00","https://dwr.state.co.us/Tools/Structures/2009290",
|
||||
"2009291","W0554 WELL NO 05","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0554","3867-F","11061495/11061650","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","13","38.0 N","8.0 E","N","","","","","407402.0","4155907.0","37.545520","-106.048238","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009291",
|
||||
"2009349","W0593 WELL NO 01","3287FR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0593","3287-F, 3287-F-R","08061977/08062004","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","27","39.0 N","7.0 E","N","","","","","394908.0","4162026.0","37.599322","-106.190524","07/06/2009 15:29","https://dwr.state.co.us/Tools/Structures/2009349",
|
||||
"2009370","W0610 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0610","257-R","07-8-1071","BRODIE, MICHAEL D.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","34","39.0 N","7.0 E","N","","","","","394529.0","4159679.0","37.578128","-106.194478","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009370",
|
||||
"2009407","W0636 WELL NO 01","LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0636","14239-F","07-8-1438","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","18","38.0 N","9.0 E","N","","","","","408995.0","4155868.0","37.545327","-106.030203","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009407",
|
||||
"2009474","W0677 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0677","588-R","07-8-1171","TORRES, MATTHEW & SAVANNAH","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","6","38.0 N","8.0 E","N","","","","","398592.0","4158062.0","37.564013","-106.148249","03/28/2024 09:24","https://dwr.state.co.us/Tools/Structures/2009474",
|
||||
"2009508","W0700 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0700","6519-R-R","14-12342-6","FROEHLICH, GAYLE","RGWCD SD2","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","34","40.0 N","5.0 E","N","","","","","375229.0","4169251.0","37.661965","-106.414630","05/10/2021 13:50","https://dwr.state.co.us/Tools/Structures/2009508",
|
||||
"2009562","W0738 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0738","9293-F, 9293-F-R","07-4-1243","GONZALES, MATTHEW & VICTORIA J.; PHILLIPS, ROB & JUDY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","3","38.0 N","8.0 E","N","","","","","404009.0","4159137.0","37.574281","-106.087064","12/02/2020 17:00","https://dwr.state.co.us/Tools/Structures/2009562",
|
||||
"2009590","W0758 WELL NO 01","HEADLEE - NORTH PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","5411-F","20-08585-08","CORZINE, CLAY; CORZINE, CLAYTON E. & LISA M.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","11","38.0 N","8.0 E","N","","","","","405007.0","4157568.0","37.560245","-106.075560","12/05/2007 15:16","https://dwr.state.co.us/Tools/Structures/2009590",
|
||||
"2009592","W0758 WELL NO 03","HEADLEE - NORTH SPRINKLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","14300-F","100930/12061362","CORZINE, CLAYTON E. & LISA M.; DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","11","38.0 N","8.0 E","N","","","","","405396.0","4157166.0","37.556662","-106.071105","12/05/2007 15:18","https://dwr.state.co.us/Tools/Structures/2009592",
|
||||
"2009593","W0758 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","25274-F, 88423-F","8872479","OVERHOLTZER, SHERRY D. & KIMBERLY A. WRIGHT","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","11","38.0 N","8.0 E","N","","","","","404994.0","4156855.0","37.553818","-106.075615","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009593",
|
||||
"2009594","W0758 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","4191-F","03060384/03060419","COLORADO FRESH FARMS LLC (CHRISTENSEN, HAYDEN J.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","SE","10","38.0 N","8.0 E","N","","","","","404974.0","4156753.0","37.552897","-106.075828","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009594",
|
||||
"2009639","W0777 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0777","14719-R","212141985","GLENN, KYLE & JAMIE","RGWCD SD2","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","25","39.0 N","7.0 E","N","","","","","397366.0","4162018.0","37.599527","-106.162683","02/06/2026 12:58","https://dwr.state.co.us/Tools/Structures/2009639",
|
||||
"2009680","W0806 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0009, W0806","877-R","8215785","WAGGONER, BRIAN E. & ANGELA R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","32","39.0 N","8.0 E","N","","","","","401349.0","4159556.0","37.577776","-106.117238","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009680",
|
||||
"2009737","W0839 WELL NO CARSON 02","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0839","5684-F","16-02431-4","COLVILLE, DAVID; THISTLEDOWN","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","19","40.0 N","5.0 E","N","","","","","370239.0","4173828.0","37.702514","-106.472003","05/10/2021 13:53","https://dwr.state.co.us/Tools/Structures/2009737",
|
||||
"2009738","W0839 WELL NO CARSON 03","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0839","294-R","GP01-04-1050N","COLVILLE, DAVID; THISTLEDOWN","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","19","40.0 N","5.0 E","N","","","","","369872.0","4173839.0","37.702561","-106.476167","05/10/2021 13:54","https://dwr.state.co.us/Tools/Structures/2009738",
|
||||
"2009792","W0869 WELL NO 02","SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW0009, W0869","13797-R, 89893-F","11061441/11061680","HAMILTON, JUDY J.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","14","38.0 N","8.0 E","N","","","","","404976.0","4155823.0","37.544516","-106.075685","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009792",
|
||||
"2009807","W0872 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW3007, W0872","14945-, 87609-F","20013429","PHILLIPS, JAMES & SHERRY","RGWCD SD2","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","32","39.0 N","8.0 E","N","","","","","401410.0","4159265.0","37.575160","-106.116509","01/09/2026 15:36","https://dwr.state.co.us/Tools/Structures/2009807",
|
||||
"2010022","W1005 WELL NO 03","FIELD 2, EAST PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0012, W1005","11405-F","100084/10060129","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SE","9","38.0 N","8.0 E","N","","","","","402823.0","4156797.0","37.553069","-106.100182","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010022",
|
||||
"2010023","W1005 WELL NO 04","FIELD 2 SOUTH POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0012, W1005","3924-F","100108/10060159","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","9","38.0 N","8.0 E","N","","","","","402552.0","4156722.0","37.552364","-106.103240","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010023",
|
||||
"2010024","W1005 WELL NO 06","FIELD 1, WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1005","20200-S, 20200-S-R","09061916/09062017","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","10","38.0 N","8.0 E","N","","","","","403361.0","4156272.0","37.548394","-106.094023","02/05/2018 13:58","https://dwr.state.co.us/Tools/Structures/2010024",
|
||||
"2010157","W1084 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1084","1858-R","10060722/10061044","HOLLAND, ARTHUR L.; SAN LUIS VALLEY CEMETERY ASSOCIATION","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SE","28","39.0 N","7.0 E","N","","","","","393105.0","4161557.0","37.594888","-106.210876","12/02/2020 17:01","https://dwr.state.co.us/Tools/Structures/2010157",
|
||||
"2010320","W1201 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1201","79016-F","","DIERDRE LARSON & SERGE BUKHMAN","RGWCD SD2","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","SW","NW","24","39.0 N","7.0 E","N","","","","","397101.0","4163676.0","37.614439","-106.165918","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010320",
|
||||
"2010325","W1203 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1203","1221-R","11061489/01201348","STILLINGS, CHARLES N.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","8","38.0 N","8.0 E","N","","","","","400215.0","4156834.0","37.553124","-106.129708","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010325",
|
||||
"2010326","W1203 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1203","1223-R-R","11061528/11061634","STILLINGS, CHARLES N.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","8","38.0 N","8.0 E","N","","","","","400949.0","4156824.0","37.553113","-106.121398","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010326",
|
||||
"2010437","W1267 WELL NO 04","CORSET RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1267","10209-R","22-05507-08","COLVILLE, DAVID","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SE","SW","19","40.0 N","5.0 E","N","","","","","370365.0","4172967.0","37.694774","-106.470421","05/10/2021 13:56","https://dwr.state.co.us/Tools/Structures/2010437",
|
||||
"2010553","W1345 WELL NO 02","HOT PLANT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW0042, W1345","20548-R, 56842-F, 90380-F","12062526/12062764","RIO GRANDE COUNTY","RGWCD SD2","10/31/1983","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","20","40.0 N","6.0 E","N","","","","","381581.0","4172681.0","37.693714","-106.343188","02/06/2026 13:01","https://dwr.state.co.us/Tools/Structures/2010553",
|
||||
"2010554","W1345 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1345","3361-F","06-10-1447","SOUTHWAY, HENRY & ROCK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","SW","21","40.0 N","6.0 E","N","","","","","383013.0","4172636.0","37.693493","-106.326942","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010554",
|
||||
"2010555","W1351 WELL NO 01","#3 OUTSIDE NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1351","6296-R","09-8-1361","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","4","38.0 N","8.0 E","N","","","","","402480.0","4158471.0","37.568119","-106.104288","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010555",
|
||||
"2010556","W1351 WELL NO 03","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019, 13CW0006, W1351","6298-R","09062701/10060170","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","3","38.0 N","8.0 E","N","","","","","403390.0","4158452.0","37.568043","-106.093982","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010556",
|
||||
"2010557","W1351 WELL NO 04","#1 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1351","6299-R","10061884/10062084-100197","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","4","38.0 N","8.0 E","N","","","","","401755.0","4158690.0","37.570015","-106.112525","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010557",
|
||||
"2010607","W1374 WELL NO IRR 06","SHRIVER #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1374","","07061137/07061174, 1502006","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NE","12","38.0 N","8.0 E","N","","","","","407647.0","4157463.0","37.559567","-106.045661","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010607",
|
||||
"2010742","W1449 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1449","1329-R","10061887/072019004003","ZIEGLER, AARON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","11","38.0 N","8.0 E","N","","","","","406080.0","4157132.0","37.556426","-106.063358","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010742",
|
||||
"2010743","W1449 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1449","1330-R","10061901/072019003991","ZIEGLER, AARON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NE","11","38.0 N","8.0 E","N","","","","","406078.0","4157363.0","37.558507","-106.063410","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010743",
|
||||
"2010744","W1449 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1449","4458-F","05062245/05062209","ZIEGLER, AARON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","11","38.0 N","8.0 E","N","","","","","405771.0","4157308.0","37.557980","-106.066878","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010744",
|
||||
"2010783","W1459 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1459","8600-R","11061446/11061677","MARTINEZ, DEBRA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","4","38.0 N","8.0 E","N","","","","","402005.0","4159081.0","37.573565","-106.109747","06/20/2022 16:18","https://dwr.state.co.us/Tools/Structures/2010783",
|
||||
"2010784","W1459 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1459","8599-R","11061450/11061678","MARTINEZ, DEBRA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","4","38.0 N","8.0 E","N","","","","","401951.0","4158835.0","37.571343","-106.110325","03/10/2023 10:01","https://dwr.state.co.us/Tools/Structures/2010784",
|
||||
"2010842","W1476 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1476","2251-F","07-8-1080","COOPER, DAVID H.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","15","38.0 N","8.0 E","N","","","","","403356.0","4155061.0","37.537480","-106.093920","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010842",
|
||||
"2010950","W1554 WELL NO 01","#7 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","227-R-R","01061400/01061432","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","3","38.0 N","8.0 E","N","","","","","404590.0","4157995.0","37.564050","-106.080337","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010950",
|
||||
"2010952","W1554 WELL NO 03","#7 OUTSIDE NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","228-R","17-06581","DEACON, MARK Q.","RGWCD SD2","10/31/2019","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","38.0 N","8.0 E","N","","","","","404185.0","4158267.0","37.566459","-106.084957","02/23/2022 11:40","https://dwr.state.co.us/Tools/Structures/2010952",
|
||||
"2010953","W1554 WELL NO 04","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","9493-F","01061400/01061432","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","38.0 N","8.0 E","N","","","","","404186.0","4158032.0","37.564342","-106.084915","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010953",
|
||||
"2010954","W1554 WELL NO 06","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","4036-F","06052206/100489","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","2","38.0 N","8.0 E","N","","","","","405007.0","4158345.0","37.567247","-106.075661","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010954",
|
||||
"2010955","W1554 WELL NO 08","#5 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019, W1554","4964-F","10061967/10062005","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","3","38.0 N","8.0 E","N","","","","","403775.0","4158394.0","37.567561","-106.089616","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010955",
|
||||
"2010956","W1554 WELL NO 09","#5 CENTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019, W1554","14207-R","10061967/10062005","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","38.0 N","8.0 E","N","","","","","403778.0","4158365.0","37.567300","-106.089578","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010956",
|
||||
"2011015","W1602 WELL NO 01","63325-F, FKA WDID 2013904, SITTLER FLOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","10CW0026, W1602","63325-F","GP11-2155-4","SITTLER, CHRIS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","5","38.0 N","8.0 E","N","","","","","400949.0","4158647.0","37.569541","-106.121645","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011015",
|
||||
"2011237","W1717 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1717","25909-F, 25909-F-R","6558232","FRANCES MAXINE MANN REVOCABLE TRUST (MANN, FRANCES M.); MANN, GREG","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SE","NW","32","40.0 N","6.0 E","N","","","","","381481.0","4169965.0","37.669228","-106.343881","12/02/2020 17:03","https://dwr.state.co.us/Tools/Structures/2011237",
|
||||
"2011301","W1768 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1768","23855-F","15-13746-8","2-22 LEGACY ROCK LAND LLC; REDDEN, CODY","RGWCD SD2","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","21","39.0 N","7.0 E","N","","","","","392210.0","4164000.0","37.616798","-106.221372","02/06/2026 13:03","https://dwr.state.co.us/Tools/Structures/2011301",
|
||||
"2011317","W1780 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1780","10618-R","GP13-3211-4","VELASQUEZ, LEONARD E.","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SW","33","39.0 N","8.0 E","N","","","","","402015.0","4159460.0","37.576982","-106.109684","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011317",
|
||||
"2011375","W1803 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","95CW0015, W1803","13677-F","06-07960-03","PALMER, SUNNY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","6","38.0 N","8.0 E","N","","","","","398720.0","4158857.0","37.571191","-106.146910","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011375",
|
||||
"2011469","W1838 WELL NO 01","SHRIVER #6 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1838","5159-F","07-6-1050","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","12","38.0 N","8.0 E","N","","","","","407402.0","4156740.0","37.553027","-106.048343","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011469",
|
||||
"2011763","W1994 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1994","1460-R","04116122/11060653","SMITH, GINGER","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","33","40.0 N","6.0 E","N","","","","","383342.0","4170256.0","37.672089","-106.322831","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011763",
|
||||
"2011938","W2104 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2104","48940-F","11-30-2006-1115","LORENZ, JASON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","32","39.0 N","8.0 E","N","","","","","400124.0","4159492.0","37.577067","-106.131100","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011938",
|
||||
"2012073","W2216 WELL NO 01","COUNTY LINE PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2216","11365-F","19-03115-08","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","7","38.0 N","9.0 E","N","","","","","408215.0","4156513.0","37.551063","-106.039112","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012073",
|
||||
"2012179","W2288 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2288","10273-F","15-04834-8","MALOUFF, BRYAN F.","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NE","19","38.0 N","9.0 E","N","","","","","409318.0","4153764.0","37.526397","-106.026287","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012179",
|
||||
"2012182","W2289 WELL NO 03","TRUCK STOP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2289","5554-F","19-02992-08","MATHEWS, RICHARD; PADGET, PATRICIA; ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","18","38.0 N","9.0 E","N","","","","","409001.0","4155132.0","37.538695","-106.030043","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012182",
|
||||
"2012191","W2297 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2297","","042015004226","MONTE VISTA SCHOOL DISTRICT C-8 (HOTZ, MARK)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","4","38.0 N","8.0 E","N","","","","","402570.0","4159156.0","37.574301","-106.103360","12/02/2020 17:04","https://dwr.state.co.us/Tools/Structures/2012191",
|
||||
"2012241","W2334 WELL NO 06","THISTLEDOWN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2334","2236-F","19-03347-04","COLVILLE, DAVID; THISTLEDOWN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","24","40.0 N","4.0 E","N","","","","","368454.0","4173277.0","37.697295","-106.492146","05/10/2021 13:57","https://dwr.state.co.us/Tools/Structures/2012241",
|
||||
"2012256","W2344 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2344","13708-R","06-8-3161","TEMPLE, BEAU AND KIMBERLEY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","10","38.0 N","8.0 E","N","","","","","403376.0","4157054.0","37.555443","-106.093957","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012256",
|
||||
"2012266","W2349 WELL NO 01","FOOTBALL FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2349","","242452311, 242452626","DEL NORTE SCHOOL DIST. #7; TRUJILLO, DEMO","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NE","NW","32","40.0 N","6.0 E","N","","","","","381323.0","4170496.0","37.673992","-106.345758","06/20/2022 16:14","https://dwr.state.co.us/Tools/Structures/2012266",
|
||||
"2012273","W2354 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2354","2892-F","032014000153/06200659","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","6","38.0 N","8.0 E","N","","","","","399344.0","4158276.0","37.566024","-106.139765","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012273",
|
||||
"2012274","W2354 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2354","15072-R","032014000153/06200659","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","6","38.0 N","8.0 E","N","","","","","399402.0","4158269.0","37.565967","-106.139108","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012274",
|
||||
"2012275","W2354 WELL NO 03","KETTLESON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2354","15071-R, 15073-R","032014000153/06200659","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","6","38.0 N","8.0 E","N","","","","","399396.0","4158254.0","37.565831","-106.139174","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012275",
|
||||
"2012364","W2430 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","05CW0018, W2430","24697-, 24697--A","23034083","GARCIA, MARY GRACE; INDIAN TRAILS WATER LLC (TECZA, JASON & JULIE)","RGWCD SD2","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","31","40.0 N","4.0 E","N","","","","","361234.1","4170880.0","37.674633","-106.573559","02/06/2026 13:04","https://dwr.state.co.us/Tools/Structures/2012364",
|
||||
"2012409","W2443 WELL NO 01","STEINHARTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2443","2126-F","09062794/04062027","PAULSON, ROCK B. & TERRI RAE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SE","21","39.0 N","7.0 E","N","","","","","393216.0","4162725.0","37.605426","-106.209789","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012409",
|
||||
"2012452","W2466 WELL NO 03","BLACK WIDOW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2466","2295-F","8146966","RUE, BRIAN AND ANDREA","RGWCD SD2","10/31/2012","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","5","39.0 N","7.0 E","N","","","","","390729.0","4168086.0","37.653444","-106.238761","08/29/2014 11:52","https://dwr.state.co.us/Tools/Structures/2012452",
|
||||
"2012458","W2469 WELL NO 03","ROBERTS OPEN DISCHARGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2469","5541-F","07-10-1061","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SW","30","40.0 N","5.0 E","N","","","","","370177.0","4171442.0","37.681006","-106.472281","05/10/2021 13:58","https://dwr.state.co.us/Tools/Structures/2012458",
|
||||
"2012459","W2469 WELL NO 04","W. OPEN DITCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2469","6287-F","06-10-1285","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","25","40.0 N","4.0 E","N","","","","","368845.0","4171610.0","37.682331","-106.487412","05/10/2021 13:58","https://dwr.state.co.us/Tools/Structures/2012459",
|
||||
"2012512","W2520 WELL NO 06","GRAVEL PIT ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2520","","25-00883-04","CLAIR, DON; RAKHRA MUSHROOM FARM CORP; ROCKY MOUNTAIN SOILS","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","26","38.0 N","10.0 E","N","","","","","425291.0","4151507.0","37.507488","-105.845306","10/29/2009 15:40","https://dwr.state.co.us/Tools/Structures/2012512",
|
||||
"2012529","W2534 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2534","5977-R","06-6-1181","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","5","38.0 N","8.0 E","N","","","","","400142.0","4158429.0","37.567490","-106.130752","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012529",
|
||||
"2012553","W2542 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2542","8447-R","8843863","GROWER SHIPPER POTATO COMPANY; LOUNSBURY, MARK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","NE","36","39.0 N","7.0 E","N","","","","","398230.0","4160355.0","37.584637","-106.152666","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012553",
|
||||
"2012558","W2545 WELL NO 02","HAGEDORN #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","601-R-R","06-8-2823","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","9","38.0 N","8.0 E","N","","","","","402568.0","4157579.0","37.560089","-106.103173","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012558",
|
||||
"2012559","W2545 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","602-R","07-4-1007","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","9","38.0 N","8.0 E","N","","","","","402570.0","4157538.0","37.559720","-106.103145","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012559",
|
||||
"2012560","W2545 WELL NO 04","HAGEDORN #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","3136-F","05-8-4374","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","9","38.0 N","8.0 E","N","","","","","402565.0","4157344.0","37.557971","-106.103175","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012560",
|
||||
"2012561","W2545 WELL NO 05","PERMIT 412-RF","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","12069-F","10061973/10062001","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","4","38.0 N","8.0 E","N","","","","","401778.0","4158313.0","37.566620","-106.112214","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012561",
|
||||
"2012585","W2549 WELL NO 01","MINI PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2549","1610-R","12061239/12061317","HART, JAMES N. & MARIA L.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SE","24","39.0 N","7.0 E","N","","","","","398311.0","4163215.0","37.610419","-106.152146","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012585",
|
||||
"2012590","W2551 WELL NO IRR 06","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0008, W2551","12850-R, 12850-R-R","05062329","KING, WILLIAM; RUTGERS, JAMES","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","20","38.0 N","9.0 E","N","","","","","410039.0","4154185.0","37.530262","-106.018180","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012590",
|
||||
"2012591","W2551 WELL NO IRR 07","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","13CW0008, W2551","12849-R","05082827","KING, WILLIAM; RUTGERS, JAMES","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","20","38.0 N","9.0 E","N","","","","","410035.0","4153992.0","37.528522","-106.018201","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012591",
|
||||
"2012649","W2566 WELL NO 01","FLOOD PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2566","1682-R-R","072014000385/12062754","HINTON RANCH LLC; HINTON, ERIC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","27","39.0 N","7.0 E","N","","","","","393685.0","4161656.0","37.595847","-106.204322","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012649",
|
||||
"2012700","W2599 WELL NO 01","HEMMERLING NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","9191-F","06-6-1537","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","16","38.0 N","8.0 E","N","","","","","402546.0","4155988.0","37.545749","-106.103210","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012700",
|
||||
"2012701","W2599 WELL NO 02","HEMMERLING WEST 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6317-F","21-026230-06","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","16","38.0 N","8.0 E","N","","","","","401753.0","4155746.0","37.543484","-106.112153","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012701",
|
||||
"2012702","W2599 WELL NO 03","HEMMERLING WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6316-F","07-6-1087","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","16","38.0 N","8.0 E","N","","","","","401749.0","4155497.0","37.541240","-106.112165","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012702",
|
||||
"2012703","W2599 WELL NO 04","HEMMERLLING SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6315-F","GP11-4621-6","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","16","38.0 N","8.0 E","N","","","","","401742.0","4155221.0","37.538752","-106.112208","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012703",
|
||||
"2012704","W2599 WELL NO 05","HEMMERLING NW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6318-F, 6318-F-R","03241861/10063672","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","16","38.0 N","8.0 E","N","","","","","401758.0","4155998.0","37.545756","-106.112131","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012704",
|
||||
"2012705","W2599 WELL NO 06","WILLSCHAU","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6320-F-R","07-6-1012","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","9","38.0 N","8.0 E","N","","","","","401778.0","4157191.0","37.556509","-106.112064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012705",
|
||||
"2012708","W2599 WELL NO 11","CALDON #1: N WELL (CASEY)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6319-F","12061218/12061394","ARCHER, RODNEY; ARCHER, RODNEY AND JEANNE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","5","38.0 N","8.0 E","N","","","","","400951.0","4157629.0","37.560368","-106.121485","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012708",
|
||||
"2013546","W3691 WELL NO 03R","#1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3691","14440-R","01062062/01062086, 14-17788-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","NE","13","38.0 N","8.0 E","N","","","","","407801.0","4155531.0","37.542171","-106.043674","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013546",
|
||||
"2013593","W3842 WELL NO 01R","JAMES PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3842","1829-R-R","GP06-8-4916","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","21","39.0 N","7.0 E","N","","","","","393304.0","4163517.0","37.612573","-106.208908","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013593",
|
||||
"2013611","W3895 WELL NO 08R","CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0022, W3895","3885-F-R","25-06094-06","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","15","38.0 N","8.0 E","N","","","","","404532.0","4154778.0","37.535052","-106.080575","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013611",
|
||||
"2013689","94CW009 WELL NO 05A","W SPK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","94CW0009","42294-F","11061515/072014000399","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SE","25","40.0 N","4.0 E","N","","","","","369273.0","4171511.0","37.681500","-106.482542","05/10/2021 14:00","https://dwr.state.co.us/Tools/Structures/2013689",
|
||||
"2013700","95CW001 WELL NO 02A","BLUE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","95CW0001","38406-F","06-6-1904","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","18","38.0 N","9.0 E","N","","","","","408649.0","4155550.0","37.542427","-106.034079","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013700",
|
||||
"2013766","98CW040 HOMELAKE WELL 7","CEMETERY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0040","53185-F","07083705/05083072","COLORADO STATE VETERAN'S CENTER (KLIPPERT, CRYSTAL); MEDINA, JONATHON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","33","39.0 N","8.0 E","N","","","","","402982.0","4159427.0","37.576787","-106.098731","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013766",
|
||||
"2013768","98CW040 HOMELAKE WELL 9","SOUTHWEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0040","53187-F","07083706/16090022","COLORADO STATE VETERAN'S CENTER (KLIPPERT, CRYSTAL); MEDINA, JONATHON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","33","39.0 N","8.0 E","N","","","","","402973.0","4159188.0","37.574632","-106.098801","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013768",
|
||||
"2013772","98CW001 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0001","48170-F, 48170-F-R","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","33","38.0 N","9.0 E","N","","","","","412628.0","4150987.0","37.501690","-105.988502","07/14/2009 14:27","https://dwr.state.co.us/Tools/Structures/2013772",
|
||||
"2013773","98CW001 WELL NO 1AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0001","48171-F, 48171-F-R","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NE","33","38.0 N","9.0 E","N","","","","","412431.0","4151002.0","37.501806","-105.990732","07/14/2009 14:20","https://dwr.state.co.us/Tools/Structures/2013773",
|
||||
"2013776","98CW020 WELL NO 1R","2010021 ORGINAL WELL, FIELD 2, NORTH POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW0012, 98CW0020","1870-R-R","09062696-100093","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","9","38.0 N","8.0 E","N","","","","","402564.0","4156783.0","37.552915","-106.103112","04/10/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013776",
|
||||
"2013785","98CW024 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0024","47402-F","05060754/05060783","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","NW","10","38.0 N","8.0 E","N","","","","","403827.0","4157209.0","37.556887","-106.088872","05/15/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013785",
|
||||
"2013786","98CW025 WELL NO 1AA","FIELD 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0025","48407-F","05060754/05060783","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","10","38.0 N","8.0 E","N","","","","","403873.0","4157187.0","37.556694","-106.088348","03/19/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013786",
|
||||
"2013870","2002CW0032 WELL NO 2R","COTTEN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0032","58599-F","052015002589/01062077","SEGER, BART W. & RUTHANNA R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","19","39.0 N","8.0 E","N","","","","","399965.0","4163044.0","37.609060","-106.133386","10/17/2007 15:44","https://dwr.state.co.us/Tools/Structures/2013870",
|
||||
"2013898","09CW0019 WELL NO 2-AAA","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0019","42411-F","19-02640-08","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","4","38.0 N","8.0 E","N","","","","","403348.0","4158019.0","37.564137","-106.094401","11/05/2025 14:26","https://dwr.state.co.us/Tools/Structures/2013898",
|
||||
"2013903","PERMIT 44605 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","44605-F","02072436/07242528","MEADOWBROOK VILLAGE TOWNHOMES ASSOC.; RIGGENBACH, SUSAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","36","39.0 N","7.0 E","N","","","","","397206.0","4160342.0","37.584406","-106.164260","09/18/2024 09:26","https://dwr.state.co.us/Tools/Structures/2013903",
|
||||
"2013923","PERMIT 42821 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42821-F","05060229/05060269","FORREST, RICH","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","32","40.0 N","5.0 E","N","","","","","372038.0","4170882.0","37.676222","-106.451084","05/10/2021 14:00","https://dwr.state.co.us/Tools/Structures/2013923",
|
||||
"2013926","PERMIT 34660 F","SLATTERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","34660-F","18-05476-08","MOSBY, DAVID JASON & JENNIFER; PDR DEL NORTE, LP","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","21","40.0 N","6.0 E","N","","","","","382639.0","4172365.0","37.691003","-106.331140","07/11/2007 14:29","https://dwr.state.co.us/Tools/Structures/2013926",
|
||||
"2013976","PERMIT 57101-F","PERRY #1 EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57101-F","02-01565-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","23","38.0 N","8.0 E","N","","","","","406196.0","4153976.0","37.527996","-106.061641","07/07/2009 14:17","https://dwr.state.co.us/Tools/Structures/2013976",
|
||||
"2014008","PERMIT 25154-F-","LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","25154-F","05083045/12062756","HINTON RANCH LLC; HINTON, ERIC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","27","39.0 N","7.0 E","N","","","","","394086.0","4162113.0","37.600012","-106.199846","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014008",
|
||||
"2014011","PERMIT 39866-F-","WAREHOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","39866-F","01071324/01070528","GROWER SHIPPER POTATO COMPANY; LOUNSBURY, MARK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","36","39.0 N","7.0 E","N","","","","","398246.0","4160504.0","37.585981","-106.152505","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014011",
|
||||
"2014056","20CW0022 WELL NO. 8-RS","NW SUBM, REPLACED 2013611","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0022","85393-F","20-06951-04","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","15","38.0 N","8.0 E","N","","","","","404300.0","4155150.0","37.538381","-106.083249","05/03/2023 11:10","https://dwr.state.co.us/Tools/Structures/2014056",
|
||||
"2014062","09CW0019 WELL NO 1AA","#3 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0019","46473-F","GP13-4858","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","4","38.0 N","8.0 E","N","","","","","402924.0","4158398.0","37.567508","-106.099251","11/05/2025 14:26","https://dwr.state.co.us/Tools/Structures/2014062",
|
||||
"2014063","09CW0019 WELL NO 1-A","#3 OUTSIDE WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019","34578-F","07-8-1567","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","4","38.0 N","8.0 E","N","","","","","402439.0","4158434.0","37.567781","-106.104747","11/05/2025 14:26","https://dwr.state.co.us/Tools/Structures/2014063",
|
||||
"2014064","PERMIT 46565-F-","BURD'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46565-F","07-8-1542","BURD, CHARLES W.; RUTGERS, JAMES","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","7","38.0 N","8.0 E","N","","","","","399708.0","4157251.0","37.556827","-106.135504","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014064",
|
||||
"2014065","24CW0003 WELL NO 2A","CORZINE HALF CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","24CW0003","25273-F","100929/12061368","CORZINE, CLAYTON E. & LISA M.; DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","11","38.0 N","8.0 E","N","","","","","405568.0","4156803.0","37.553409","-106.069111","11/05/2025 13:21","https://dwr.state.co.us/Tools/Structures/2014065",
|
||||
"2014066","06CW29 WELL NO 1-R","BROWN #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0029, W0205","1837-R-R","03062392/03062374","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","12","38.0 N","8.0 E","N","","","","","406990.0","4156337.0","37.549354","-106.052956","03/22/2013 15:51","https://dwr.state.co.us/Tools/Structures/2014066",
|
||||
"2014067","PERMIT 3034-F-","SHRIVER #6 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","3034-F","100582/11060692","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","12","38.0 N","8.0 E","N","","","","","407407.0","4156883.0","37.554316","-106.048304","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014067",
|
||||
"2014068","PERMIT 23412-F-R","#2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23412-F-R","05-8-4726","CALDON, CASEY F.; PERRY, THOMAS R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","14","38.0 N","8.0 E","N","","","","","405906.0","4155139.0","37.538447","-106.065072","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014068",
|
||||
"2014069","PERMIT 23571-F-","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23571-F","09060706/09060735","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","15","38.0 N","8.0 E","N","","","","","404580.0","4154779.0","37.535066","-106.080032","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014069",
|
||||
"2014070","PERMIT 59415-F-","#5 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","59415-F","07-8-1481, 10061896/10062087","WIDGER, KAREN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","17","38.0 N","8.0 E","N","","","","","401327.0","4155608.0","37.542195","-106.116956","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014070",
|
||||
"2014071","W2599 WELL NO 02","#5 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","60953-F","07-8-1481, 10061896/10062087","WIDGER, KAREN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","17","38.0 N","8.0 E","N","","","","","400921.0","4155937.0","37.545116","-106.121596","01/07/2009 16:22","https://dwr.state.co.us/Tools/Structures/2014071",
|
||||
"2014072","PERMIT 57100-F-","P #1 SOUTH OF PIVOT, THIS WELL REPLACED 2013964","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57100-F","02-01563-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","23","38.0 N","8.0 E","N","","","","","406043.0","4153933.0","37.527593","-106.063367","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014072",
|
||||
"2014075","2005CW017 WELL NO 2S","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0017","46036-F","96-6-1023","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406654.0","4154323.0","37.531169","-106.056503","04/06/2021 17:58","https://dwr.state.co.us/Tools/Structures/2014075",
|
||||
"2014076","2005CW017 WELL NO 1S","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","05CW0017","46037-F","24-02415","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406579.0","4154131.0","37.529431","-106.057327","12/02/2020 17:33","https://dwr.state.co.us/Tools/Structures/2014076",
|
||||
"2014077","PERMIT 59455-F-","FIELD 1, WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","59455-F","12212658/09062012","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","10","38.0 N","8.0 E","N","","","","","403446.0","4156337.0","37.548989","-106.093070","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014077",
|
||||
"2014095","PERMIT 21109-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","21109-F","06-6-1617","ZAHRINGER, JASON","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","11","38.0 N","10.0 E","N","","","","","424566.0","4156610.0","37.553421","-105.854032","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014095",
|
||||
"2014096","2006CW014 WELL NO 2","#16, P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23240-F","052018001052/052018002660","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","15","38.0 N","10.0 E","N","","","","","423007.0","4154593.0","37.535113","-105.871469","07/31/2008 09:18","https://dwr.state.co.us/Tools/Structures/2014096",
|
||||
"2014097","2006CW014 WELL NO 2A","#16, SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23533-F","12212654/12212593","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","15","38.0 N","10.0 E","N","","","","","422897.0","4154532.0","37.534554","-105.872707","07/31/2008 09:32","https://dwr.state.co.us/Tools/Structures/2014097",
|
||||
"2014098","2006CW014 WELL NO 2B","#16, NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23534-F","09212320/12212586","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","15","38.0 N","10.0 E","N","","","","","422896.0","4154663.0","37.535735","-105.872732","07/31/2008 09:33","https://dwr.state.co.us/Tools/Structures/2014098",
|
||||
"2014099","2006CW014 WELL NO 3","#17, P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23239-F","072017001410/12061499","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","15","38.0 N","10.0 E","N","","","","","423773.0","4154188.0","37.531527","-105.862758","07/31/2008 09:38","https://dwr.state.co.us/Tools/Structures/2014099",
|
||||
"2014104","PERMIT 36757-F-","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","36757-F","23-08681-08","SOUTH WIND DAIRY LTD CO (SQUIRE, ALLEN G.); ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","17","38.0 N","9.0 E","N","","","","","410819.0","4154650.0","37.534529","-106.009410","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014104",
|
||||
"2014108","2006CW014 WELL NO 3B","#17 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23531-F","12061061","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","22","38.0 N","10.0 E","N","","","","","423663.0","4154161.0","37.531275","-105.864000","07/31/2008 09:45","https://dwr.state.co.us/Tools/Structures/2014108",
|
||||
"2014109","2006CW014 WELL NO 3A","#17 E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23532-F","05221561","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","22","38.0 N","10.0 E","N","","","","","423750.0","4154061.0","37.530380","-105.863005","07/31/2008 09:42","https://dwr.state.co.us/Tools/Structures/2014109",
|
||||
"2014171","PERMIT 20721-F-R","ARAGON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20721-F, 20721-F-R","GP10-3748-8","MALOUFF, NEFF & JERICA","RGWCD SD2","10/31/2013","10/31/2025","3","20","ALAMOSA","","","","NW","SW","11","38.0 N","10.0 E","N","","","","","424240.0","4156526.0","37.552637","-105.857714","06/04/2019 10:53","https://dwr.state.co.us/Tools/Structures/2014171",
|
||||
"2014221","2009CW9 WELL NO 10-A","CASEY #1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0009","36272-F","10063524/10063706","ARCHER, RODNEY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","8","38.0 N","8.0 E","N","","","","","400950.0","4157226.0","37.556736","-106.121441","08/19/2013 14:52","https://dwr.state.co.us/Tools/Structures/2014221",
|
||||
"2014246","PERMIT 4412-FR","WRIGHT #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","4412-F-R","19-02993-08","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","17","38.0 N","9.0 E","N","","","","","410188.0","4154670.0","37.534648","-106.016553","12/08/2010 16:46","https://dwr.state.co.us/Tools/Structures/2014246",
|
||||
"2014331","05CW018 WELL NO 1R","WELL #1 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","05CW0018","30082-F, 61907-F","90049968","GARCIA, MARY GRACE; INDIAN TRAILS WATER LLC (TECZA, JASON & JULIE)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","31","40.0 N","4.0 E","N","","","","","361250.0","4171125.0","37.676841","-106.573413","08/12/2022 08:42","https://dwr.state.co.us/Tools/Structures/2014331",
|
||||
"2014340","PERMIT 22628-F","WRIGHT #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","22628-F","19-02993-08","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","17","38.0 N","9.0 E","N","","","","","410372.0","4154659.0","37.534566","-106.014469","07/22/2008 11:15","https://dwr.state.co.us/Tools/Structures/2014340",
|
||||
"2014349","PERMIT 57468-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57468-F","07-8-1079","COOPER, MIKE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","9","38.0 N","8.0 E","N","","","","","402219.0","4156498.0","37.550311","-106.106979","07/29/2008 13:19","https://dwr.state.co.us/Tools/Structures/2014349",
|
||||
"2014356","PERMIT 10085-SR","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","10085-S-R","06052206/100489","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","2","38.0 N","8.0 E","N","","","","","405019.0","4157963.0","37.563806","-106.075476","08/04/2008 13:08","https://dwr.state.co.us/Tools/Structures/2014356",
|
||||
"2014362","2007CW003 WELL NO 1R","N. TRUJILLO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0003","11460-R-R","06-6-2014","SITTLER, CHRIS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","5","38.0 N","8.0 E","N","","","","","400528.0","4158912.0","37.571884","-106.126447","08/12/2008 10:59","https://dwr.state.co.us/Tools/Structures/2014362",
|
||||
"2014376","PERMIT 59454-F","FIELD 1, WELL #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","59454-F","09061947/09062022","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","10","38.0 N","8.0 E","N","","","","","403369.0","4156483.0","37.550297","-106.093961","11/24/2008 10:32","https://dwr.state.co.us/Tools/Structures/2014376",
|
||||
"2014467","PERMIT 90232-F","SHAW CREEK REST AREA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","31138-, 90232-F","","COLORADO DEPARTMENT OF TRANSPORTATION (LOPEZ, GERALD); GARCIA, MARY GRACE","RGWCD SD2","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","28","40.0 N","4.0 E","N","","","","","363716.0","4171513.0","37.680709","-106.545542","09/25/2025 11:33","https://dwr.state.co.us/Tools/Structures/2014467",
|
||||
"2014471","23CW0009 WELL NO 1R","FKA 2009791, NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW0009","13796-R-R, 89892-F","11061443/11061672-100720","HAMILTON, JUDY J.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","14","38.0 N","8.0 E","N","","","","","404979.0","4155918.0","37.545372","-106.075664","11/05/2025 13:22","https://dwr.state.co.us/Tools/Structures/2014471",
|
||||
"2014482","PERMIT 14878-R-R","MARTIN S. RES., REPLACED 2011906 (14878-R)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","14878-R-R","15-07737-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","11","38.0 N","8.0 E","N","","","","","405673.0","4156091.0","37.547003","-106.067831","10/16/2013 08:29","https://dwr.state.co.us/Tools/Structures/2014482",
|
||||
"2014510","PERMIT 11180RR","FKA 2012570, PIERCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","11180-R","12062520/12062758","HINTON RANCH LLC; HINTON, ERIC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","27","39.0 N","7.0 E","N","","","","","394496.0","4161728.0","37.596589","-106.195147","12/02/2020 17:18","https://dwr.state.co.us/Tools/Structures/2014510",
|
||||
"2014519","SHRIVER CAN PUMP","SURFACE WATER","Active Structure with contemporary diversion records (A)","MEASURING POINT","RIO GRANDE","01385432","75.80","","","01062062/01062086, 14-17788-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","13","38.0 N","8.0 E","N","","","","","407411.0","4155818.0","37.544719","-106.048125","01/06/2016 16:17","https://dwr.state.co.us/Tools/Structures/2014519",
|
||||
"2014526","SURFACE RECORDER","OUTCULT/SHRIVER DATA RECORDER","Active Structure with contemporary diversion records (A)","MEASURING POINT","RIO GRANDE","01385432","77.40","","","03061813/03061881, 1502007","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","2","38.0 N","8.0 E","N","","","","","405551.0","4158348.0","37.567330","-106.069503","12/05/2017 15:47","https://dwr.state.co.us/Tools/Structures/2014526",
|
||||
"2014534","13CW0006 WELL NO 3-R","#6 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0006","80657-F","05119254/10062079","DEACON, MARK Q.","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","38.0 N","8.0 E","N","","","","","403767.0","4158003.0","37.564037","-106.089655","12/02/2020 17:20","https://dwr.state.co.us/Tools/Structures/2014534",
|
||||
"2014536","SURFACE RECORDER","SHRIVER DATA RECORDER","Active Structure with contemporary diversion records (A)","MEASURING POINT","RIO GRANDE","01385432","75.69","","","07061137/07061174, 1502006","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","12","38.0 N","8.0 E","N","","","","","407659.0","4157465.0","37.559587","-106.045525","12/05/2017 15:48","https://dwr.state.co.us/Tools/Structures/2014536",
|
||||
"2014580","18CW0006 WELL NO 4R NORTH WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","18CW0006","90524-F","07-4-1017","BROWN, TYLER J. AND LYNNE R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","29","40.0 N","6.0 E","N","","","","","381871.0","4170683.0","37.675748","-106.339576","11/05/2025 13:32","https://dwr.state.co.us/Tools/Structures/2014580",
|
||||
|
139
Data/SBD_Data/StructureList_SBD3.csv
Normal file
139
Data/SBD_Data/StructureList_SBD3.csv
Normal file
@ -0,0 +1,139 @@
|
||||
WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information,
|
||||
"2105004","W1771 WELL NO 01","DUNN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1771","20755-R","06-10-1392","G.L. BAGWELL & SONS (BAGWELL, LEE & GRACE)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","36","35.0 N","9.0 E","N","","","","","416013.0","4120257.0","37.225046","-105.946724","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105004",
|
||||
"2105023","82CW008 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0008","12519-R-R","06-10-1459","SHAWCROFT, BART A. & STEPHANIE R.","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NW","SE","12","35.0 N","9.0 E","N","","","","","416963.0","4127268.0","37.288320","-105.936799","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2105023",
|
||||
"2105085","W0398 WELL NO 01","ORTEGA WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0398","5053-F","22-03018-12","POLKOWSKE, AARON & TIFFANIE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","29","35.0 N","9.0 E","N","","","","","410502.0","4122375.0","37.243622","-106.009090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105085",
|
||||
"2105127","W0489 WELL NO 01","GIBSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0489","21027-R","24-04010-10","GIBSON, MAURICE & IRENE (GIBSON, MAURICE & IRENE)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","27","35.0 N","9.0 E","N","","","","","413983.0","4121955.0","37.240164","-105.969799","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105127",
|
||||
"2105158","W0658 WELL NO 01","SHAWCROFT 285 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","16CW0009, W0658","1141-R","12062630/12062671","SHAWCROFT, CHARLIE & TANNA","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","11","35.0 N","9.0 E","N","","","","","415309.0","4127926.0","37.294101","-105.955531","12/05/2007 08:20","https://dwr.state.co.us/Tools/Structures/2105158",
|
||||
"2105181","W0797 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0797","3628-F","21-04767-10","FINNEGAN, CHUCK; FINNEGAN, VALERIE & KEYS, NAOMI","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","25","35.0 N","9.0 E","N","","","","","416044.0","4121883.0","37.239703","-105.946558","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105181",
|
||||
"2105229","W0930 WELL NO 01","CR U WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0930","5339-F","07-12-1048","FINNEGAN, CHUCK; MARTINEZ, JOSEPH A. (TONY)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","26","35.0 N","9.0 E","N","","","","","414421.0","4121970.0","37.240340","-105.964863","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105229",
|
||||
"2105231","W0932 WELL NO 01","DON'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0932","5106-F, 329438-","07-10-1119","LARSEN, DON; LARSEN, RHETT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","26","35.0 N","9.0 E","N","","","","","415242.0","4122746.0","37.247409","-105.955697","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105231",
|
||||
"2105256","W1178 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1178","12083-R","06-8-3912","MORTENSEN, ARNOLD; MORTENSEN, SHANE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","19","35.0 N","10.0 E","N","","","","","418100.0","4123864.0","37.257741","-105.923598","09/17/2007 14:42","https://dwr.state.co.us/Tools/Structures/2105256",
|
||||
"2105318","W1368 WELL NO 02","LA JARA CEMETERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1368","","6865277","LA JARA CEMETERY DISTRICT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","NW","11","35.0 N","9.0 E","N","","","","","414742.0","4128339.0","37.297771","-105.961975","07/23/2024 15:40","https://dwr.state.co.us/Tools/Structures/2105318",
|
||||
"2105354","W1487 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1487","12680-R","07-10-1068","RUYBAL, THOMAS","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","28","35.0 N","9.0 E","N","","","","","411168.0","4122004.0","37.240342","-106.001538","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105354",
|
||||
"2105382","W1692 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3002, W1692","4604-F, 90219-F","05083022/12062659","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); MARTINEZ, LEROY & ROSALIE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","SW","27","35.0 N","9.0 E","N","","","","","413263.0","4121978.0","37.240305","-105.977918","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105382",
|
||||
"2105383","W1692 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3002, W1692","3498-F, 90220-F","07-10-1386, 25-07846-08","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS); MARTINEZ, LEROY & ROSALIE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","NW","27","35.0 N","9.0 E","N","","","","","412830.0","4122783.0","37.247520","-105.982894","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105383",
|
||||
"2105400","W1718 WELL NO 04","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1718","23868-F","6905049","NORTH CONEJOS SCHOOLS; RUYBAL, RICH","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NE","27","35.0 N","9.0 E","N","","","","","413905.0","4122850.0","37.248223","-105.970782","07/23/2024 15:41","https://dwr.state.co.us/Tools/Structures/2105400",
|
||||
"2105401","W1718 WELL NO 05","IRRIGATION WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1718","23869-F, 23869-F-R","23-06553-03","NORTH CONEJOS SCHOOLS; RUYBAL, RICH","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NE","27","35.0 N","9.0 E","N","","","","","413883.0","4122848.0","37.248203","-105.971030","07/23/2024 15:41","https://dwr.state.co.us/Tools/Structures/2105401",
|
||||
"2105404","W1726 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1726","3782-F","5102514","CONEJOS COUNTY HOSPITAL (WEIDERSPON, ZACH)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SE","NE","22","35.0 N","9.0 E","N","","","","","414354.0","4124481.0","37.262965","-105.965908","06/20/2022 16:23","https://dwr.state.co.us/Tools/Structures/2105404",
|
||||
"2105408","W1752 WELL NO 01","SCOTT JOHNSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1752","2586-F","07-8-1485","JOHNSON, SCOTT (LA JARA)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NE","SW","SW","24","35.0 N","9.0 E","N","","","","","416309.0","4123561.0","37.254851","-105.943759","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105408",
|
||||
"2105429","W1849 WELL NO 01","HWY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1849","4165-F","11061533/11061560","SHAWCROFT, BRETT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","SE","14","35.0 N","9.0 E","N","","","","","415750.0","4125166.0","37.269266","-105.950243","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105429",
|
||||
"2105444","W1942 WELL NO 04","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1942","14555-","100950/12062792","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","SW","23","35.0 N","9.0 E","N","","","","","414499.0","4124143.0","37.259932","-105.964234","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105444",
|
||||
"2105445","W1942 WELL NO 05","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1942","14318-","12061185/12061434-100776","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NE","NW","SW","23","35.0 N","9.0 E","N","","","","","414670.0","4124147.0","37.259983","-105.962306","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105445",
|
||||
"2105555","W2142 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2142","3118-F","GP12-4493-8","BOND, BART; GARTRELL, JAY; PETERSON, STEVEN","RGWCD SD3","10/31/2012","10/31/2025","3","21","CONEJOS","","","SW","SE","NW","17","35.0 N","10.0 E","N","","","","","419837.0","4125867.0","37.275945","-105.904228","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105555",
|
||||
"2105622","W2248 WELL NO 01","EAST FEED LOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2248","14278-F","12061422-100745","CROWTHER, LEON C.","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","24","35.0 N","9.0 E","N","","","","","417474.0","4123458.0","37.254026","-105.930612","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105622",
|
||||
"2105623","W2248 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2248","14277-F","052016002841/12061424","CROWTHER, LEON C.","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","24","35.0 N","9.0 E","N","","","","","417125.0","4123461.0","37.254022","-105.934547","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105623",
|
||||
"2105896","22CW0012 WELL NO 1R","SANFORD CEMETERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0012","17117-F, 17117-F-R","8415201","LARSEN, LORRAINE; MCCARROLL, TARA; RUSSELL, CORY; SANFORD CEMETERY DISTRICT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","NE","31","35.0 N","10.0 E","N","","","","","419180.0","4121644.0","37.237827","-105.911179","11/05/2025 13:25","https://dwr.state.co.us/Tools/Structures/2105896",
|
||||
"2105907","PERMIT 41550-F","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","41550-F","6905049","NORTH CONEJOS SCHOOLS; RUYBAL, RICH","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","27","35.0 N","9.0 E","N","","","","","413856.0","4122863.0","37.248336","-105.971336","05/29/2024 08:37","https://dwr.state.co.us/Tools/Structures/2105907",
|
||||
"2205001","W1766 WELL NO IRR 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1766","246-R","07-10-1113","WILLETT CATTLE COMPANY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NE","SW","5","35.0 N","11.0 E","N","","","","","429393.0","4128686.0","37.302127","-105.796717","12/02/2020 16:30","https://dwr.state.co.us/Tools/Structures/2205001",
|
||||
"2205002","W1769 WELL NO 01","PAULSON WELL #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1769","8667-R","07-10-1002","REED, STEVE; TRIPLE R RANCHES LLC (REED, BRADLEY J.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SE","SW","4","34.0 N","10.0 E","N","","","","","421405.0","4118587.0","37.210464","-105.885775","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205002",
|
||||
"2205004","W1938 WELL NO 02","3000 GAL WELL NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1938","10946-R, 13618-R","07-10-1044","YUND, CHAY; YUND, CHAY C. & JENNIFER A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","NW","SE","SE","14","35.0 N","10.0 E","N","","","","","425427.0","4125442.0","37.272579","-105.841138","09/17/2007 14:55","https://dwr.state.co.us/Tools/Structures/2205004",
|
||||
"2205005","W1938 WELL NO 03","3600 GAL WELL SPRINKLER, SETTLEMENT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1938","4713-F","07-12-1022","YUND, CHAY; YUND, CHAY C. & JENNIFER A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","13","35.0 N","10.0 E","N","","","","","425754.0","4125457.0","37.272740","-105.837452","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205005",
|
||||
"2205006","W2382 WELL NO 03","PUMPSTATION WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2382","20744-R","06-10-1371","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SE","SW","18","34.0 N","9.0 E","N","","","","","408460.0","4115552.0","37.181930","-106.031273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205006",
|
||||
"2205007","W2407 WELL NO 01","HOMEPLACE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2407","11394-R","23-05456","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","7","34.0 N","9.0 E","N","","","","","408865.0","4117938.0","37.203474","-106.027002","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205007",
|
||||
"2205010","W2594 WELL NO 03","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2594","2068-F, 8258-R","06-10-1541","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","19","34.0 N","9.0 E","N","","","","","407889.0","4113907.0","37.167048","-106.037502","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205010",
|
||||
"2205012","MANASSA TOWN WELL NO 1","NORTH WELL, W3471 WELL NO 01 DOTSUN STREET WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0071, W3471","22011-F-R","02070426","GAREL, PAUL; MANASSA, TOWN OF","RGWCD SD3","10/31/1992","10/31/2025","3","22","CONEJOS","","","SW","NW","NE","24","34.0 N","9.0 E","N","","","","","416829.0","4115142.0","37.179018","-105.936957","12/02/2020 14:26","https://dwr.state.co.us/Tools/Structures/2205012",
|
||||
"2205013","MANASSA TOWN WELL NO 2","SOUTH WELL, W3471 WELL NO 02 JACK ST. WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0071, W3471","22012-F","03072147","GAREL, PAUL; MANASSA, TOWN OF","RGWCD SD3","10/31/1994","10/31/2025","3","22","CONEJOS","","","NW","SW","SE","24","34.0 N","9.0 E","N","","","","","416913.0","4113953.0","37.168309","-105.935878","12/02/2020 14:27","https://dwr.state.co.us/Tools/Structures/2205013",
|
||||
"2205015","W3434 WELL NO 01","WELL NO. 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0025, W3434","20719-F","N1N4220181","GAREL, PAUL; ROMEO, TOWN OF","RGWCD SD3","10/31/1992","10/31/2025","3","22","CONEJOS","","","SW","NE","SE","21","34.0 N","9.0 E","N","","","","","412558.0","4114276.0","37.170822","-105.984963","12/02/2020 16:06","https://dwr.state.co.us/Tools/Structures/2205015",
|
||||
"2205018","82CW136 WELL NO 01A","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","82CW0136","22258-F, 22258-F-R","12062532/12062760","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","17","34.0 N","9.0 E","N","","","","","409973.0","4115953.0","37.185691","-106.014279","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2205018",
|
||||
"2205019","W2455 WELL NO 01","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2455","280-R","12062498/12062761","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","20","34.0 N","9.0 E","N","","","","","409587.0","4114748.0","37.174794","-106.018481","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2205019",
|
||||
"2205021","82CW179 WELL NO 03A","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0179, 92CW0022","25267-F, 15123-R-R, 90506-F","11060559/072019003998","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","23","34.0 N","9.0 E","N","","","","","414714.0","4114233.0","37.170634","-105.960676","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2205021",
|
||||
"2205041","W1924 WELL NO 01","ANTONITO TOWN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1924","3116-F","L6004C16000/L6004C16000","ANTONITO, TOWN OF (DURAN, ROSSI)","RGWCD SD3","10/31/1993","10/31/2025","3","22","CONEJOS","","","NW","NE","NE","30","33.0 N","9.0 E","N","","","","","409175.0","4104120.0","37.078966","-106.021833","12/02/2020 14:25","https://dwr.state.co.us/Tools/Structures/2205041",
|
||||
"2205043","GUADALUPE WATER ASC WELL","W0657 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0657","12905-F","23003809","GUADALUPE WATER ASSC (WHITE BUFFALO, RAY)","RGWCD SD3","10/31/2011","10/31/2025","3","22","CONEJOS","","","NW","SW","SE","18","33.0 N","9.0 E","N","","","","","408864.0","4106018.0","37.096042","-106.025562","04/06/2021 18:16","https://dwr.state.co.us/Tools/Structures/2205043",
|
||||
"2205050","W0071 WELL NO 01","T2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0071","15283-R","12061274/12061308","THOMAS, BRANDON","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","1","34.0 N","9.0 E","N","","","","","416003.0","4118573.0","37.209867","-105.946647","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205050",
|
||||
"2205051","W0086 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0086","3223-F","06-10-1325","HARMON, JAMES & DEBBIE; LORENZ, BOB; PAINE, JAMES","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","34","34.0 N","9.0 E","N","","","","","413136.0","4111400.0","37.144955","-105.978119","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205051",
|
||||
"2205052","W0088 WELL NO 01","ROBBINS WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0088","6746-F","GP07-10-1161","ABEYTA, AMOS ALEC & ALICIA ANN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","31","33.0 N","10.0 E","N","","","","","417481.0","4100855.0","37.050306","-105.928040","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205052",
|
||||
"2205053","W104 WELL NO. 1","ERS4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0104","10153-F","05061452","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SE","35","33.0 N","9.0 E","N","","","","","415050.0","4101569.0","37.056524","-105.955457","03/26/2009 10:05","https://dwr.state.co.us/Tools/Structures/2205053",
|
||||
"2205054","W0110 WELL NO 01","ERS1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","19CW3006, W0110","10471-F","05061443, 18-07858-08","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","1","32.0 N","9.0 E","N","","","","","415872.0","4099990.0","37.042367","-105.946036","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205054",
|
||||
"2205055","W0129 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0129","7216-R","11060525/11060641","QUINLAN, WAYNE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","22","33.0 N","9.0 E","N","","","","","413459.0","4104911.0","37.086500","-105.973734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205055",
|
||||
"2205056","W0133 WELL NO 01","WELL #2, EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","7356-R","07-10-1001","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NE","4","34.0 N","10.0 E","N","","","","","421876.0","4119367.0","37.217534","-105.880549","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205056",
|
||||
"2205057","W0133 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","7355-R, 7355-R-R","25-04288-12","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NW","4","34.0 N","10.0 E","N","","","","","420873.0","4119374.0","37.217512","-105.891854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205057",
|
||||
"2205058","W0133 WELL NO 03","HQ WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","12748-F, 326556-","07-6-1078","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","NW","4","34.0 N","10.0 E","N","","","","","421500.0","4119888.0","37.222198","-105.884842","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205058",
|
||||
"2205060","W0133 WELL NO 05","POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","12749-F","07-6-1077","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","3","34.0 N","10.0 E","N","","","","","422916.0","4119615.0","37.219856","-105.868854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205060",
|
||||
"2205062","W0145 WELL NO 01","ERS9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0145","6747-F","06-8-1226","SALAZAR, JOHN T. & MARY L.; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","SW","36","33.0 N","9.0 E","N","","","","","416666.0","4101583.0","37.056795","-105.937285","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205062",
|
||||
"2205063","W0145 WELL NO 02","ERS6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0145","10472-F","05061465","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","6","32.0 N","10.0 E","N","","","","","417468.0","4100725.0","37.049133","-105.928172","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205063",
|
||||
"2205066","W0147 WELL NO 01","ERS3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0147","6745-F","05061460","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","36","33.0 N","9.0 E","N","","","","","415854.0","4101478.0","37.055777","-105.946405","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205066",
|
||||
"2205067","W0170 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0170","6310-R","06-6-1314","BELLAH, ANGELO; RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","21","34.0 N","9.0 E","N","","","","","412557.0","4115025.0","37.177573","-105.985062","01/30/2017 11:11","https://dwr.state.co.us/Tools/Structures/2205067",
|
||||
"2205071","W0181 WELL NO 01","ERS2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","21CW3025, W0181","5107-F, 87683-F","03061815","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","1","32.0 N","9.0 E","N","","","","","415863.0","4100801.0","37.049675","-105.946228","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205071",
|
||||
"2205072","W0191 WELL NO 01","BOUNTIFUL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0191","10238-F","10061610/10061619","PAINE, JAMES; PAINE, NATALIE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SW","33","35.0 N","9.0 E","N","","","","","411148.0","4120369.0","37.225604","-106.001569","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205072",
|
||||
"2205074","W0294 WELL NO 01","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0294","3416-F","12062512/06200655","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NW","22","34.0 N","9.0 E","N","","","","","412817.0","4114667.0","37.174371","-105.982092","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205074",
|
||||
"2205076","W0335 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0335","11721-R","17-14180-08","BELLAH, ANGELO; RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","5","34.0 N","10.0 E","N","","","","","419700.0","4118584.0","37.210292","-105.904988","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205076",
|
||||
"2205094","W0355 WELL NO 01","GARCIA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0355","8634-R","16-05275/16-05275","SALAZAR, LEROY","RGWCD SD3","10/31/2016","10/31/2025","3","22","CONEJOS","","","","SW","SW","14","33.0 N","9.0 E","N","","","","","414287.0","4105716.0","37.093832","-105.964510","10/19/2017 13:41","https://dwr.state.co.us/Tools/Structures/2205094",
|
||||
"2205110","W0375 WELL NO 01","WELL #3 MARSHAL LAND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0375","15488-R","06-12-1121","BAGWELL, BRANDON; BAGWELL, BRANDON & EDDIE GARICA; G.L. BAGWELL & SONS (BAGWELL, LEE & GRACE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SE","12","34.0 N","9.0 E","N","","","","","416812.0","4116993.0","37.195699","-105.937354","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205110",
|
||||
"2205112","W0397 WELL NO 01","LUCERO 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0397","11444-F","06-8-3331","LUCERO, JEANETTE; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SE","34","33.0 N","9.0 E","N","","","","","413418.0","4101473.0","37.055510","-105.973799","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205112",
|
||||
"2205122","W0476 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0476","","07-6-1150","HOLMAN, CHASE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","34","35.0 N","9.0 E","N","","","","","413000.0","4121078.0","37.232169","-105.980778","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205122",
|
||||
"2205123","W0490 WELL NO 01","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0490","10550-F, 88243-F","06-15-1010","BELLAH, ANGELO; RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE); VANDERPOOL, ROSE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","21","33.0 N","9.0 E","N","","","","","411433.0","4105320.0","37.089997","-105.996574","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205123",
|
||||
"2205124","W0544 WELL NO 1","STANCIL'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0544","11094-R, 11094-R-R","15-05345-10","PAINE, JAMES; PAINE, NATALIE","RGWCD SD3","10/31/2015","10/31/2025","3","22","CONEJOS","","","","SW","SE","34","34.0 N","9.0 E","N","","","","","413514.0","4110586.0","37.137654","-105.973770","05/01/2019 16:28","https://dwr.state.co.us/Tools/Structures/2205124",
|
||||
"2205126","W0599 WELL NO 01","LEE-BRADY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","20-WCB","07-10-1110","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2010","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","17","34.0 N","10.0 E","N","","","","","419255.0","4116148.0","37.188298","-105.909739","01/30/2008 16:51","https://dwr.state.co.us/Tools/Structures/2205126",
|
||||
"2205127","W0599 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","5-WCB","07-10-1109","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2010","10/31/2025","3","22","CONEJOS","","","SE","SE","NW","17","34.0 N","10.0 E","N","","","","","419897.0","4116228.0","37.189074","-105.902515","09/24/2014 11:32","https://dwr.state.co.us/Tools/Structures/2205127",
|
||||
"2205128","W0599 WELL NO 03","BRENTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","21-WCB, 16312-F","20-03617-12","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","5","34.0 N","10.0 E","N","","","","","419352.0","4118568.0","37.210118","-105.908908","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205128",
|
||||
"2205129","W0599 WELL NO 04","NORTH WELL ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","23-WCB, 16313-F","07-12-1034","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","32","35.0 N","10.0 E","N","","","","","419343.0","4120212.0","37.224934","-105.909187","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205129",
|
||||
"2205130","W0599 WELL NO 05","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","4272-F","07-12-1042","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2010","10/31/2025","3","22","CONEJOS","","","","NW","SW","5","34.0 N","10.0 E","N","","","","","419284.0","4118961.0","37.213654","-105.909717","05/20/2013 09:15","https://dwr.state.co.us/Tools/Structures/2205130",
|
||||
"2205131","W0600 WELL NO 01","LUCERO 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0600","10258-F","04061460/062014002082","LUCERO, ALIANZA; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","SE","33","33.0 N","9.0 E","N","","","","","412608.0","4101640.0","37.056940","-105.982927","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205131",
|
||||
"2205132","W0600 WELL NO 02","LUCERO 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0600","9490-F","06-8-3332","LUCERO, ALIANZA; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","33","33.0 N","9.0 E","N","","","","","411479.0","4101677.0","37.057167","-105.995628","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205132",
|
||||
"2205141","W0670 WELL NO 1","TIM B'S WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0670","3300-F","19-05232","SKADBERG, ADAM","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","31","34.0 N","9.0 E","N","","","","","408689.0","4111460.0","37.145072","-106.028194","10/28/2014 09:23","https://dwr.state.co.us/Tools/Structures/2205141",
|
||||
"2205142","W0670 WELL NO 02","WELSH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0670","5141-F","22-05470-12","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","NW","19","34.0 N","9.0 E","N","","","","","408323.0","4114720.0","37.174418","-106.032714","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205142",
|
||||
"2205145","W0715 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0715","5869-R","08061981/08062006","CANTY, JOHN & JANEEN; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","9","35.0 N","10.0 E","N","","","","","421770.0","4126657.0","37.283230","-105.882510","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205145",
|
||||
"2205147","W0717 WELL NO 01","SW OF CEMETERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0717","11154-R","09062705/11061611","CROWTHER, WARREN D.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","31","35.0 N","10.0 E","N","","","","","418460.0","4121025.0","37.232185","-105.919228","09/17/2007 14:54","https://dwr.state.co.us/Tools/Structures/2205147",
|
||||
"2205151","W0773 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0773","6266-F, 317388-","07-10-1464","JONES, KEVIN; MARTIN CATTLE CO. (MARTIN, DWIGHT)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","15","35.0 N","10.0 E","N","","","","","423357.0","4125097.0","37.269301","-105.864448","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205151",
|
||||
"2205167","W0879 WELL NO 01","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0879","20312-R, 7716-F","10063602/10063664","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","21","34.0 N","9.0 E","N","","","","","411216.0","4113918.0","37.167469","-106.000035","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205167",
|
||||
"2205172","W0880 WELL NO 01","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","16CW3004, 98CW0007, W0880","2668-F","14-17008-10","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2002","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","31","34.0 N","9.0 E","N","","","","","407867.0","4111462.0","37.145010","-106.037449","01/04/2008 15:16","https://dwr.state.co.us/Tools/Structures/2205172",
|
||||
"2205173","W0880 WELL NO 02","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0880","11527-R, 11527-R-R","GEM23080213","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","17","34.0 N","9.0 E","N","","","","","410404.0","4115547.0","37.182074","-106.009375","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205173",
|
||||
"2205175","W0880 WELL NO 04","#25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0880","3096-F","02081338/12200766","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","29","34.0 N","9.0 E","N","","","","","409539.0","4112291.0","37.152645","-106.018725","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205175",
|
||||
"2205176","W0880 WELL NO 05","BROCK, FKA 2206445","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0880","15737-R, 2089-F","06-8-4863","BAGWELL, DOUGLAS; BAGWELL, DOUGLAS T., LYNDA, DOUGLAS BROCK & KAYLA","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","29","34.0 N","9.0 E","N","","","","","410354.0","4113086.0","37.159888","-106.009643","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205176",
|
||||
"2205182","W0882 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0882","3286-F","8862107","IMERYS PERLITE USA, INC (GROVES, JON)","RGWCD SD3","10/31/2009","10/31/2024","3","22","CONEJOS","","","SE","NW","SE","32","33.0 N","9.0 E","N","","","","","410467.0","4101398.0","37.054557","-106.006975","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205182",
|
||||
"2205183","W0883 WELL NO 01","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0883","15390-R","10063598/10063661","ANDERSON 7, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SE","22","34.0 N","9.0 E","N","","","","","413546.0","4113847.0","37.167048","-105.973786","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205183",
|
||||
"2205186","W0953 WELL NO 02","RUSTY SPUR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0953","5312-F","0070324205, 60483291","QUINLAN, CATHY; ROBINS, RANDALL & LOU ANN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","29","33.0 N","9.0 E","N","","","","","409621.0","4103136.0","37.070140","-106.016697","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205186",
|
||||
"2205187","W0974 WELL NO 01","HOME FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0974","8259-R, 8259-R-R","08223631","GINGERICH, WILLIAM","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SW","14","34.0 N","9.0 E","N","","","","","414387.0","4115863.0","37.185295","-105.964546","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205187",
|
||||
"2205188","W0974 WELL NO 02","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0974","8260-R, 8260-R-R","06-10-1542","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","20","34.0 N","9.0 E","N","","","","","410378.0","4113939.0","37.167578","-106.009475","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205188",
|
||||
"2205242","W1179 WELL NO 01","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1179","11480-R","02082195/11061638","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","20","34.0 N","9.0 E","N","","","","","410394.0","4114723.0","37.174646","-106.009389","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205242",
|
||||
"2205243","W1179 WELL NO 02","BAGWELL CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1179","11481-R","06-10-1370","BAGWELL, JAMES","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","17","34.0 N","9.0 E","N","","","","","409561.0","4116335.0","37.189094","-106.018966","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205243",
|
||||
"2205261","W1249 WELL NO 02","JACKSON WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1249","2012-F, 7282-R","10061897/062019000983","O. D. ESPINOZA & SONS CO. ","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","26","34.0 N","9.0 E","N","","","","","414337.0","4113022.0","37.159685","-105.964783","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205261",
|
||||
"2205262","W1249 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1249","20793-R","07-10-1226","RANCHO SALAZAR-CERRO LARGO LLC (SALAZAR, LEROY, KEN & JOHN); SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","28","34.0 N","10.0 E","N","","","","","421193.0","4113307.0","37.162857","-105.887607","09/17/2007 14:54","https://dwr.state.co.us/Tools/Structures/2205262",
|
||||
"2205285","W1308 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1308","11353-R, 78475-F","GP10-2669-10","DUNN, JIMMY L.","RGWCD SD3","10/31/2012","10/31/2025","3","22","CONEJOS","","","","SW","NW","11","34.0 N","9.0 E","N","","","","","414712.0","4117795.0","37.202738","-105.961105","06/02/2014 14:47","https://dwr.state.co.us/Tools/Structures/2205285",
|
||||
"2205350","W1557 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1557","12428-R","06-10-1205","DUNN, JIMMY L.; JACKSON, DAVID; KELLAND JACKSON FARM","RGWCD SD3","10/31/2011","10/31/2025","3","22","CONEJOS","","","","SE","NW","11","34.0 N","9.0 E","N","","","","","415121.0","4117790.0","37.202730","-105.956496","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205350",
|
||||
"2205388","W1636 WELL NO 01","POTTBERG PLACE 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1636","8713-R, 8713-R-R","23-00646-10","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SE","15","34.0 N","9.0 E","N","","","","","413618.0","4115861.0","37.185206","-105.973208","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205388",
|
||||
"2205460","W1692 WELL NO 01","DAVIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0035, W1692","11595-F","95-12-1057N","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2002","10/31/2025","3","22","CONEJOS","","","","SW","SE","9","34.0 N","9.0 E","N","","","","","411896.0","4117103.0","37.196239","-105.992752","02/07/2011 15:34","https://dwr.state.co.us/Tools/Structures/2205460",
|
||||
"2205502","W1770 WELL NO 01","#19, JOE'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1770","5785-F","06-12-1117","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","10","34.0 N","9.0 E","N","","","","","413504.0","4117840.0","37.203032","-105.974722","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205502",
|
||||
"2205542","W1814 WELL NO 01","GRANDPA'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1814","10667-F","07-8-1401","MOELLER RANCH, LLC.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","7","33.0 N","9.0 E","N","","","","","407842.0","4107414.0","37.108524","-106.037232","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205542",
|
||||
"2205555","W1845 WELL NO 01","CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1845","5570-F","07-12-1043","CORTEZ, JORGE & KIMBERLY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","8","34.0 N","9.0 E","N","","","","","409600.0","4117925.0","37.203428","-106.018719","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205555",
|
||||
"2205556","W1845 WELL NO 02","RESERVOIR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1845","","07-8-1226","CORTEZ, JORGE & KIMBERLY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","8","34.0 N","9.0 E","N","","","","","410323.0","4117916.0","37.203417","-106.010572","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205556",
|
||||
"2205650","W1938 WELL NO 01","2250 GAL WELL PASTURE, SETTLEMENT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1938","4714-F, 87945-F","25-04389-08","YUND, CHAY; YUND, CHAY C. & JENNIFER A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","NW","NW","SW","26","35.0 N","10.0 E","N","","","","","424133.0","4122559.0","37.246490","-105.855438","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205650",
|
||||
"2205684","W1949 WELL NO 01","RIVER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1949","6446-F","07-10-1150","REYNOLDS, JACK L.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","27","35.0 N","10.0 E","N","","","","","423884.0","4122967.0","37.250147","-105.858287","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205684",
|
||||
"2205801","W2140 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2140","19965-R","06-10-1249","REED, STEVE; TRIPLE R RANCHES LLC (REED, BRADLEY J.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","NW","27","35.0 N","10.0 E","N","","","","","422657.0","4122643.0","37.247126","-105.872088","09/17/2007 14:53","https://dwr.state.co.us/Tools/Structures/2205801",
|
||||
"2205904","W2217 WELL NO 1","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2217","11507-R","11061506","BOND, BRENT; MEAGHER, NICK","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","NE","SE","SE","19","33.0 N","10.0 E","N","","","","","419010.0","4104272.0","37.081237","-105.911214","07/19/2022 08:50","https://dwr.state.co.us/Tools/Structures/2205904",
|
||||
"2205905","W2217 WELL NO 02","T BONE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2217","11508-R","06-8-3916","TWIN WELLS RANCH LLC & DAGGER DRAW RANCH INC (MCCUTCHEON, STEVE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","18","33.0 N","10.0 E","N","","","","","418350.0","4105700.0","37.094051","-105.918795","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205905",
|
||||
"2205906","W2217 WELL NO 03","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2217","11509-R","18-04568-10","BOND, BRENT; MEAGHER, NICK","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","SW","19","33.0 N","10.0 E","N","","","","","417818.0","4104094.0","37.079529","-105.924604","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205906",
|
||||
"2205908","W2217 WELL NO 05","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2217","11511-R","GP13-4686-10","BOND, BRENT; MEAGHER, NICK","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","NW","SW","29","33.0 N","10.0 E","N","","","","","419458.0","4102879.0","37.068720","-105.906025","09/17/2007 14:53","https://dwr.state.co.us/Tools/Structures/2205908",
|
||||
"2205971","W2325 WELL NO 01","#2 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5929-R","06-10-1290","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","28","33.0 N","9.0 E","N","","","","","411807.0","4103330.0","37.072097","-105.992133","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205971",
|
||||
"2205972","W2325 WELL NO 02","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5930-R","06-10-1291","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","29","33.0 N","9.0 E","N","","","","","410987.0","4103339.0","37.072100","-106.001357","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205972",
|
||||
"2205973","W2325 WELL NO 03","#2 EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5931-R","06-10-1292","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","NE","28","33.0 N","9.0 E","N","","","","","412567.0","4103313.0","37.072015","-105.983583","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205973",
|
||||
"2205974","W2325 WELL NO 04","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5932-R","06-10-1293","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","21","33.0 N","9.0 E","N","","","","","411021.0","4104270.0","37.080495","-106.001085","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205974",
|
||||
"2205978","W2325 WELL NO 09","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","24316-F, 24316-F-R, 24316-F-R","02-10-1494","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","22","33.0 N","9.0 E","N","","","","","413400.0","4104118.0","37.079348","-105.974306","05/09/2007 10:29","https://dwr.state.co.us/Tools/Structures/2205978",
|
||||
"2205983","W2331 WELL NO 01","MORGAN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0006, W2331","","22-05082-10","MORGAN, JANET; PARRISH, BILLY; SANFORD CANAL COMPANY (PETERSON, MARTY )","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","6","34.0 N","10.0 E","N","","","","","419248.0","4119378.0","37.217409","-105.910167","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2205983",
|
||||
"2205984","W2331 WELL NO 02","CHRISTENSEN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0006, W2331","5563-F","24-06363-12","MORGAN, JANET; PARRISH, BILLY; SANFORD CANAL COMPANY (PETERSON, MARTY )","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SE","NE","6","34.0 N","10.0 E","N","","","","","418992.0","4119392.0","37.217513","-105.913054","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2205984",
|
||||
"2205985","W2331 WELL NO 03","CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0006, W2331","5868-F","23-06129-12","MORGAN, JANET; PARRISH, BILLY; SANFORD CANAL COMPANY (PETERSON, MARTY )","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","NE","30","35.0 N","10.0 E","N","","","","","419292.0","4122641.0","37.246822","-105.910025","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2205985",
|
||||
"2205986","W2333 WELL NO 01","I MESTAS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2333","11098-R","06-12-1147","MESTAS, JOHN, VICKI, ALEX & ANGIE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","8","34.0 N","10.0 E","N","","","","","419257.0","4117756.0","37.202791","-105.909890","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205986",
|
||||
"2206010","W2382 WELL NO 01","#24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2382","2877-F","02081337/02081343","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","30","34.0 N","9.0 E","N","","","","","408700.0","4112300.0","37.152644","-106.028173","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206010",
|
||||
"2206011","W2382 WELL NO 02","BIG CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2382","20744-S","22-04566","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","18","34.0 N","9.0 E","N","","","","","407906.0","4115540.0","37.181767","-106.037512","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206011",
|
||||
"2206061","W2456 WELL NO 01","BAGWELL RES, GILLELAND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2456","8714-R","06-10-1391","BAGWELL, JAMES","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","9","34.0 N","9.0 E","N","","","","","411900.0","4117876.0","37.203207","-105.992799","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206061",
|
||||
"2206064","W2478 WELL NO 01","#26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2478","645-R","02081388","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","SE","29","34.0 N","9.0 E","N","","","","","410664.0","4112270.0","37.152564","-106.006055","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206064",
|
||||
"2206067","W2485 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2485","21023-R","24-03760-08","ROBINS, ADAM","RGWCD SD3","10/31/2025","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","5","33.0 N","9.0 E","N","","","","","409467.0","4109019.0","37.123148","-106.019140","02/06/2026 14:11","https://dwr.state.co.us/Tools/Structures/2206067",
|
||||
"2206077","W2514 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2514","7294-R","24-05068-12","STAGNER, AMANDA","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SW","9","34.0 N","10.0 E","N","","","","","420925.0","4117494.0","37.200572","-105.891068","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206077",
|
||||
"2206083","W2525 WELL NO 01","#22, DAVIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2525","14929-R","12061295/06223638","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","12","34.0 N","9.0 E","N","","","","","416006.0","4116996.0","37.195654","-105.946435","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206083",
|
||||
"2206086","W2531 WELL NO 01","SILO WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2531","8569-R","06-10-1527","HARRIS, PAUL; O. D. ESPINOZA & SONS CO.; SANDOVAL, WADE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","14","34.0 N","9.0 E","N","","","","","415181.0","4115434.0","37.181501","-105.955553","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206086",
|
||||
"2206092","W2533 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2533","8680-R","07-10-1066","SANDOVAL, WADE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NW","14","34.0 N","9.0 E","N","","","","","414327.0","4116636.0","37.192257","-105.965310","03/15/2013 10:54","https://dwr.state.co.us/Tools/Structures/2206092",
|
||||
"2206095","W2594 WELL NO 02","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2594","8257-R","06-12-1153","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","SW","19","34.0 N","9.0 E","N","","","","","408612.0","4113925.0","37.167281","-106.029362","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206095",
|
||||
"2206096","W2594 WELL NO 05","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2594","2874-F","06-10-1540","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","20","34.0 N","9.0 E","N","","","","","409574.0","4113956.0","37.167654","-106.018532","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206096",
|
||||
"2206098","W2594 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2594","4059-F, 8255-R","06-10-1546","COOMBS, NATHAN","RGWCD SD3","10/31/2020","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","15","34.0 N","9.0 E","N","","","","","413638.0","4115463.0","37.181621","-105.972937","12/06/2021 14:40","https://dwr.state.co.us/Tools/Structures/2206098",
|
||||
"2206107","W2596 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2596","11445-F","04103578","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","SW","28","34.0 N","9.0 E","N","","","","","411852.0","4112306.0","37.153001","-105.992682","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206107",
|
||||
"2206108","W2596 WELL NO 02","ANTONITO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2596","14149-R","GP11-2051-10","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","5","33.0 N","9.0 E","N","","","","","410274.0","4109803.0","37.130292","-106.010150","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206108",
|
||||
"2206375","W3174 WELL NO 01","WHITE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0005, W3174","9540-F, 78008-F","04-01334-12","THOMAS, SHAWN & KRISTIE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SW","35","35.0 N","9.0 E","N","","","","","414773.0","4120312.0","37.225429","-105.960706","04/18/2007 13:48","https://dwr.state.co.us/Tools/Structures/2206375",
|
||||
"2206387","W3245 WELL NO 03","SIMPSON WELL- NO 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3245","15149-R, 15149-R-R, 90225-F","16-11628-04","UNITED STATES BUREAU OF LAND MANAGEMENT (SMITH, ROY)","RGWCD SD3","10/31/2018","10/31/2025","3","22","CONEJOS","","","","NW","NW","7","35.0 N","11.0 E","N","","","","","427518.0","4128244.0","37.297999","-105.817829","04/15/2022 07:10","https://dwr.state.co.us/Tools/Structures/2206387",
|
||||
"2206388","W3245 WELL NO 04","SIMPSON WELL 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3245","15151-R, 15151-R-R","16-10350-06","UNITED STATES BUREAU OF LAND MANAGEMENT; UNITED STATES BUREAU OF LAND MANAGEMENT (SMITH, ROY)","RGWCD SD3","10/31/2018","10/31/2025","3","22","CONEJOS","","","SW","NW","NW","7","35.0 N","11.0 E","N","","","","","427468.0","4127922.0","37.295093","-105.818361","12/02/2020 14:22","https://dwr.state.co.us/Tools/Structures/2206388",
|
||||
"2206419","SANFORD SUPPLY WELL NO. 1","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","04CW0013","18751-F","904771","SANFORD, TOWN OF","RGWCD SD3","11/30/1997","10/31/2025","3","22","CONEJOS","","","","SE","NW","20","35.0 N","10.0 E","N","","","","","420063.0","4124240.0","37.261300","-105.901504","12/02/2020 10:48","https://dwr.state.co.us/Tools/Structures/2206419",
|
||||
"2206421","SANFORD SUPPLY WELL NO. 2","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","04CW0013","18752-F","904770","SANFORD, TOWN OF","RGWCD SD3","11/30/1997","10/31/2025","3","22","CONEJOS","","","","NE","NW","29","35.0 N","10.0 E","N","","","","","420045.0","4123325.0","37.253052","-105.901609","12/02/2020 13:53","https://dwr.state.co.us/Tools/Structures/2206421",
|
||||
"2206441","PERMIT 54589 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","","54589-F","60493692","MANASSA, ROMEO CEMETARY DISTRICT; NORTON, MATT","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","NW","31","34.0 N","10.0 E","N","","","","","418033.0","4111814.0","37.149129","-105.923030","05/22/2007 15:49","https://dwr.state.co.us/Tools/Structures/2206441",
|
||||
"2206443","PERMIT 16181-F-","LUCERO 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","16181-F","12230554/01250080","LUCERO, JEANETTE; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","35","33.0 N","9.0 E","N","","","","","414624.0","4101225.0","37.053385","-105.960208","10/26/2015 12:38","https://dwr.state.co.us/Tools/Structures/2206443",
|
||||
"2206453","PERMIT 22892-FR","COURTHOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","","22892-F-R","60615785","CONEJOS COUNTY ; MARTINEZ, DON A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","19","33.0 N","9.0 E","N","","","","","409185.0","4105176.0","37.088484","-106.021848","12/02/2020 16:08","https://dwr.state.co.us/Tools/Structures/2206453",
|
||||
"2206461","21CW3025 WELL NO. 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: PUNCHE ARROYO","00193099","","21CW3025","292150-, 87682-F","20007760","SALAZAR, LEROY","RGWCD SD3","10/31/2021","10/31/2025","3","22","CONEJOS","","","","SW","SW","36","33.0 N","9.0 E","N","","","","","415860.0","4100935.0","37.050883","-105.946277","12/01/2022 11:05","https://dwr.state.co.us/Tools/Structures/2206461",
|
||||
"2206643","12CW0032 WELL NO 1-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","12CW0032","22714-F-R","19017884","LOS CERRITOS CEMETERY ASSOCIATION (GARCIA, GILBERT)","RGWCD SD3","10/31/2020","10/31/2025","3","22","CONEJOS","","","","NE","NE","31","34.0 N","10.0 E","N","","","","","418977.0","4111899.0","37.149977","-105.912410","11/05/2025 14:22","https://dwr.state.co.us/Tools/Structures/2206643",
|
||||
|
112
Data/SBD_Data/StructureList_SBD4.csv
Normal file
112
Data/SBD_Data/StructureList_SBD4.csv
Normal file
@ -0,0 +1,112 @@
|
||||
WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information,
|
||||
"2505001","W0041 WELL NO 02","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0041","11065-F","12061259/12061330-100919","COLEMAN, MICHAEL & CHERI","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NE","22","47.0 N","9.0 E","N","","","","","416482.0","4241044.0","38.313622","-105.955342","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505001",
|
||||
"2505005","W2399 WELL NO 03","#3, 150 E. GALENA ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","02CW0022, W2399","","70729662","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","7","43.0 N","12.0 E","N","","","","","438666.0","4205515.0","37.995228","-105.698547","04/05/2021 17:17","https://dwr.state.co.us/Tools/Structures/2505005",
|
||||
"2505006","W0625 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0625","1342-R, 1342-F-R","10062711/10062809","BERRY, JERRY; KIELER CONSTRUCTION & HOLDINGS COMPANY LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NW","NE","6","44.0 N","10.0 E","N","","","","","420028.0","4217292.2","38.099906","-105.912110","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505006",
|
||||
"2505013","W3528 WELL NO 01","1-R (EAST)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0040, W3528","21123-F","06-8-2251","OMAN, JACK; ORGANIC SUN ADVISORS II, LLC; SUMMIT VALLEY PARTNERS, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","1","44.0 N","9.0 E","N","","","","","418800.0","4216949.0","38.096705","-105.926075","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2505013",
|
||||
"2505014","W3528 WELL NO 02","D1-E (MIDDLE)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0040, W3528","11182-F-R","06-8-2253","OMAN, JACK; ORGANIC SUN ADVISORS II, LLC; SUMMIT VALLEY PARTNERS, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","1","44.0 N","9.0 E","N","","","","","417991.0","4216957.0","38.096705","-105.935301","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2505014",
|
||||
"2505015","W3528 WELL NO 03","D2-W (WEST)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0040, W3528","21124-F","06-8-2252","OMAN, JACK; ORGANIC SUN ADVISORS II, LLC; SUMMIT VALLEY PARTNERS, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","2","44.0 N","9.0 E","N","","","","","417181.0","4216972.0","38.096766","-105.944540","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2505015",
|
||||
"2505018","W0886 WELL NO 02","CC18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0886","12952-F, 41625-F","07-10-1163","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","32","45.0 N","10.0 E","N","","","","","422509.0","4218492.0","38.110936","-105.883947","04/05/2021 17:19","https://dwr.state.co.us/Tools/Structures/2505018",
|
||||
"2505019","84CW108 WELL NO 02","CC8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0108","5712-F-R, 5712-R","GT18082972","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","28","45.0 N","10.0 E","N","","","","","422969.0","4219321.0","38.118446","-105.878790","04/05/2021 17:19","https://dwr.state.co.us/Tools/Structures/2505019",
|
||||
"2505020","84CW108 WELL NO 03","CC4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0108","5713-F-R, 5713-F-R","GT18082798","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NW","28","45.0 N","10.0 E","N","","","","","423009.0","4220145.0","38.125875","-105.878423","04/05/2021 17:19","https://dwr.state.co.us/Tools/Structures/2505020",
|
||||
"2505029","W3202 WELL NO 05R","PW #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","172-R-R","03-8-3968","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","29","45.0 N","10.0 E","N","","","","","421375.0","4220542.0","38.129312","-105.897107","08/19/2013 13:33","https://dwr.state.co.us/Tools/Structures/2505029",
|
||||
"2505030","W3202 WELL NO 06R","PW #8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","173-R-R","04-8-4170","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NE","29","45.0 N","10.0 E","N","","","","","422147.0","4219730.0","38.122061","-105.888211","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505030",
|
||||
"2505031","W3202 WELL NO 01A","VDL #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22441-F","07-8-1281","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","30","45.0 N","10.0 E","N","","","","","420541.1","4220160.6","38.125806","-105.906579","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505031",
|
||||
"2505032","W3202 WELL NO 02A","PW #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3202","22442-F","13-07665-8","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","29","45.0 N","10.0 E","N","","","","","422175.0","4220536.0","38.129327","-105.887980","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505032",
|
||||
"2505033","W3202 WELL NO 03A","FREY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22444-F","06-08-2829","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","NW","SW","30","45.0 N","10.0 E","N","","","","","419704.3","4219385.6","38.118748","-105.916041","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505033",
|
||||
"2505034","W3202 WELL NO 06A","VDL #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22446-F","GP13-2395","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","29","45.0 N","10.0 E","N","","","","","422129.0","4218915.2","38.114715","-105.888328","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505034",
|
||||
"2505035","W-3202 #7A","VDL #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22443-F","GP12-6172","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SW","29","45.0 N","10.0 E","N","","","","","421331.1","4218934.9","38.114827","-105.897432","09/07/2010 15:31","https://dwr.state.co.us/Tools/Structures/2505035",
|
||||
"2505036","W3202 WELL NO 02AA","PW #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22445-F","04-8-4166","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","29","45.0 N","10.0 E","N","","","","","421349.4","4219738.1","38.122064","-105.897315","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505036",
|
||||
"2505038","86CW004 WELL NO 01A","FULL CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","86CW0004","24065-F","GT16080866","ABSMEIER, ADRIAN","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NW","25","45.0 N","9.0 E","N","","","","","418261.0","4220245.0","38.126359","-105.932599","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505038",
|
||||
"2505044","W3370 WELL NO 02A","UNIT 1, PIVOT 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3370","18753-F, 89573-F","GP12-3931-8","VALLEY VIEW FARMS LLC (MITCHELL, TORI)","RGWCD SD4","10/31/1990","10/31/2025","3","25","SAGUACHE","","","","SW","SE","8","45.0 N","10.0 E","N","","","","","422266.0","4223779.0","38.158560","-105.887295","09/06/2007 12:28","https://dwr.state.co.us/Tools/Structures/2505044",
|
||||
"2505045","W3370 WELL NO 02B","UNIT 1, PIVOT 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3370","18754-F, 89572-F","03-8-3751","VALLEY VIEW FARMS LLC (MITCHELL, TORI)","RGWCD SD4","10/31/1983","10/31/2025","3","25","SAGUACHE","","","","SW","NE","8","45.0 N","10.0 E","N","","","","","422275.0","4224584.0","38.165815","-105.887281","09/06/2007 12:29","https://dwr.state.co.us/Tools/Structures/2505045",
|
||||
"2505056","90CW037 WELL NO 01R","VDL #15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","175-R-R","03-8-3966","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SE","19","45.0 N","10.0 E","N","","","","","420561.6","4220975.1","38.133143","-105.906431","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505056",
|
||||
"2505058","90CW037 WELL NO 03R","PW #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","177-R-R","05-8-2577","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SE","20","45.0 N","10.0 E","N","","","","","422201.0","4221337.0","38.136548","-105.887771","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505058",
|
||||
"2505059","90CW037 WELL NO 04A","PW #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","23182-F, 23182-F-R","05-8-1904","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NW","20","45.0 N","10.0 E","N","","","","","421439.0","4221366.0","38.136743","-105.896468","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505059",
|
||||
"2505060","90CW037 WELL NO 04R","PW #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","12717-F","05-8-2574","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NW","NW","20","45.0 N","10.0 E","N","","","","","421416.0","4222159.0","38.143887","-105.896818","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505060",
|
||||
"2505061","90CW037 WELL NO 07R","PW #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","174-R-R","05-8-4613","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","20","45.0 N","10.0 E","N","","","","","422213.0","4222146.0","38.143839","-105.887722","05/03/2023 12:13","https://dwr.state.co.us/Tools/Structures/2505061",
|
||||
"2505063","92CW005 WELL NO 01R","CC23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","92CW0005","15147-F-R","07-8-1561","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","NE","SW","4","44.0 N","10.0 E","N","","","","","423184.0","4216070.0","38.089168","-105.875988","04/05/2021 17:22","https://dwr.state.co.us/Tools/Structures/2505063",
|
||||
"2505073","W0007 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0007","14524-F","21-07620-06","ALVIN W. & VICKY M. WEISS JOINT REVOCABLE TRUST (WEISS, VICKY M.); WEISS, ALVIN & VICKY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NE","30","44.0 N","10.0 E","N","","","","","420390.4","4210005.2","38.034270","-105.907171","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505073",
|
||||
"2505074","W0015 WELL NO 01","VG RES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","6660-R","07-8-1556","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","12","46.0 N","9.0 E","N","","","","","418435.0","4234606.0","38.255788","-105.932262","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505074",
|
||||
"2505075","W0015 WELL NO 02","VG SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","11809-F","07-8-1555","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","12","46.0 N","9.0 E","N","","","","","419159.0","4233734.0","38.247995","-105.923889","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505075",
|
||||
"2505076","W0015 WELL NO 03","VG EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","11808-F, 284405-","07-10-1127","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","17","46.0 N","10.0 E","N","","","","","422246.0","4233358.0","38.244879","-105.888572","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505076",
|
||||
"2505077","W0015 WELL NO 08","VG TOWN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","12302-F","07-8-1558","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","SE","11","46.0 N","9.0 E","N","","","","","417667.0","4234374.0","38.253627","-105.941012","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505077",
|
||||
"2505078","W0017 WELL NO 01","TPR #3 & #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0010, W0017","11064-F","09061924/09061979","FREES, DAVID L.; FREES, DELMER E.; FREES, GEORGE A.; FREES, SHIRLEY A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NE","SE","5","45.0 N","10.0 E","N","","","","","422349.0","4225963.0","38.178248","-105.886587","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505078",
|
||||
"2505079","W0069 WELL NO 01","CC22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0069","5717-F","GT18082961","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","4","44.0 N","10.0 E","N","","","","","423251.0","4217141.0","38.098825","-105.875339","04/05/2021 17:23","https://dwr.state.co.us/Tools/Structures/2505079",
|
||||
"2505080","18CW3011 WELL NO 02","PUMP, W0069 WELL NO 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","18CW3011, W0069","12438-R, 12438-F-R","","SKOGLUND, KENNETH","RGWCD SD4","10/31/2009","10/31/2018","3","25","SAGUACHE","","","","SW","SW","29","44.0 N","10.0 E","N","","","","","420851.1","4209202.9","38.027083","-105.901829","11/05/2025 13:19","https://dwr.state.co.us/Tools/Structures/2505080",
|
||||
"2505081","18CW3011 WELL NO 03","W0069 WELL NO 3, WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","18CW3011, W0069","12437-R, 81723-F, 12437-F-R","07-8-1474, 19100716","SKOGLUND EXCAVATING (ECKLUND, KRISTIN); SKOGLUND, KENNETH","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","32","44.0 N","10.0 E","N","","","","","420843.0","4209177.5","38.026857","-105.901918","11/05/2025 13:19","https://dwr.state.co.us/Tools/Structures/2505081",
|
||||
"2505082","18CW3011 WELL NO 04","EAST, W0069 WELL NO 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","18CW3011, 21CW0037, W0069","12436-R, 12436-R-R","07-8-1473","SMITH, KELLY J.","RGWCD SD4","10/31/2009","10/31/2024","3","25","SAGUACHE","","","","NW","NE","32","44.0 N","10.0 E","N","","","","","421495.3","4209065.8","38.025904","-105.894478","11/05/2025 13:18","https://dwr.state.co.us/Tools/Structures/2505082",
|
||||
"2505083","W0074 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0002, W0074","11010-F, 89606-F","07-10-1123","VALLEY VIEW FARMS LLC (MITCHELL, TORI)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","SE","13","45.0 N","9.0 E","N","","","","","419056.0","4222618.0","38.147815","-105.923799","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505083",
|
||||
"2505084","W0155 WELL NO 01","WELL HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0155","12251-R, 12251-R-R","06201704111","MCDOWELL, STEVE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","12","43.0 N","11.0 E","N","","","","","437694.0","4204901.0","37.989628","-105.709563","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505084",
|
||||
"2505085","W0155 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0155","12252-R, 89723-F","1312705","MCDOWELL, STEVE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","12","43.0 N","11.0 E","N","","","","","437532.0","4204913.0","37.989725","-105.711409","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505085",
|
||||
"2505092","W0190 WELL NO PUMP 01","HOME MEADOW, PUMP NO. 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0190","1745-R-R","07-8-1261","PRIDEMORE, CASEY & CHELSEA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","8","47.0 N","9.0 E","N","","","","","412059.0","4244173.0","38.341395","-106.006318","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505092",
|
||||
"2505093","W0206 WELL NO 01","AREA420","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3043, W0206","1976-R, 82114-F, 89656-F","20801678","BUNTING, ANN; POTCH, LLC (JUSTICE, WHITNEY)","RGWCD SD4","10/31/2013","10/31/2025","3","25","SAGUACHE","","","","NW","SW","31","44.0 N","10.0 E","N","","","","","418999.0","4208416.0","38.019827","-105.922840","06/10/2013 14:15","https://dwr.state.co.us/Tools/Structures/2505093",
|
||||
"2505099","W0290 WELL NO PUMP 01","HAY MEADOW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0290","4119-F","07-10-1080","BUNKER, ROBERT E. & JUDY K.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","32","45.0 N","10.0 E","N","","","","","421926.9","4218510.9","38.111057","-105.890587","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505099",
|
||||
"2505104","W0440 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0440","12381-R, 83566-F","06-6-1968","JENNIFER RODRIGUEZ & JORGE GOIZUETA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NE","NE","31","44.0 N","10.0 E","N","","","","","420224.0","4209132.0","38.026388","-105.908965","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505104",
|
||||
"2505117","W0684 WELL NO 01","NEAL RANCH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0684","42708-F","18-04854-08","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","SW","NE","24","44.0 N","10.0 E","N","","","","","428340.5","4211893.1","38.051949","-105.816778","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505117",
|
||||
"2505141","W0779 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0779","14282-F","11061525/04061501","JAN R. WAYE & PHYLLIS K. WAYE REVOCABLE TRUST","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","SE","NW","7","43.0 N","11.0 E","N","","","","","429205.0","4205964.0","37.998585","-105.806334","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505141",
|
||||
"2505163","W0975 WELL NO LZY K V 03","EAST LAKE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0975","11443-F","12062515/12062789-KV3","ALLENBAUGH, JEREMY; KV HOMEOWNER ASSOCIATION","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NE","NW","30","45.0 N","10.0 E","N","","","","","419794.0","4220576.0","38.129479","-105.915148","04/05/2021 17:26","https://dwr.state.co.us/Tools/Structures/2505163",
|
||||
"2505167","W0984 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0984","19121-R, 89314-F","GP11-1523-10","BERRY, JERRY; SCHROEDER, DON; SPEARTEX GRAIN CO (DIXON, MARY)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","NW","NW","SW","5","44.0 N","10.0 E","N","","","","","420811.0","4216480.0","38.092658","-105.903091","08/19/2014 11:30","https://dwr.state.co.us/Tools/Structures/2505167",
|
||||
"2505168","W0984 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","21CW3023, W0984","12494-F, 89315-F","GP11-1524-10","BERRY, JERRY; SCHROEDER, DON; SPEARTEX GRAIN CO (DIXON, MARY)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","","NE","NW","8","44.0 N","10.0 E","N","","","","","421585.5","4215677.4","38.085489","-105.894165","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505168",
|
||||
"2505169","W0984 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","21CW3023, W0984","12484-F","GP11-1525-8","BERRY, JERRY; SCHROEDER, DON; SPEARTEX GRAIN CO (DIXON, MARY)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","","SW","NW","8","44.0 N","10.0 E","N","","","","","420771.5","4214890.1","38.078326","-105.903359","02/06/2026 15:15","https://dwr.state.co.us/Tools/Structures/2505169",
|
||||
"2505183","W1149 WELL NO 01","","Inactive structure which physically exist, but no diversion records are maintained (I)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1149","10461-F","","GODFREY, PEGGY","RGWCD SD4","10/31/2021","10/31/2024","3","25","SAGUACHE","","","NW","NE","SW","29","44.0 N","10.0 E","N","","","","","421075.0","4209946.0","38.033798","-105.899359","06/20/2025 15:42","https://dwr.state.co.us/Tools/Structures/2505183",
|
||||
"2505184","W1149 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1149","10462-F","GP12-6438","REGENOLD, JEFFERY M.","RGWCD SD4","10/31/2013","10/31/2025","3","25","SAGUACHE","","","SW","NE","NE","30","44.0 N","10.0 E","N","","","","","420443.7","4210450.3","38.038285","-105.906605","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505184",
|
||||
"2505223","W1467 WELL NO 01","N DABNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1467","14304-F","08-8-4362","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, RYLAN L.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NW","SE","26","47.0 N","9.0 E","N","","","","","417534.0","4239159.0","38.296734","-105.943090","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505223",
|
||||
"2505258","W1663 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1663","8978-F","09061318/09061379","BLANKENSHIP, ROBERT; MCALISTER, TRAVIS A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NW","NE","25","45.0 N","9.0 E","N","","","","","418823.0","4220615.0","38.129744","-105.926230","04/03/2000 00:00","https://dwr.state.co.us/Tools/Structures/2505258",
|
||||
"2505260","W1675 WELL NO 01","SHOUP #20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1675","2760-F, 2760-F-R","14-12346-8","SHOUP, KATHLEEN F.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NE","NE","36","45.0 N","9.0 E","N","","","","","419116.0","4218927.0","38.114559","-105.922696","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505260",
|
||||
"2505262","W1675 WELL NO 03","FLOOD-VDL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1675","11181-F","07-10-1028","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","SW","NW","31","45.0 N","10.0 E","N","","","","","419372.8","4218348.0","38.109364","-105.919699","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505262",
|
||||
"2505268","W1809 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1809","32600-","05201800153/092017001241","EARTH POSITIVE ENTERPRISES (VESTAL, WILLIAM A.); VESTAL, WILLIAM A.","RGWCD SD4","10/31/2017","10/31/2025","3","25","SAGUACHE","","","","NE","NW","7","43.0 N","10.0 E","N","","","","","419614.0","4205116.0","37.990143","-105.915464","12/26/2023 14:16","https://dwr.state.co.us/Tools/Structures/2505268",
|
||||
"2505283","W1953 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1953","12490-R","07-10-1139, 17006440, 4002699","DOIEL, DENNIS; FONTENOT, MAX","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NE","NE","5","44.0 N","10.0 E","N","","","","","422440.0","4217284.0","38.100044","-105.884603","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505283",
|
||||
"2505322","W2025 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W2025","11226-F","07-10-1124","FULLENWIDER RANCHES, INC.","RGWCD SD4","10/31/2010","10/31/2024","3","25","SAGUACHE","","","","SE","SE","16","47.0 N","9.0 E","N","","","","","414500.0","4241724.0","38.319563","-105.978092","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505322",
|
||||
"2505338","W2057 WELL NO ART 01","HIGH MEADOW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW3012, W2057","","GP09-2109-3","CHOKUREI RANCH LLC; GROTE, KYLE","RGWCD SD4","10/31/2010","10/31/2025","3","25","SAGUACHE","","","SE","NW","SE","4","43.0 N","10.0 E","N","","","","","423107.0","4206021.0","37.998602","-105.875786","04/05/2021 17:33","https://dwr.state.co.us/Tools/Structures/2505338",
|
||||
"2505357","W2057 WELL NO IRR 01","WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW3012, W2057","13284-R, 296522-, 80600-F","24-05781-08, 8413366","CHOKUREI RANCH LLC; GROTE, KYLE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","5","43.0 N","10.0 E","N","","","","","421777.0","4206638.0","38.004048","-105.891000","04/05/2021 17:34","https://dwr.state.co.us/Tools/Structures/2505357",
|
||||
"2505358","W2057 WELL NO IRR 02","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2057","13285-R","GP10-0442-10","CHOKUREI RANCH LLC; GROTE, KYLE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","3","43.0 N","10.0 E","N","","","","","424157.0","4207013.0","38.007630","-105.863933","04/05/2021 17:34","https://dwr.state.co.us/Tools/Structures/2505358",
|
||||
"2505374","W2151 WELL NO 03","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2151","22975-F, 22975-F-R","222243964, GP13-2389","MOFFAT CONSOLIDATED SCHOOL","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NW","SE","6","43.0 N","10.0 E","N","","","","","420060.0","4206023.0","37.998356","-105.910486","04/05/2021 17:38","https://dwr.state.co.us/Tools/Structures/2505374",
|
||||
"2505375","W2152 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W2152","11058-F","07-8-1475","ARROWPOINT CATTLE COMPANY LLC (ROBERTS, NANCY)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SE","19","46.0 N","10.0 E","N","","","","","420816.0","4231058.0","38.224028","-105.904656","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505375",
|
||||
"2505385","W2153 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","NE","SE","6","43.0 N","10.0 E","N","","","","","420394.3","4206141.0","37.999449","-105.906696","02/06/2026 15:16","https://dwr.state.co.us/Tools/Structures/2505385",
|
||||
"2505386","W2153 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","SW","SE","6","43.0 N","10.0 E","N","","","","","420009.0","4205697.0","37.995414","-105.911031","02/06/2026 15:16","https://dwr.state.co.us/Tools/Structures/2505386",
|
||||
"2505388","W2153 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3043, W2153","82534-F, 89655-F","21-02651-03, 212101340","BUNTING, ANN; POTCH, LLC (JUSTICE, WHITNEY); TOWN OF MOFFAT","RGWCD SD4","10/31/2020","10/31/2025","3","25","SAGUACHE","","","","SE","NE","6","43.0 N","10.0 E","N","","","","","420102.0","4206252.0","38.000424","-105.910034","12/26/2023 14:17","https://dwr.state.co.us/Tools/Structures/2505388",
|
||||
"2505389","W2153 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","NW","NW","5","43.0 N","10.0 E","N","250","W","2635","N","420618.3","4206784.8","38.005272","-105.904216","02/06/2026 15:17","https://dwr.state.co.us/Tools/Structures/2505389",
|
||||
"2505390","W2153 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","456123","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","NW","SW","5","43.0 N","10.0 E","N","","","","","420520.0","4205870.0","37.997018","-105.905231","02/06/2026 15:18","https://dwr.state.co.us/Tools/Structures/2505390",
|
||||
"2505400","W2213 WELL NO 01","CC20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2213","1725-R","GT18082986","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NE","34","45.0 N","10.0 E","N","","","","","425706.0","4218035.0","38.107087","-105.847435","04/05/2021 18:00","https://dwr.state.co.us/Tools/Structures/2505400",
|
||||
"2505403","W2219 WELL NO BACA MOTEL WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W2219","15909-F","08-8-1352","BACA GRANDE WATER AND SANITATION DISTRICT; UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","SE","SW","9","43.0 N","11.0 E","N","","","","","432414.0","4204940.0","37.989601","-105.769691","04/05/2021 18:01","https://dwr.state.co.us/Tools/Structures/2505403",
|
||||
"2505413","W2219 WELL NO GRANT 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2219","20367-R, 119-WCB","07-6-1485","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","8","43.0 N","10.0 E","N","","","","","420793.0","4204446.0","37.984209","-105.901965","04/05/2021 18:02","https://dwr.state.co.us/Tools/Structures/2505413",
|
||||
"2505439","W2365 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","22CW3004, W2365","10244-F, 89856-F","09-8-1362, 8947675","MITCHELL VALLEY FARM LLC (MITCHELL, AMANDA)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","SW","NW","7","45.0 N","10.0 E","N","","","","","419792.0","4225017.0","38.169499","-105.915671","06/15/2009 10:50","https://dwr.state.co.us/Tools/Structures/2505439",
|
||||
"2505441","W2365 WELL NO 03","UNIT 1, PIVOT 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","22CW3004, W2365","12497-F-R, 89858-F","22-07546-08","MITCHELL VALLEY FARM LLC (MITCHELL, AMANDA)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","SE","SW","7","45.0 N","10.0 E","N","","","","","420197.0","4224190.0","38.162083","-105.910955","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505441",
|
||||
"2505444","W2399 WELL NO 01","238 N. COTTONWOOD ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","96CW0033, W2399","59487-F","22206620","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","SW","NW","7","43.0 N","12.0 E","N","","","","","438551.0","4205674.0","37.996653","-105.699870","01/03/2024 11:20","https://dwr.state.co.us/Tools/Structures/2505444",
|
||||
"2505464","W3410 WELL NO 01R","CC13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3410","4423-AD, 3167-F, 3167-F-R","GT18082777","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","33","45.0 N","10.0 E","N","","","","","422944.0","4218501.0","38.111055","-105.878987","04/05/2021 18:09","https://dwr.state.co.us/Tools/Structures/2505464",
|
||||
"2505465","W3410 WELL NO 02R","CC5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3410","20142-F, 20142-F-R","07-8-1498","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","28","45.0 N","10.0 E","N","","","","","423794.0","4220099.0","38.125527","-105.869462","04/05/2021 18:09","https://dwr.state.co.us/Tools/Structures/2505465",
|
||||
"2505472","W1675 WELL NO 08","SHOUP #19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","94CW0012","42934-F","12212668/10062830","SHOUP, KATHLEEN F.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","NW","NE","36","45.0 N","9.0 E","N","","","","","418775.0","4218601.0","38.111590","-105.926548","06/27/2008 14:36","https://dwr.state.co.us/Tools/Structures/2505472",
|
||||
"2505473","W3489 WELL NO 01","TPR#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","10CW0010, W3489","20220-F","05060239/05060255","FREES, DAVID L.; FREES, DELMER E.; FREES, GEORGE A.; FREES, SHIRLEY A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","5","45.0 N","10.0 E","N","","","","","422294.0","4225413.0","38.173287","-105.887154","03/21/1996 00:00","https://dwr.state.co.us/Tools/Structures/2505473",
|
||||
"2505489","99CW023 WELL NO 02A","HALF CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0023","45643-F","05060769/05060804","BLANKENSHIP, ROBERT; MCALISTER, TRAVIS A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","25","45.0 N","9.0 E","N","","","","","418658.0","4220229.0","38.126251","-105.928068","01/17/2008 09:24","https://dwr.state.co.us/Tools/Structures/2505489",
|
||||
"2505495","98CW014 WELL NO 1AA","WILHELMINA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","98CW0014","45644-F, 45644-F-R","22-03024","BERRY, JERRY; VAN DER LAAN, ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","NE","SW","25","45.0 N","9.0 E","N","","","","","418231.0","4219453.0","38.119219","-105.932851","01/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2505495",
|
||||
"2505496","98CW005 WELL NO 3A","VDL #11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0005","41170-F, 45010-F","07-8-1179","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","SW","31","45.0 N","10.0 E","N","","","","","419748.0","4217740.0","38.103918","-105.915354","07/05/2001 00:00","https://dwr.state.co.us/Tools/Structures/2505496",
|
||||
"2505497","98CW005 WELL NO 1AA","VDL #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0005","44615-F","07-8-1173","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","31","45.0 N","10.0 E","N","","","","","419705.6","4218578.2","38.111466","-105.915927","07/05/2001 00:00","https://dwr.state.co.us/Tools/Structures/2505497",
|
||||
"2505499","PERMIT 41373 F","CC19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","41373-F","GT20084239","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","SW","34","45.0 N","10.0 E","N","","","","","424559.0","4217672.0","38.103720","-105.860479","04/05/2021 18:11","https://dwr.state.co.us/Tools/Structures/2505499",
|
||||
"2505500","PERMIT 24668-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","24668-F","11061525/04061501","JAN R. WAYE & PHYLLIS K. WAYE REVOCABLE TRUST","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","7","43.0 N","11.0 E","N","","","","","429008.0","4205993.0","37.998831","-105.808580","04/05/2021 18:14","https://dwr.state.co.us/Tools/Structures/2505500",
|
||||
"2505501","PERMIT 20365-R","GRANT WELL 4 / C-72","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20365-R","07-6-1675","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","5","1.0 N","1.0 W","B","","","","","430478.0","4203847.0","37.979605","-105.791631","04/05/2021 18:12","https://dwr.state.co.us/Tools/Structures/2505501",
|
||||
"2505502","PERMIT 20366-R","GRANT WELL 6 / C-8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20366-R","07-6-1484","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","8","1.0 N","1.0 W","B","","","","","429274.0","4201981.0","37.962695","-105.805156","04/05/2021 18:13","https://dwr.state.co.us/Tools/Structures/2505502",
|
||||
"2505504","2004CW007 WELL 1R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0007","6523-R-R","09061937/12204365","RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","4","45.0 N","10.0 E","N","","","","","423931.0","4225577.0","38.174905","-105.868485","06/03/2008 15:27","https://dwr.state.co.us/Tools/Structures/2505504",
|
||||
"2505505","2004CW07 WELL 2R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0007","19437-F-R, 19437-F-R","10062747/10062849","RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","10","45.0 N","10.0 E","N","","","","","424664.0","4225008.0","38.169839","-105.860057","06/03/2008 15:27","https://dwr.state.co.us/Tools/Structures/2505505",
|
||||
"2505506","2004CW07 WELL 2RA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0007","24779-F, 24779-F-R, 275310-","10062747/10062849","RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","9","45.0 N","10.0 E","N","","","","","424224.0","4225171.0","38.171271","-105.865097","02/17/2009 16:25","https://dwr.state.co.us/Tools/Structures/2505506",
|
||||
"2505507","2010CW33 WELL NO 2-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","10CW0033","24403-F-R, 88991-F","22-03165-08","GOOD, RYLAN L.; QUINTANA RANCH, INC. (QUINTANA, ROBERT); QUINTANA, VICTORIA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","35","47.0 N","9.0 E","N","","","","","416885.0","4237652.0","38.283094","-105.950334","08/30/2013 10:48","https://dwr.state.co.us/Tools/Structures/2505507",
|
||||
"2505508","06CW08 WELL NO 2RA","2RA, 344 S. ALDER ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","06CW0008, 09CW0028","65046-F","232704813","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","7","43.0 N","12.0 E","N","","","","","438626.0","4205261.0","37.992936","-105.698981","05/15/2025 15:11","https://dwr.state.co.us/Tools/Structures/2505508",
|
||||
"2505510","2006CW008 WELL NO 2R","155 N. ALDER ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","06CW0008, 09CW0028","62140-F","232704814","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","7","43.0 N","12.0 E","N","","","","","438614.0","4205576.0","37.995774","-105.699144","04/05/2021 18:16","https://dwr.state.co.us/Tools/Structures/2505510",
|
||||
"2505511","PERMIT 19106-S","COLE WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","","19106-S","08-12-1156","MATTINGLY, JOHN C, JUDITH & BRIEN H.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","SW","7","44.0 N","10.0 E","N","","","","","419641.0","4214877.0","38.078109","-105.916252","05/09/2024 14:20","https://dwr.state.co.us/Tools/Structures/2505511",
|
||||
"2505512","22CW3004 WELL NO 3-A","UNIT 1, PIVOT 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","22CW3004","23955-F, 89859-F","25-02179-08","MITCHELL VALLEY FARM LLC (MITCHELL, AMANDA)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","18","45.0 N","10.0 E","N","","","","","419811.0","4223437.0","38.155263","-105.915276","03/26/2024 14:14","https://dwr.state.co.us/Tools/Structures/2505512",
|
||||
"2505537","PERMIT NO. 19106-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","19106-R","GP10-1438-8","MATTINGLY, JOHN C, JUDITH & BRIEN H.","RGWCD SD4","10/31/2010","10/31/2025","3","25","SAGUACHE","","","","NE","SW","6","44.0 N","10.0 E","N","","","","","419975.0","4216129.0","38.089421","-105.912584","05/09/2024 14:23","https://dwr.state.co.us/Tools/Structures/2505537",
|
||||
"2505977","05CW06 OASIS COLD WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","05CW0006","24777-F, 64332-F, 89124-F","5370400","BLUMENHEIN, RICHARD; JOYFUL JOURNEY HOT SPRINGS (BOUDREAUX, THEO); MINERAL HOT SPRINGS (BLUMENHEIN, R.A.); OASIS 2000 CORP (BLUMENHEIN, ELAINE)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","","SE","SE","1","45.0 N","9.0 E","N","","","","","419368.0","4225638.0","38.175058","-105.920581","04/05/2021 18:19","https://dwr.state.co.us/Tools/Structures/2505977",
|
||||
"2605188","W0745 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","16CW3007, W0745","90180-F","25003839","ENGLERT, THAD & SUE ELLEN","RGWCD SD4","10/31/2025","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","1","43.0 N","9.0 E","N","","","","","417403.0","4207464.0","38.011104","-105.940911","02/06/2026 15:23","https://dwr.state.co.us/Tools/Structures/2605188",
|
||||
"2605224","W0802 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW3017, W0802","10197-R, 83553-F","06-8-1730, 8923016","COUNTY ROAD Z, LLC (OMAN, BRADY D.); OMAN, JACK","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","1","44.0 N","9.0 E","N","","","","","417637.0","4216518.0","38.092716","-105.939287","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605224",
|
||||
"2605285","W0975 WELL NO LZY K V 01","NORTH WELL SOUTH/NORTH TANK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0975","4975-F","6170375, 6170376","ALLENBAUGH, JEREMY; KV HOMEOWNER ASSOCIATION","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NE","24","45.0 N","9.0 E","N","","","","","418571.0","4221441.0","38.137165","-105.929199","04/05/2021 18:19","https://dwr.state.co.us/Tools/Structures/2605285",
|
||||
"2605286","W0975 WELL NO LZY K V 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0975","3971-F","","KV HOMEOWNER ASSOCIATION","RGWCD SD4","10/31/2009","10/31/2020","3","26","SAGUACHE","","","NW","NW","NW","26","45.0 N","9.0 E","N","","","","","416245.0","4220609.0","38.129454","-105.955640","04/05/2021 18:21","https://dwr.state.co.us/Tools/Structures/2605286",
|
||||
"2605435","W1607 WELL NO 15","POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","848-R, 83328-F","20007758, 23-00712-08","GREEN PARADOX (MAKA, MATTHEW); PAUNESCU, MARIA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","19","44.0 N","10.0 E","N","","","","","419107.4","4212458.2","38.056262","-105.922066","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605435",
|
||||
"2605438","W1607 WELL NO 20","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","","9039038","GREEN PARADOX (MAKA, MATTHEW); PAUNESCU, MARIA","RGWCD SD4","10/31/2019","10/31/2025","3","26","SAGUACHE","","","","NW","NW","19","44.0 N","10.0 E","N","","","","","419089.0","4212448.0","38.056170","-105.922270","12/26/2023 14:19","https://dwr.state.co.us/Tools/Structures/2605438",
|
||||
"2605439","W1607 WELL NO 21","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","","9019690","GREEN PARADOX (MAKA, MATTHEW); PAUNESCU, MARIA","RGWCD SD4","10/31/2019","10/31/2025","3","26","SAGUACHE","","","","NW","NW","19","44.0 N","10.0 E","N","","","","","419090.0","4212456.0","38.056242","-105.922259","02/06/2026 15:50","https://dwr.state.co.us/Tools/Structures/2605439",
|
||||
"2605880","W2574 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W2574","20613-R","21-04361-08","BENNETT, DAN","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","3","44.0 N","9.0 E","N","","","","","415779.0","4215753.0","38.085651","-105.960383","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605880",
|
||||
"2605886","W2578 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, W2578","15205-F","06-10-1493","SILVA, CARLOS","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","36","44.0 N","9.0 E","N","","","","","417430.0","4209277.0","38.027444","-105.940812","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605886",
|
||||
"2605892","W2578 WELL NO 10","WELL IN NW BRUSH PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2578","15560-F","06-10-1494","SILVA, CARLOS; SILVA, VICTORIA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","23","44.0 N","9.0 E","N","","","","","416670.0","4212491.0","38.056338","-105.949844","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605892",
|
||||
"2605894","W2578 WELL NO 13","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2578","9288-F, 81610-F","18-11229","WEBSTER, MATTHEW","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","25","44.0 N","9.0 E","N","","","","","418217.0","4210868.0","38.041853","-105.932028","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605894",
|
||||
"2605947","W3375 WELL NO. 1","VDL #17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3375","16971-F-R","10062781/10062825","BERRY, JERRY; TEMPLE, D. SHANE & ELIZABETH A.; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","12","44.0 N","9.0 E","N","","","","","417919.0","4214510.0","38.074647","-105.935841","11/05/2011 21:32","https://dwr.state.co.us/Tools/Structures/2605947",
|
||||
"2605948","W3375 WELL NO 02","VDL #16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3375","16972-F","10062775/10062814","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SE","12","44.0 N","9.0 E","N","","","","","418707.0","4214521.0","38.074817","-105.926859","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605948",
|
||||
"2605969","PERMIT 34714 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","34714-F","20-03444-08","VESTAL, WILLIAM A.; WERNER, JACQUELIN VESTAL & WILLIAM A.X. VESTAL","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","7","43.0 N","10.0 E","N","","","","","419670.0","4205113.0","37.990121","-105.914826","09/18/2007 10:06","https://dwr.state.co.us/Tools/Structures/2605969",
|
||||
"2606015","16CW3007 WELL NO. W745R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","16CW3007","252768-, 90181-F","25003817","ENGLERT LIVING TRUST (ENGLERT, MARK)","RGWCD SD4","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","NW","NW","1","43.0 N","9.0 E","N","","","","","417457.0","4207604.0","38.012370","-105.940312","02/06/2026 15:56","https://dwr.state.co.us/Tools/Structures/2606015",
|
||||
|
156
Data/SBD_Data/StructureList_SBD5.csv
Normal file
156
Data/SBD_Data/StructureList_SBD5.csv
Normal file
@ -0,0 +1,156 @@
|
||||
WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information,
|
||||
"2605001","W1037 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3001, W1037","12859-R, 82958-F, 89848-F","19-03525-08","MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2014","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","3","43.0 N","8.0 E","N","","","","","405341.0","4207897.0","38.013826","-106.078351","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605001",
|
||||
"2605004","W1745 WELL NO 03","WAKEFIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1745","7083-R","09062735/10060111","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","NE","19","44.0 N","9.0 E","N","","","","","410248.0","4212275.0","38.053777","-106.023008","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605004",
|
||||
"2605005","W1902 WELL NO HENSON 02","LIGHTENING TREE #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20360-R","16-08036-10","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","19","44.0 N","9.0 E","N","","","","","411003.0","4211461.0","38.046517","-106.014302","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605005",
|
||||
"2605006","W1902 WELL NO HENSON 04","3RD PASTURE #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20219-R","10062735/10062841","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","20","44.0 N","9.0 E","N","","","","","411329.0","4212232.0","38.053496","-106.010683","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605006",
|
||||
"2605012","W3288 WEEKS WELL NO 01","PIVOT C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0049, W3288","21584-F","23-03636-80","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SE","SE","21","44.0 N","9.0 E","N","","","","","414142.0","4211004.0","38.042702","-105.978477","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605012",
|
||||
"2605013","W3288 WEEKS WELL NO 02","PIVOT B","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0049, W3288","21585-F","09062738/10060106","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NW","SE","21","44.0 N","9.0 E","N","","","","","413758.0","4211798.0","38.049820","-105.982949","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605013",
|
||||
"2605014","W3288 WEEKS WELL NO 03","PIVOT A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0049, W3288","21586-F","072019003985/01201350","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NW","21","44.0 N","9.0 E","N","","","","","412984.0","4211834.0","38.050071","-105.991774","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605014",
|
||||
"2605015","W0082 WELL NO 02","26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W0082","10305-F, 10305-F-R","10063550/12230549","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","29","44.0 N","8.0 E","N","","","","","402991.0","4210120.0","38.033609","-106.105418","08/06/2018 12:36","https://dwr.state.co.us/Tools/Structures/2605015",
|
||||
"2605016","81CW135 WELL NO D 02A","26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0135","24067-F, 24067-F-R, 24067-F-R","10063550/12230549","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","28","44.0 N","8.0 E","N","","","","","403385.0","4210052.0","38.033039","-106.100920","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605016",
|
||||
"2605018","81CW135 WELL NO D 05A","25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0135","24068-F","10063564/10063682","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","28","44.0 N","8.0 E","N","","","","","403407.0","4210850.0","38.040232","-106.100777","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605018",
|
||||
"2605019","W2276 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2276","13925-R","03090271","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","SW","27","44.0 N","8.0 E","N","","","","","404565.0","4210030.0","38.032966","-106.087473","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605019",
|
||||
"2605020","81CW135 WELL NO D 07A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0135","24066-F","06-8-4826","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","34","44.0 N","8.0 E","N","","","","","404924.0","4209233.0","38.025822","-106.083277","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605020",
|
||||
"2605022","81CW168 WELL NO 04A","27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0168","25226-F, 25226-F-R","10063588/10063673","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","33","44.0 N","8.0 E","N","","","","","403350.0","4209250.0","38.025808","-106.101210","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605022",
|
||||
"2605023","81CW168 WELL NO 04AA","33","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0168","25225-F","09212316/09212242","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NE","33","44.0 N","8.0 E","N","","","","","404124.0","4209251.0","38.025899","-106.092393","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605023",
|
||||
"2605032","82CW075 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0075","900-R-R","12062610/12062696","ORTEGA, PHILLIP & VIOLA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","19","44.0 N","8.0 E","N","","","","","400415.0","4212819.0","38.057651","-106.135141","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605032",
|
||||
"2605035","W2465 WELL NO 01","BIG ARGY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","88CW0018, W2465","10637-F","00-8-2105N","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","21","43.0 N","8.0 E","N","","","","","403678.0","4202557.0","37.965531","-106.096575","03/15/2021 13:44","https://dwr.state.co.us/Tools/Structures/2605035",
|
||||
"2605040","W1902 WELL NO S FARM 07","22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19513-W","24-05619-08","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2016","10/31/2025","3","26","SAGUACHE","","","","NW","SW","29","44.0 N","8.0 E","N","","","","","401805.0","4210439.0","38.036356","-106.118974","01/27/2026 14:15","https://dwr.state.co.us/Tools/Structures/2605040",
|
||||
"2605043","W1902 WELL NO S FARM 15","9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20162-R","072019003980/12204375","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NE","NW","32","44.0 N","8.0 E","N","","","","","401799.0","4209398.0","38.026975","-106.118899","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605043",
|
||||
"2605044","W1902 WELL NO S FARM 25","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","6052-R","10063571/072019003994","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","SW","32","44.0 N","8.0 E","N","","","","","401785.0","4208820.0","38.021765","-106.118979","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605044",
|
||||
"2605045","W1902 WELL NO S FARM 01A","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","19057-F","12062518/12062784","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","19","44.0 N","8.0 E","N","","","","","401042.0","4211715.0","38.047771","-106.127843","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605045",
|
||||
"2605046","W1902 WELL NO S FARM 02A","13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19063-F, 19063--R","10063557/10063736","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","29","44.0 N","8.0 E","N","","","","","401820.0","4210881.0","38.040341","-106.118863","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605046",
|
||||
"2605047","W1902 WELL NO S FARM 06A","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19061-F","20-03865-08","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","29","44.0 N","8.0 E","N","","","","","401809.0","4210074.0","38.033068","-106.118878","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605047",
|
||||
"2605048","W1902 WELL NO S FARM 07A","20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19060-F, 53495-F","10063569/10063678","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SE","29","44.0 N","8.0 E","N","","","","","402582.0","4210052.0","38.032953","-106.110068","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605048",
|
||||
"2605049","W1902 WELL NO S FARM 08A","19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","4498-AD, 19062-F","072014000388/062017001242","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","29","44.0 N","8.0 E","N","","","","","402614.0","4210859.0","38.040228","-106.109813","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605049",
|
||||
"2605050","W1902 WELL NO S FARM 10A","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1902","19064-F","07060375/092017001244","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NE","30","44.0 N","8.0 E","N","","","","","401029.0","4210899.0","38.040417","-106.127878","07/06/2017 14:40","https://dwr.state.co.us/Tools/Structures/2605050",
|
||||
"2605052","W1902 WELL NO S FARM 25A","16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19058-F, 19058-F-R, 19058--R","10063540/10063717","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","32","44.0 N","8.0 E","N","","","","","402163.0","4208467.0","38.018625","-106.114625","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605052",
|
||||
"2605053","W0092 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W0092","1899-R","","BAKER, CHANCE; JOHN L. WERNER IRREVOCABLE TRUST (BAKER, CHANCE)","RGWCD SD5","10/31/2009","10/31/2019","3","26","SAGUACHE","","","","SE","SE","24","44.0 N","8.0 E","N","","","","","409403.0","4211450.0","38.046259","-106.032533","05/03/2023 12:13","https://dwr.state.co.us/Tools/Structures/2605053",
|
||||
"2605054","W3679 WELL NO 01A","JOHN L. WERNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W3679","22076-F","12212660/12230545","BAKER, CHANCE; JOHN L. WERNER IRREVOCABLE TRUST (BAKER, CHANCE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NE","24","44.0 N","8.0 E","N","","","","","409425.0","4212197.0","38.052992","-106.032377","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605054",
|
||||
"2605055","W0002 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W0002","4401-F","08223647/12212625","BROKEN WINDMILL RANCH LLC; WALKE & WALKE CATTLE CO LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","15","44.0 N","8.0 E","N","","","","","404677.0","4213657.0","38.065661","-106.086680","01/31/1991 00:00","https://dwr.state.co.us/Tools/Structures/2605055",
|
||||
"2605056","80CW046 WELL NO 30","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0046","18449-F","062015000935/12062757","ORTEGA, PHILLIP & VIOLA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NE","NW","6","43.0 N","8.0 E","N","","","","","400376.0","4207768.0","38.012131","-106.134883","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605056",
|
||||
"2605057","80CW046 WELL NO 31","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0046","18450-F","072017001411/05063044","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","31","44.0 N","8.0 E","N","","","","","400207.0","4209308.0","38.025990","-106.137022","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605057",
|
||||
"2605059","83CW0082 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0082","","20008642","CARLSON, STEVEN & TREVA","RGWCD SD5","10/31/2021","10/31/2025","3","26","SAGUACHE","","","","SE","NW","36","43.0 N","7.0 E","N","","","","","398568.0","4198676.0","37.930002","-106.154192","03/05/2026 10:41","https://dwr.state.co.us/Tools/Structures/2605059",
|
||||
"2605061","W0030 WELL NO 01","JOHN L. WERNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0030","15262-R","","BAKER, CHANCE; JOHN L. WERNER IRREVOCABLE TRUST (BAKER, CHANCE)","RGWCD SD5","10/31/2009","10/31/2020","3","26","SAGUACHE","","","","SE","NW","24","44.0 N","8.0 E","N","","","","","408425.0","4212314.0","38.053946","-106.043788","10/26/2023 13:23","https://dwr.state.co.us/Tools/Structures/2605061",
|
||||
"2605062","W0082 WELL NO 01","24, 29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0082","4524-F, 4524-F-R","10063584/10063680","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","28","44.0 N","8.0 E","N","","","","","403051.0","4211238.0","38.043690","-106.104886","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605062",
|
||||
"2605063","W0082 WELL NO 03","30, 31","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0082","4815-F, 4815-F-R","10063577/10063668","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","28","44.0 N","8.0 E","N","","","","","403784.0","4210419.0","38.036388","-106.096423","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605063",
|
||||
"2605101","W0094 PUMP WELL NO 05","WERNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0094","904-R, 14375-F","06-10-1287","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","10","44.0 N","8.0 E","N","","","","","406323.0","4214689.0","38.075133","-106.068054","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605101",
|
||||
"2605102","W0094 PUMP WELL NO 06","WEST ULLERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0094","898-R","06-10-1404","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NE","27","44.0 N","8.0 E","N","","","","","406195.0","4211089.0","38.042679","-106.069041","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605102",
|
||||
"2605103","W0094 PUMP WELL NO 07","SO. ULLERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0094","897-R","25-02155-10","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NE","SE","26","44.0 N","8.0 E","N","","","","","407389.0","4210119.0","38.034061","-106.055311","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605103",
|
||||
"2605120","W0207 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0207","10711-F","06-10-1288","COLLINS, WARREN W. & SARAH L.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","12","43.0 N","7.0 E","N","","","","","399092.0","4205700.0","37.993354","-106.149216","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605120",
|
||||
"2605131","W0533 WELL NO ART 01","UPPER 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0533","21028-R","20-03592-10","SUTHERLAND, LYNN","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","9","43.0 N","9.0 E","N","","","","","413284.0","4205526.0","37.993255","-105.987591","09/17/2007 15:01","https://dwr.state.co.us/Tools/Structures/2605131",
|
||||
"2605132","W0533 WELL NO ART 02","UPPER 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0533","10945-R","07-10-1088","SUTHERLAND, LYNN","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","10","43.0 N","9.0 E","N","","","","","414495.0","4205519.0","37.993307","-105.973801","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605132",
|
||||
"2605159","W0533 WELL NO PUMP 01","RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0533","19694-R, 89126-F","08061978/08062003","SAN JUAN RANCH LLC; WHITTEN, GEORGE","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","1","43.0 N","8.0 E","N","","","","","407747.0","4207527.0","38.010740","-106.050898","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605159",
|
||||
"2605167","W0711 WELL NO 01","SLAIN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0047, W0711","1691-R, 1691-R-R","10242151/1223054","HILL LAND & CATTLE; HILL, CORY & AUBREY; HILL, GARY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","SE","9","44.0 N","8.0 E","N","","","","","403907.0","4214489.0","38.073077","-106.095569","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605167",
|
||||
"2605187","W0745 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0745","13165-R, 189-WCB","07-8-1228","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NW","NW","11","43.0 N","9.0 E","N","","","","","416041.0","4205456.0","37.992883","-105.956189","09/17/2007 15:01","https://dwr.state.co.us/Tools/Structures/2605187",
|
||||
"2605192","W0745 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0745","","25000112","ENGLERT, THAD & SUE ELLEN","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","NE","SE","2","43.0 N","9.0 E","N","","","","","417076.0","4206083.0","37.998629","-105.944475","02/06/2026 15:24","https://dwr.state.co.us/Tools/Structures/2605192",
|
||||
"2605197","W0745 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0745","","25000211","ENGLERT LIVING TRUST (ENGLERT, MARK)","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","SE","SE","2","43.0 N","9.0 E","N","","","","","417048.0","4205741.0","37.995544","-105.944755","02/06/2026 15:24","https://dwr.state.co.us/Tools/Structures/2605197",
|
||||
"2605249","W0826 WELL NO 01","HILL & ALLEN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","12CW0047, W0826","13196-F","10063593/10063692","GREEN THINGS LLC (ROONEY, SEAN); HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SW","5","44.0 N","8.0 E","N","","","","","401928.0","4216362.0","38.089742","-106.118384","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605249",
|
||||
"2605250","W0827 WELL NO 01","COW CAMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0827","5487-F","21-02806-10","HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NW","4","43.0 N","9.0 E","N","","","","","412961.0","4207794.0","38.013662","-105.991545","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605250",
|
||||
"2605262","W0828 WELL NO 01","RED BARN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","12CW0047, W0828","6538-R","12062505/12062778","HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","5","44.0 N","8.0 E","N","","","","","402926.0","4216112.0","38.087597","-106.106972","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605262",
|
||||
"2605267","W0919 WELL NO 01","W-919 WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","3258-F","06-6-1701, 26014876","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","SE","33","43.0 N","8.0 E","N","","","","","403520.0","4197785.0","37.922512","-106.097734","03/15/2021 13:52","https://dwr.state.co.us/Tools/Structures/2605267",
|
||||
"2605269","W0919 WELL NO 03","W-919 WELL#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","16403-R","1367020","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2010","10/31/2025","3","26","SAGUACHE","","","SW","SW","NE","33","43.0 N","8.0 E","N","","","","","403485.0","4198589.0","37.929753","-106.098240","12/26/2023 14:18","https://dwr.state.co.us/Tools/Structures/2605269",
|
||||
"2605270","W0919 WELL NO 04","W-919 WELL #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","16402-R","1450724","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2010","10/31/2025","3","26","SAGUACHE","","","","NE","NW","33","43.0 N","8.0 E","N","","","","","403442.0","4199287.0","37.936039","-106.098823","03/15/2021 13:54","https://dwr.state.co.us/Tools/Structures/2605270",
|
||||
"2605271","W0919 WELL NO 05","W-919 WELL #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","16404-R","1479294","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","33","43.0 N","8.0 E","N","","","","","403449.0","4199358.0","37.936679","-106.098753","03/15/2021 13:56","https://dwr.state.co.us/Tools/Structures/2605271",
|
||||
"2605274","W0919 WELL NO 08","W-919 WELL#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","","20013706","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2010","10/31/2025","3","26","SAGUACHE","","","SW","NW","NE","33","43.0 N","8.0 E","N","","","","","403443.0","4199121.0","37.934543","-106.098789","02/06/2026 15:25","https://dwr.state.co.us/Tools/Structures/2605274",
|
||||
"2605288","W1008 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1008","16084-R","07-4-1023","ABEYTA, ALEX A. & LAURA L.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","SE","SW","6","44.0 N","8.0 E","N","","","","","400550.0","4216363.0","38.089601","-106.134096","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605288",
|
||||
"2605300","W1022 WELL NO 01","CAT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1022","15509-F","06-8-3309, 19830461","ANDERSON, CARNA; FIELD OF GREEN LLC (ANDERSON, CARNA)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","9","43.0 N","8.0 E","N","","","","","403511.0","4205829.0","37.994998","-106.098916","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605300",
|
||||
"2605301","W1022 WELL NO 02","QT #4 #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1022","509-R","7-8-1138E","HOLLENBECK, MICHAEL E. & RONDA J.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","9","43.0 N","8.0 E","N","","","","","403513.0","4205823.0","37.994944","-106.098892","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605301",
|
||||
"2605316","W1037 WELL NO 01","SOD FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1037","12858-R, 12858-R-R","","SCANGA, EDWARD T. & KELLY J.","RGWCD SD5","10/31/2019","10/31/2023","3","26","SAGUACHE","","","","NW","NW","5","44.0 N","7.0 E","N","","","","","392226.0","4217937.0","38.102829","-106.229237","02/13/2026 11:04","https://dwr.state.co.us/Tools/Structures/2605316",
|
||||
"2605379","W1277 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1277","","17-13696-04","BILGER, RICK A. & ADELITA C.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","36","43.0 N","7.0 E","N","","","","","398563.0","4199190.0","37.934633","-106.154321","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605379",
|
||||
"2605382","W1277 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1277","","21-05953-04","CARLSON, STEVEN & TREVA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NW","36","43.0 N","7.0 E","N","","","","","398566.0","4198682.0","37.930056","-106.154215","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605382",
|
||||
"2605386","W1277 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1277","16215-R","242451739","KELLING, TERRI D.","RGWCD SD5","10/31/2022","10/31/2025","3","26","SAGUACHE","","","SE","SE","SE","25","43.0 N","7.0 E","N","","","","","399184.0","4199504.0","37.937532","-106.147300","05/09/2024 14:30","https://dwr.state.co.us/Tools/Structures/2605386",
|
||||
"2605419","W1337 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1337","14469-F, 81143-F","06-10-1535","COLEMAN, AMY L.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","34","44.0 N","8.0 E","N","","","","","404509.0","4208828.0","38.022128","-106.087951","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605419",
|
||||
"2605443","W1632 WELL NO 01","BIG SHOP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","4018-F","23-04164-10","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","20","43.0 N","8.0 E","N","","","","","401312.0","4202616.0","37.965808","-106.123514","03/15/2021 14:02","https://dwr.state.co.us/Tools/Structures/2605443",
|
||||
"2605444","W1632 WELL NO 02","VIGIL #2 W-1632","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","4019-F","24-07192-08","FRONTIER TROUT RANCH LLC (KRANTZ, KERMIT)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","SW","36","43.0 N","7.0 E","N","","","","","398055.0","4198009.0","37.923934","-106.159934","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605444",
|
||||
"2605445","W1632 WELL NO 03","WELL #3 W1632","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","25312-F-R","82-6-178","ABEYTA, FRANK AND JODY","RGWCD SD5","10/31/2009","10/31/2024","3","26","SAGUACHE","","","","SE","SW","36","43.0 N","7.0 E","N","","","","","398532.0","4198028.0","37.924159","-106.154510","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605445",
|
||||
"2605447","W1632 WELL NO 05","WEST SHOP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","11976-R","19021018","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","20","43.0 N","8.0 E","N","","","","","401177.0","4202583.0","37.965496","-106.125046","03/15/2021 14:03","https://dwr.state.co.us/Tools/Structures/2605447",
|
||||
"2605448","W1632 WELL NO 06","GRAVEL PIT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","11980-R","8827560","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NE","20","43.0 N","8.0 E","N","","","","","402383.0","4202609.0","37.965861","-106.111323","03/15/2021 14:04","https://dwr.state.co.us/Tools/Structures/2605448",
|
||||
"2605449","W1632 WELL NO 07","W-1632WELL #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","11977-R","DUMMY14","ALOIA, TONY; COLORADO PARKS AND WILDLIFE","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","NW","SW","NW","20","43.0 N","8.0 E","N","","","","","401166.0","4202092.0","37.961071","-106.125104","02/06/2026 15:50","https://dwr.state.co.us/Tools/Structures/2605449",
|
||||
"2605465","W1663 WELL NO 04","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0036, 22CW3037, W1663","11031-F, 88698-F","DUMMY3","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","5","44.0 N","9.0 E","N","","","","","411888.0","4217420.0","38.100302","-106.004952","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605465",
|
||||
"2605485","W1723 WELL NO 01","POOR FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1723","11597-R","09062748/10062856","HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NE","SW","5","44.0 N","8.0 E","N","","","","","401934.0","4216540.0","38.091347","-106.118340","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605485",
|
||||
"2605495","W1745 WELL NO 01","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1745","7081-R","052018000682/052018002665","WILSON, JAY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","SE","SE","14","44.0 N","8.0 E","N","","","","","407729.0","4213144.0","38.061355","-106.051827","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605495",
|
||||
"2605557","W1892 WELL NO 02","CLARK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1892","6590-R","06-10-1508, 222607838","ALDEN RESERVE HECTARES LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","10","43.0 N","8.0 E","N","","","","","404436.0","4204947.0","37.987148","-106.088266","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605557",
|
||||
"2605558","W1892 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1892","6591-R","06-8-4586","ADAM RANCH, LLC (ADAM, KIM & NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SE","NE","26","43.0 N","7.0 E","N","","","","","397420.0","4200589.0","37.947111","-106.167525","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605558",
|
||||
"2605559","W1892 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1892","6592-R","06-8-4585","ADAM RANCH, LLC (ADAM, KIM & NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NE","26","43.0 N","7.0 E","N","","","","","397447.0","4201133.0","37.952016","-106.167295","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605559",
|
||||
"2605562","W1892 WELL NO 10","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1892","6598-R","06-10203-03","ADAM RANCH, LLC (ADAM, KIM & NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SE","NE","25","43.0 N","7.0 E","N","","","","","399046.0","4200465.0","37.946176","-106.149005","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605562",
|
||||
"2605579","W1892 WELL NO 27","TRIANGLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1892","48991-F","25-00810-04","DAVEY FAMILY PARTNERSHIP, LTD","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","19","43.0 N","8.0 E","N","","","","","399489.0","4201766.0","37.957949","-106.144145","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605579",
|
||||
"2605614","W1893 WELL NO 02","DAVEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1893","9541-F, 89450-F","21-05954-10","DAVEY, ERIKA; EARL DUANE DAVEY TRUST (DAVEY, DUANE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","15","43.0 N","8.0 E","N","","","","","404390.0","4203427.0","37.973446","-106.088587","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605614",
|
||||
"2605627","W1902 WELL NO ASHLEY 03","ASHLEY 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20225-R, 118-WCB, 20225-R-R","17-08605-8","GYDESEN, CHRISTINE & BOB","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","NE","14","44.0 N","8.0 E","N","","","","","407084.0","4213837.0","38.067534","-106.059269","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605627",
|
||||
"2605628","W1902 WELL NO ASHLEY 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20226-R","10062727/10062837","WALKE & WALKE CATTLE CO LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","22","44.0 N","8.0 E","N","","","","","405857.0","4212789.0","38.057963","-106.073116","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605628",
|
||||
"2605630","W1902 WELL NO ASHLEY 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20645-R","07-8-2626","PHILLIPS, JEFFREY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SE","NE","23","44.0 N","8.0 E","N","","","","","407451.0","4212356.0","38.054226","-106.054894","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605630",
|
||||
"2605631","W1902 WELL NO ASHLEY 07","ASHLEY 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20646-R","07-8-1170","GYDESEN, CHRISTINE & BOB","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","NW","13","44.0 N","8.0 E","N","","","","","407859.0","4213964.0","38.068757","-106.050451","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605631",
|
||||
"2605674","W1902 WELL NO HENSON 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","18905-R","21-03470-10","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","30","44.0 N","9.0 E","N","","","","","410189.0","4210264.0","38.035650","-106.023428","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605674",
|
||||
"2605675","W1902 WELL NO HENSON 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20361-R, 20361-R-R","09212323/09212243","WALKE & WALKE CATTLE CO LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","18","44.0 N","9.0 E","N","","","","","410283.0","4213101.0","38.061224","-106.022713","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605675",
|
||||
"2605676","W1902 WELL NO HENSON 05","HANSON #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20362-R, 20362-R-R","24-05617","BOOTH, CHARLIE","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","13","44.0 N","8.0 E","N","","","","","409441.0","4212724.0","38.057743","-106.032262","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605676",
|
||||
"2605677","W1902 WELL NO HENSON 06","BULL PASTURE #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20363-R","18-04851-08","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SW","17","44.0 N","9.0 E","N","","","","","411125.0","4213069.0","38.061019","-106.013112","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605677",
|
||||
"2605678","W1902 WELL NO HENSON 07","LITTLE WELL #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20368-R, 37-WCB, 20368-R-R, 341578-","20-04461-08","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","30","44.0 N","9.0 E","N","","","","","410150.0","4210288.0","38.035862","-106.023875","05/20/2013 14:25","https://dwr.state.co.us/Tools/Structures/2605678",
|
||||
"2605681","W1902 WELL NO S FARM 12","21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20159-R-R","12062499/12062766","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NE","32","44.0 N","8.0 E","N","","","","","402590.0","4209643.0","38.029268","-106.109922","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605681",
|
||||
"2605684","W1902 WELL NO S FARM 16","23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20163-R","052018000679/072017003082","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NE","20","44.0 N","8.0 E","N","","","","","402277.0","4212075.0","38.051149","-106.113819","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605684",
|
||||
"2605685","W1902 WELL NO S FARM 17","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20228-R, 20228-R-R","10063568/10063666","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","30","44.0 N","8.0 E","N","","","","","400217.0","4210112.0","38.033236","-106.137021","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605685",
|
||||
"2605687","W1902 WELL NO S FARM 19","17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20208-R-R, 20208-R-R","09212313/06214531","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NE","20","44.0 N","8.0 E","N","","","","","402652.0","4212462.0","38.054677","-106.109599","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605687",
|
||||
"2605688","W1902 WELL NO S FARM 19A","18","Historical structure only - no longer exists or has records, but has historical data (H)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","17519-F","","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2022","3","26","SAGUACHE","","","","NE","SE","20","44.0 N","8.0 E","N","","","","","402665.0","4211675.0","38.047587","-106.109343","05/20/2024 14:51","https://dwr.state.co.us/Tools/Structures/2605688",
|
||||
"2605689","W1902 WELL NO S FARM 20","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20209-R","10063572/01250078","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","30","44.0 N","8.0 E","N","","","","","401018.0","4210084.0","38.033072","-106.127891","04/05/2013 08:29","https://dwr.state.co.us/Tools/Structures/2605689",
|
||||
"2605690","W1902 WELL NO S FARM 21","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20210-R, 20210-R-R","072017001407/10063735","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","30","44.0 N","8.0 E","N","","","","","400220.0","4210914.0","38.040463","-106.137098","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605690",
|
||||
"2605692","W1902 WELL NO S FARM 23","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20620-R","21-06232-08","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","20","44.0 N","8.0 E","N","","","","","401860.0","4212510.0","38.055024","-106.118631","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605692",
|
||||
"2605693","W1902 WELL NO S FARM 24","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20621-R","07060393/07060920","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NW","SW","20","44.0 N","8.0 E","N","","","","","401834.0","4211708.0","38.047794","-106.118817","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605693",
|
||||
"2605707","W2023 WELL NO 01","DAVEY POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2023","5016-F","00-10-1223","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NW","SE","19","43.0 N","8.0 E","N","","","","","400531.0","4201855.0","37.958866","-106.132299","03/15/2021 14:27","https://dwr.state.co.us/Tools/Structures/2605707",
|
||||
"2605711","W2023 WELL NO 05","W-2023 WELL#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2023","","DUMMY15","ALOIA, TONY; US BUREAU OF RECLAMATION (RICH ROBERTS)","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","NW","NE","30","43.0 N","8.0 E","N","","","","","400270.0","4200888.0","37.950123","-106.135135","02/10/2026 10:42","https://dwr.state.co.us/Tools/Structures/2605711",
|
||||
"2605718","W2035 WELL NO 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","8219-R","07-4-1091","DICKEY, KATY I.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","31","43.0 N","8.0 E","N","","","","","399411.0","4199110.0","37.934006","-106.144662","06/07/2023 11:06","https://dwr.state.co.us/Tools/Structures/2605718",
|
||||
"2605720","W2035 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","16211-R","DUMMY2","DICKEY, KATY I.","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","SW","NW","31","43.0 N","8.0 E","N","","","","","399432.0","4198686.0","37.930188","-106.144364","02/06/2026 15:55","https://dwr.state.co.us/Tools/Structures/2605720",
|
||||
"2605721","W2035 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","16210-R","DUMMY 3","DICKEY, KATY I.","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","SW","NW","31","43.0 N","8.0 E","N","","","","","399585.0","4198682.0","37.930169","-106.142622","02/06/2026 15:55","https://dwr.state.co.us/Tools/Structures/2605721",
|
||||
"2605722","W2035 WELL NO 05","LITTLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","16212-R","07-10033-3","DICKEY, KATY I.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","NW","31","43.0 N","8.0 E","N","","","","","399635.0","4198723.0","37.930544","-106.142059","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605722",
|
||||
"2605728","W2035 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","10497-F","06-6-2149","ALLEN, RUSSELL; LAG-8 LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SE","NW","7","43.0 N","9.0 E","N","","","","","409654.0","4205096.0","37.989025","-106.028872","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605728",
|
||||
"2605787","W2218 WELL NO 24","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","21CW3023, W2218","15416-F","10063547","BAKER, CHANCE; MAMMOTH ACQUISITIONS LLC; MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","SE","36","44.0 N","7.0 E","N","","","","","399227.0","4208119.0","38.015167","-106.148019","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605787",
|
||||
"2605788","W2218 WELL NO 25","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2218","6018-R, 6018-R-R","04128380/01250075","BAKER, CHANCE; MAMMOTH ACQUISITIONS LLC; MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NW","SE","1","43.0 N","7.0 E","N","","","","","399108.0","4206546.0","38.000980","-106.149153","12/11/2012 12:26","https://dwr.state.co.us/Tools/Structures/2605788",
|
||||
"2605790","W2218 WELL NO 27","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W2218","6020-R","17-06011-10","BAKER, CHANCE; MAMMOTH ACQUISITIONS LLC; MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","NE","1","43.0 N","7.0 E","N","","","","","399213.0","4206865.0","38.003866","-106.148002","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605790",
|
||||
"2605791","W2218 WELL NO 28","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2218","7288-R","12204450/09212227","DIRKS, GERHARD","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","NE","12","43.0 N","7.0 E","N","","","","","398912.0","4205523.0","37.991739","-106.151241","09/09/2008 11:04","https://dwr.state.co.us/Tools/Structures/2605791",
|
||||
"2605792","W2218 WELL NO 29","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2218","15296-F","12062525/12062768-100972","ORTEGA, PHILLIP & VIOLA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","6","43.0 N","8.0 E","N","","","","","399729.0","4207346.0","38.008257","-106.142193","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605792",
|
||||
"2605799","W2293 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2293","13924-R","09062712/10060156-100064","WHITTEN, GEORGE","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","1","43.0 N","8.0 E","N","","","","","408512.0","4207781.0","38.013107","-106.042218","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605799",
|
||||
"2605803","W2293 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2293","14600-R, 14600-R-R","17433021","HEKTARES LLC (RING, BRUCE); TOEPPER, BRENT","RGWCD SD5","10/31/2018","10/31/2025","3","26","SAGUACHE","","","","SE","NW","8","43.0 N","8.0 E","N","","","","","401602.0","4205469.0","37.991549","-106.120604","10/03/2023 16:23","https://dwr.state.co.us/Tools/Structures/2605803",
|
||||
"2605804","W2293 WELL NO 07","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2293","14595-R","04081173","WEIS, CJ","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SW","6","43.0 N","8.0 E","N","","","","","399697.0","4206643.0","38.001919","-106.142459","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605804",
|
||||
"2605858","W2452 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2452","5104-F","07-10-1138","WHEELER, KEVIN A. & KIMBERLY A.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","NW","18","43.0 N","8.0 E","N","","","","","399624.0","4203597.0","37.974463","-106.142865","03/15/2021 14:30","https://dwr.state.co.us/Tools/Structures/2605858",
|
||||
"2605877","W2552 WELL NO 01","WINTZ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0040, W2552","11391-F, 67752-F","06-10-1506, 14-05160-8","DAVEY FAMILY PARTNERSHIP, LTD; QUAN, DAU G.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","24","43.0 N","7.0 E","N","","","","","399084.0","4201781.0","37.958039","-106.148757","09/17/2007 15:00","https://dwr.state.co.us/Tools/Structures/2605877",
|
||||
"2605878","W2552 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2552","2927-F","06-10-1547","SCHMITTEL, DAVID & VERNA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","SW","2","42.0 N","8.0 E","N","","","","","405795.0","4196175.0","37.908242","-106.071643","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605878",
|
||||
"2605879","W2552 WELL NO 03","JOHN DEERE - BY HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2552","6807-R","20-03748-10","SCHMITTEL, DAVID & VERNA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","SE","13","43.0 N","7.0 E","N","","","","","399291.0","4203503.0","37.973579","-106.146642","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605879",
|
||||
"2605882","W2576 WELL NO 02","SMITH TRACT WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2576","","17-11974-04","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","31","43.0 N","8.0 E","N","","","","","399442.0","4198490.0","37.928423","-106.144222","03/15/2021 14:32","https://dwr.state.co.us/Tools/Structures/2605882",
|
||||
"2605883","W2576 WELL NO 03","SMITH TRACT WELL #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2576","10443-F","20801316","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SW","31","43.0 N","8.0 E","N","","","","","399508.0","4198209.0","37.925898","-106.143432","03/15/2021 14:33","https://dwr.state.co.us/Tools/Structures/2605883",
|
||||
"2605950","W3917 WELL NO 09R","28","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3917","19513-Y, 19513-Y-R","10063544/10063725","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SW","33","44.0 N","8.0 E","N","","","","","403333.0","4208432.0","38.018435","-106.101294","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605950",
|
||||
"2605951","W3961 COOK WELL NO 06","34","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3961","65-R-R","052018000680/12212636","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","33","44.0 N","8.0 E","N","","","","","404120.0","4208413.0","38.018348","-106.092327","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605951",
|
||||
"2605952","W3961 COOK WELL NO 08","32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3961","66-R-R","10063556/10063732","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","28","44.0 N","8.0 E","N","","","","","404151.0","4210037.0","38.032985","-106.092191","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605952",
|
||||
"2605954","94CW015 WELL NO 08R","CORRAL PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","94CW0015","899-R-R","06-10-1406","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NW","36","44.0 N","8.0 E","N","","","","","408374.0","4209427.0","38.027925","-106.044000","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2605954",
|
||||
"2605956","97CW005 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0005","21580-F","06-8-4828","LUND, TRENTON; TKZ LAND & CATTLE, LLC (LUND, TRENTON)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","34","44.0 N","8.0 E","N","","","","","405731.0","4208391.0","38.018318","-106.073973","04/24/1998 00:00","https://dwr.state.co.us/Tools/Structures/2605956",
|
||||
"2605957","94CW021 WELL NO 2-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0021","22471-F","09062738/10060106","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NE","21","44.0 N","9.0 E","N","","","","","413957.0","4211818.0","38.050019","-105.980683","04/24/1998 00:00","https://dwr.state.co.us/Tools/Structures/2605957",
|
||||
"2605958","94CW021 WELL NO 3-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0021","22472-F","072019003985/01201350","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SW","21","44.0 N","9.0 E","N","","","","","412973.0","4211649.0","38.048402","-105.991876","08/29/2018 15:56","https://dwr.state.co.us/Tools/Structures/2605958",
|
||||
"2605959","98CW023 WELL NO 1R","#20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0023","10402-F-R","12062632/122230537","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","5","44.0 N","9.0 E","N","","","","","411464.0","4217087.0","38.097260","-106.009746","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2605959",
|
||||
"2605960","98CW023 WELL NO 2R","#21/22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0023","11030-F-R","12062595/12062676","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","5","44.0 N","9.0 E","N","","","","","411480.0","4216311.0","38.090269","-106.009467","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2605960",
|
||||
"2605961","99CW006 WELL NO 1A","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0036, 22CW3037, 99CW0006","23225-F","12062592/12062687","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","4","44.0 N","9.0 E","N","","","","","413133.0","4217066.0","38.097233","-105.990711","09/06/2007 12:15","https://dwr.state.co.us/Tools/Structures/2605961",
|
||||
"2605962","99CW0006 WELL NO 1R","#18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0036, 22CW3037, 99CW0006","98188-VE, 9156-F-R, 88696-F","12062528/12062753","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NE","5","44.0 N","9.0 E","N","","","","","412695.0","4217453.0","38.100678","-105.995753","01/29/2009 15:00","https://dwr.state.co.us/Tools/Structures/2605962",
|
||||
"2605972","W2077 WELL NO. 1","HUNT SPRINGS WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","12CW0047","24353-F-R","072019003973/062019000999","HILL FAMILY LIMITED PARNTERSHIP CJH (HILL, COREY); HILL LAND & CATTLE; HILL, CORY & AUBREY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SW","2","44.0 N","8.0 E","N","","","","","406415.0","4216134.0","38.088163","-106.067195","03/06/2025 13:36","https://dwr.state.co.us/Tools/Structures/2605972",
|
||||
"2605974","PERMIT 49981-F","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","49981-F","12062518/12062784","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","19","44.0 N","8.0 E","N","","","","","400858.0","4211714.0","38.047742","-106.129940","07/25/2008 09:14","https://dwr.state.co.us/Tools/Structures/2605974",
|
||||
"2606018","17CW3021 WELL NO 26","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","17CW3021","317993-, 87119-F","17107014","BAXTER, JOHN AND CATHERINE","RGWCD SD5","10/31/2024","10/31/2025","3","26","SAGUACHE","","","","NW","NE","12","43.0 N","7.0 E","N","","","","","398874.0","4205843.0","37.994619","-106.151719","07/26/2024 14:17","https://dwr.state.co.us/Tools/Structures/2606018",
|
||||
"2606025","SD5 SWSP WELL PERMIT 88103-F","SD5 SWSP WELL PERMIT 87850-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","87850-F, 88103-F","20-04464-08","RGWCD (IVERS, CHRIS)","RGWCD SD5","04/01/2023","10/31/2025","3","26","SAGUACHE","","","","SW","SE","12","44.0 N","7.0 E","N","","","","","399285.0","4214571.0","38.073313","-106.148266","07/28/2025 21:22","https://dwr.state.co.us/Tools/Structures/2606025",
|
||||
"2606026","PERMIT 87919-F","SOUTH 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","87919-F","23-06043-06","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2023","10/31/2025","3","26","SAGUACHE","","","","SW","NE","32","44.0 N","8.0 E","N","","","","","402174.0","4209138.0","38.024673","-106.114592","08/26/2024 14:12","https://dwr.state.co.us/Tools/Structures/2606026",
|
||||
"2606027","PERMIT 87920-F","NORTH 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","87920-F","22-06218-06","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2023","10/31/2025","3","26","SAGUACHE","","","","SW","NE","32","44.0 N","8.0 E","N","","","","","402170.0","4209170.0","38.024961","-106.114642","08/27/2024 08:32","https://dwr.state.co.us/Tools/Structures/2606027",
|
||||
"2705072","83CW014 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0014","26238-F, 319921-, 90436-F","06-12-1158","NAZARENUS STACK & WOMBACHER LLC (STACY BROWNHILL & WILLIAM WOMBACHER); STAREK, KAREL & ALICE","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","18","42.0 N","8.0 E","N","","","","","399266.0","4193347.0","37.882059","-106.145506","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705072",
|
||||
"2705237","81CW089 WELL NO N14","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, 81CW0089","24286-F","07-8-3014","STRIDE BANK (ANDERSON, PATRICK); TEMPLE, BEAU AND KIMBERLEY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","12","42.0 N","7.0 E","N","","","","","398090.0","4195073.0","37.897481","-106.159120","03/15/2021 14:35","https://dwr.state.co.us/Tools/Structures/2705237",
|
||||
"2705242","81CW089 WELL NO N19","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0019, 81CW0089","24287-F","GP13-5415-8","SMITH, KENNY D. AND DANA K.","RGWCD SD5","10/31/2013","10/31/2025","3","27","SAGUACHE","","","","NE","NE","13","42.0 N","7.0 E","N","","","","","398848.0","4194212.0","37.889807","-106.150380","08/02/2013 10:32","https://dwr.state.co.us/Tools/Structures/2705242",
|
||||
"2705255","W3984 WELL NO 01","PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3984","22521-F","07060395/07060933","COLORADO STATE LAND BOARD; MCCORMICK, JAMES R.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","26","42.0 N","7.0 E","N","","","","","396712.0","4190414.0","37.855343","-106.174124","03/15/2021 14:36","https://dwr.state.co.us/Tools/Structures/2705255",
|
||||
"2705266","W0643 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0643","4344-F","06-8-3873","REGESTER RANCH LLC (REGESTER, ROBERT); REGESTER, ROBERT","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","NW","NW","30","42.0 N","8.0 E","N","","","","","399200.0","4191290.0","37.863515","-106.145969","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705266",
|
||||
"2705267","W2249 WELL NO 01","RANCH PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2249","14121-R","09060722/09060750","ENSZ, JOEL R.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","7","42.0 N","8.0 E","N","","","","","399288.0","4194675.0","37.894028","-106.145441","12/05/2007 14:29","https://dwr.state.co.us/Tools/Structures/2705267",
|
||||
"2705268","W2249 WELL NO 02","NORTH RANCH ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2249","14122-R","07-10-1141","ENSZ, JOEL R.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","7","42.0 N","8.0 E","N","","","","","399320.0","4195445.0","37.900970","-106.145185","12/05/2007 14:44","https://dwr.state.co.us/Tools/Structures/2705268",
|
||||
"2705274","W0141 WELL NO 02","N DABNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0141","12235-F","19-07358-08","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, RYLAN L.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","33","42.0 N","8.0 E","N","","","","","402281.0","4188336.0","37.837231","-106.110549","03/15/2021 14:37","https://dwr.state.co.us/Tools/Structures/2705274",
|
||||
"2705277","W1360 WELL NO 04","TRIPLE L SW #","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1360","11864-R","06-8-3868","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","27","42.0 N","8.0 E","N","","","","","404013.0","4189727.0","37.849950","-106.091054","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705277",
|
||||
"2705278","W1360 WELL NO 03","TRIPLE L SW AR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, 22CW3021, W1360","11863-R, 89292-F","07-4-1021","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","27","42.0 N","8.0 E","N","","","","","404086.0","4189724.0","37.849931","-106.090224","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705278",
|
||||
"2705279","W1360 WELL NO 05","TRIPLE L SE AR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, 22CW3021, W1360","11865-R, 89293-F","06-6-1311","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SE","SW","27","42.0 N","8.0 E","N","","","","","404687.0","4189728.0","37.850030","-106.083394","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705279",
|
||||
"2705280","W1360 WELL NO 06","TRIPLE L BY HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, 22CW3021, W1360","4076-F, 89294-F","06-10-1284","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","27","42.0 N","8.0 E","N","","","","","404046.0","4190570.0","37.857550","-106.090790","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705280",
|
||||
"2705281","79CW046 WELL NO 01","RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0046","22413-F","19-04764-06","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","34","42.0 N","8.0 E","N","","","","","404360.0","4189306.0","37.846193","-106.087054","01/21/2003 00:00","https://dwr.state.co.us/Tools/Structures/2705281",
|
||||
"2705295","W1633 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1633","4589-F","23-00107-12, 25000066","SCHRECK, KALEE A.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","15","42.0 N","8.0 E","N","","","","","404915.0","4193766.0","37.886442","-106.081334","08/27/2009 11:56","https://dwr.state.co.us/Tools/Structures/2705295",
|
||||
"2705302","W0402 WELL NO 01","#18 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0402","5461-F","22-01672-10","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","19","42.0 N","9.0 E","N","","","","","408886.0","4191344.0","37.865022","-106.035877","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705302",
|
||||
"2705303","W0402 WELL NO 05","#19 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0402","11661-R","06-6-2015","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","19","42.0 N","9.0 E","N","","","","","408920.0","4192580.0","37.876164","-106.035646","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705303",
|
||||
"2705304","W0402 WELL NO 02","#13 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0022, W0402","11660-R, 325817-, 87467-F","06-8-4424, 22-024168, 22-024169, 23-09116-10","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","30","42.0 N","9.0 E","N","","","","","408917.0","4190152.0","37.854283","-106.035374","09/17/2007 14:59","https://dwr.state.co.us/Tools/Structures/2705304",
|
||||
"2705662","W0363 WELL NO 03","#20 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0402","11658-R","06-6-2013","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","20","42.0 N","9.0 E","N","","","","","411684.0","4192221.0","37.873201","-106.004178","01/13/2009 09:11","https://dwr.state.co.us/Tools/Structures/2705662",
|
||||
"2705849","W1633 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3000, W1633","","GP13-3991-8","ANDERSON, KEENAN L.; ANDERSON, KENNETH & DALLAS","RGWCD SD5","10/31/2013","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","35","42.0 N","7.0 E","N","","","","","395859.0","4189247.0","37.844729","-106.183650","07/25/2013 15:40","https://dwr.state.co.us/Tools/Structures/2705849",
|
||||
"2705975","W2274 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2274","20045-R","GP10-0937-8","ARROW CATTLE (ENSZ, WESLEY)","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","29","42.0 N","8.0 E","N","","","","","400790.0","4190569.0","37.857192","-106.127797","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705975",
|
||||
"2705976","W2274 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2274","36-WCB, 20045-S","23-09040-12, GP10-0936","ARROW CATTLE (ENSZ, WESLEY)","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","29","42.0 N","8.0 E","N","","","","","400714.0","4189701.0","37.849362","-106.128542","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705976",
|
||||
"2706027","W2471 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W2471","11218-F","06-10-1490","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","7","42.0 N","9.0 E","N","","","","","408990.0","4194569.0","37.894095","-106.035101","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706027",
|
||||
|
439
Data/SBD_Data/StructureList_SBD6.csv
Normal file
439
Data/SBD_Data/StructureList_SBD6.csv
Normal file
@ -0,0 +1,439 @@
|
||||
WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information,
|
||||
"2005002","W0018 WELL NO 01","QUIRCO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3000, W0018","20485-R, 20485-R-R","09081698, 09082332-PIVOT","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","36","37.0 N","9.0 E","N","","","","","416219.0","4139874.0","37.401867","-105.946616","05/12/2023 11:22","https://dwr.state.co.us/Tools/Structures/2005002",
|
||||
"2005003","W0072 WELL NO 01","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0007, W0072","7620-F","06-10-1551","BRADY, JOHN AND TRENNA; BRADY, STEVE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","10","37.0 N","8.0 E","N","","","","","404070.0","4146659.0","37.461836","-106.084744","06/25/2008 16:38","https://dwr.state.co.us/Tools/Structures/2005003",
|
||||
"2005004","W0078 WELL NO 02","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0078","14580-R","07-10-1008","BRADY, JOHN AND TRENNA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","15","37.0 N","8.0 E","N","","","","","403248.0","4145576.0","37.451990","-106.093895","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005004",
|
||||
"2005011","W1059 WELL NO 01","JACK RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1059","6284-F, 15135-F","02081359, 07-10-1104","MT VALLEY FARMS (SIMPSON, CLEAVE); SIMPSON, ALAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","27","38.0 N","10.0 E","N","","","","","423791.0","4152498.0","37.516297","-105.862379","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005011",
|
||||
"2005014","W0113 WELL NO 01","BUNNY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0113","1294-R","06081521","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","24","37.0 N","8.0 E","N","","","","","407253.0","4144513.0","37.442820","-106.048488","12/02/2020 17:56","https://dwr.state.co.us/Tools/Structures/2005014",
|
||||
"2005020","W1159 WELL NO 01","CHADWELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1159","11686-F, 6734-R, 39603-F","03-8-1971","RUTGERS, JAMES","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","22","38.0 N","9.0 E","N","","","","","413056.0","4153179.0","37.521485","-105.983919","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005020",
|
||||
"2005021","W0118 WELL NO 01","SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3044, W0118","8261-R, 9283-F","06-10-1446","RODNEY A. REINHARDT LIVING TRUST","RGWCD SD6","10/31/2009","10/31/2024","3","20","CONEJOS","","","SW","SW","SW","14","36.0 N","8.0 E","N","","","","","404764.0","4135050.0","37.357285","-106.075401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005021",
|
||||
"2005023","W0119 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3044, W0119","5772-F, 8264-R","23-02814-10","RODNEY A. REINHARDT LIVING TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","14","36.0 N","8.0 E","N","","","","","404798.0","4135907.0","37.365012","-106.075127","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005023",
|
||||
"2005027","W0125 WELL NO 01","ROBERTSON (SMALL)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0125","10484-R","09062763/10060108","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","35","37.0 N","9.0 E","N","","","","","414610.0","4140636.0","37.408587","-105.964882","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005027",
|
||||
"2005028","W1286 WELL NO 01","C-2 CARMEL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1286","11072-R","GP07-10-1074","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","NW","NW","SW","26","36.0 N","8.0 E","N","","","","","404753.0","4132496.0","37.334266","-106.075197","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005028",
|
||||
"2005031","W0132 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0132, W3942","20530-R, 20530-R-R","06-12-1079","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","9","36.0 N","9.0 E","N","","","","","412096.0","4137461.0","37.379738","-105.992907","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005031",
|
||||
"2005032","W1333 WELL NO 01","POWERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1333","12225-R","06-6-1698","FRANSEN, DALE; FRANSEN, DALE R. & KERI D.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","22","37.0 N","9.0 E","N","","","","","412951.0","4143487.0","37.434127","-105.983961","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005032",
|
||||
"2005034","W1336 WELL NO 03","FIRE/BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1336","1845-R, 2460-F","03062372/03062388","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","35","37.0 N","8.0 E","N","","","","","404867.0","4139925.0","37.401230","-106.074865","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005034",
|
||||
"2005036","W1355 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1355","77472-F","14-08169-8","MEADOWS, JAMES E. & CAROLYN KAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","26","37.0 N","9.0 E","N","","","","","415428.0","4142157.0","37.422371","-105.955814","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005036",
|
||||
"2005043","W1452 WELL NO 04","HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","23CW0018, W1452","13234-R, 13234-R-R, 90386-F","12062620/12062648 ","CALKIN, JOAN & MARVIN; CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","18","37.0 N","9.0 E","N","","","","","408156.0","4145478.0","37.451607","-106.038401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005043",
|
||||
"2005054","W0152 WELL NO 01","MATTHEWS 8S X 5E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0152","20401-R","18-07734","LARSON, DIEDRE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","14","37.0 N","8.0 E","N","","","","","405643.0","4145540.0","37.451913","-106.066817","09/17/2007 14:08","https://dwr.state.co.us/Tools/Structures/2005054",
|
||||
"2005055","W1533 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1533","21063-R","12062516/12062779","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","21","37.0 N","9.0 E","N","","","","","411321.0","4144215.0","37.440534","-106.002471","09/17/2007 14:08","https://dwr.state.co.us/Tools/Structures/2005055",
|
||||
"2005066","ALAMOSA ROSS ST WELL","PLANT WELL, W1788 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","4567-R, 4567-R-R","93040916000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","NW","NE","SW","10","37.0 N","10.0 E","N","","","","","423046.0","4146832.0","37.465170","-105.870215","12/02/2020 18:12","https://dwr.state.co.us/Tools/Structures/2005066",
|
||||
"2005067","ALAMOSA WEBER ST WELL","W1788 WELL NO 05, WEBER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","16665-F","SC06EA16000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","","NE","NW","4","37.0 N","10.0 E","N","","","","","421389.0","4148964.0","37.484245","-105.889178","12/02/2020 18:13","https://dwr.state.co.us/Tools/Structures/2005067",
|
||||
"2005070","W1815 WELL NO 01","B COLEMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1815","10752-R","06-8-4862","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","19","36.0 N","9.0 E","N","","","","","408018.0","4133535.0","37.343959","-106.038475","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005070",
|
||||
"2005073","W1831 WELL NO 01","HOMEPLACE SO. RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ROCK CREEK","00190392","","W1831","6996-R","05-10-1541","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","20","37.0 N","8.0 E","N","","","","","400826.0","4144010.0","37.437620","-106.121063","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005073",
|
||||
"2005074","W0184 WELL NO 02","WICKEY PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0184","11221-F","09062724/10060069","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","17","37.0 N","8.0 E","N","","","","","400863.0","4145989.0","37.455459","-106.120911","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005074",
|
||||
"2005075","W0185 WELL NO 01","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0185","6584-R","22-04539-10","VALDEZ, JOE T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NW","NW","24","36.0 N","8.0 E","N","","","","","406519.0","4134786.0","37.355084","-106.055554","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005075",
|
||||
"2005076","W1866 WELL NO 02","AVILA CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1866","12277-R","23-05453-08","FRANSEN, NATHAN D.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","17","36.0 N","9.0 E","N","","","","","409647.0","4134955.0","37.356917","-106.020260","02/07/2011 11:58","https://dwr.state.co.us/Tools/Structures/2005076",
|
||||
"2005106","W2511 WELL NO 01","CARMEL FIELD #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2511","1043-R, 1043-R-R","94-8-1354","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","24","36.0 N","8.0 E","N","","","","","407203.0","4134278.0","37.350574","-106.047768","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005106",
|
||||
"2005108","W2517 WELL NO 01","MOMS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2517","2600-F","12061194/12061373-100888","CROWTHER, LEON C.; CROWTHER, LEONA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","7","36.0 N","9.0 E","N","","","","","408835.0","4136595.0","37.371618","-106.029629","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005108",
|
||||
"2005110","W2544 WELL NO 02","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2544","473-R","07-8-1197","COBLENTZ, BENJAMIN A. & LAURA A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","31","37.0 N","8.0 E","N","","","","","398361.0","4140813.0","37.408542","-106.148482","01/16/2009 10:56","https://dwr.state.co.us/Tools/Structures/2005110",
|
||||
"2005117","W0261 WELL NO 01","HAMILTON RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","4508-R, 4508-R-R, 88024-F","06-10-1187","HAMILTON, JENSON T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","34","37.0 N","8.0 E","N","","","","","403244.0","4140589.0","37.407046","-106.093286","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005117",
|
||||
"2005118","W0261 WELL NO 02","#12 SOUTH HAMILTON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","4509-R","15-09734-10","HAMILTON, JENSON T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","34","37.0 N","8.0 E","N","","","","","403179.0","4139945.0","37.401235","-106.093936","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005118",
|
||||
"2005128","W0323 WELL NO 01","RES #2,1 DIC, RES. #12 & 13 DIC","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0323","4524-R, 8964-F","11061485/11061653","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","34","37.0 N","8.0 E","N","","","","","403172.0","4140744.0","37.408435","-106.094120","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005128",
|
||||
"2005129","W0323 WELL NO 04","LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0323","10713-R, 10713-R-R, 50702-F","GP98-8-2021N","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","26","37.0 N","8.0 E","N","","","","","405655.0","4141879.0","37.418921","-106.066213","01/06/2009 12:46","https://dwr.state.co.us/Tools/Structures/2005129",
|
||||
"2005130","W0325 WELL NO 01","HWY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0325","11890-F, 14702-R","02081355/12200763","NORTON, MATT; NORTON, MATT, JORDAN & BRENNON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","35","37.0 N","8.0 E","N","","","","","404815.0","4140735.0","37.408525","-106.075557","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005130",
|
||||
"2005139","W0346 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0346","12865-R","12061241/12061361","TRUJILLO, WAYNE T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","13","37.0 N","8.0 E","N","","","","","406459.0","4145360.0","37.450374","-106.057570","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005139",
|
||||
"2005143","ALAMOSA 21ST STREET WELL","PERMIT 16667-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3526","16667-F","93040316000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","NW","NE","SW","15","37.0 N","10.0 E","N","","","","","423026.0","4145092.0","37.449486","-105.870260","12/02/2020 18:15","https://dwr.state.co.us/Tools/Structures/2005143",
|
||||
"2005146","W0364 WELL NO 01","LEO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0364","20710-R","23-03176-12","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NE","SW","20","36.0 N","9.0 E","N","","","","","410446.0","4133714.0","37.345810","-106.011089","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005146",
|
||||
"2005147","W0368 WELL NO 01","DANIELS WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0368","17332-R","06-8-2110","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","23","37.0 N","8.0 E","N","","","","","404830.0","4143175.0","37.430516","-106.075702","06/07/2022 15:25","https://dwr.state.co.us/Tools/Structures/2005147",
|
||||
"2005151","W0394 WELL NO 01","RYKER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0394","11129-R","12230508","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","7","36.0 N","9.0 E","N","","","","","408007.0","4136621.0","37.371770","-106.038982","09/17/2007 14:06","https://dwr.state.co.us/Tools/Structures/2005151",
|
||||
"2005188","W0567 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0567","8661-R, 8661-R","09061957/09061978","BRADY, MICHAEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","22","37.0 N","8.0 E","N","","","","","404017.0","4143985.0","37.437732","-106.084995","02/24/2005 15:12","https://dwr.state.co.us/Tools/Structures/2005188",
|
||||
"2005189","W0575 WELL NO 01","#4 S HWY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0575","1686-R, 1686-R-R","03122944","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","19","36.0 N","9.0 E","N","","","","","408013.0","4134195.0","37.349907","-106.038613","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005189",
|
||||
"2005190","W0575 WELL NO 03","#3-HWY-S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0575","5030-F, 1688-R","12062507/12062762","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","18","36.0 N","9.0 E","N","","","","","408014.0","4135035.0","37.357477","-106.038706","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005190",
|
||||
"2005194","W0650 WELL NO 01","SANDOVALS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0650","15486-R","05-8-3950","FRANSEN, DALE R. & KERI D.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","22","37.0 N","9.0 E","N","","","","","413028.0","4143105.0","37.430692","-105.983046","09/17/2007 14:01","https://dwr.state.co.us/Tools/Structures/2005194",
|
||||
"2005200","W0735 WELL NO 04","EAST CODY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0735","10483-R","10061971/10061996","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","33","37.0 N","9.0 E","N","","","","","412514.0","4139773.0","37.400614","-105.988460","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005200",
|
||||
"2005204","W0794 WELL NO 02","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0794","10202-R","07-8-1237","SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","SW","32","37.0 N","10.0 E","N","","","","","419864.0","4139767.0","37.401225","-105.905426","09/17/2007 14:09","https://dwr.state.co.us/Tools/Structures/2005204",
|
||||
"2005209","W0837 WELL NO 01","T4: #5 WAVERLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0837","1749-R","06-10-1184","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","27","37.0 N","8.0 E","N","","","","","403983.0","4141562.0","37.415892","-106.085064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005209",
|
||||
"2005210","W0837 WELL NO 02","T4 #1; RES WELL (N. OF TED)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0837","11194-R","06-10-1183","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","29","37.0 N","8.0 E","N","","","","","400012.0","4142371.0","37.422762","-106.130041","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005210",
|
||||
"2005317","82CW0148","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0148, W0895","10259-R","12062517/12062776","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","20","37.0 N","9.0 E","N","","","","","410501.0","4144275.0","37.440995","-106.011746","05/20/2024 11:46","https://dwr.state.co.us/Tools/Structures/2005317",
|
||||
"2005318","W0898 WELL NO 01","HOME FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0898","20945-R","22-05599-10","SCHNEIDER, CURTIS J. AND CANDACE G.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","34","37.0 N","9.0 E","N","","","","","413328.0","4140642.0","37.408522","-105.979366","09/17/2007 14:04","https://dwr.state.co.us/Tools/Structures/2005318",
|
||||
"2005319","W0923 WELL NO 02","MIDDLEMIST BIG RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0923","16012-R","07-10-1024","MIDDLEMIST FARMS (MIDDLEMIST, ROBERT)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NE","14","36.0 N","8.0 E","N","","","","","406388.0","4135888.0","37.365002","-106.057172","09/17/2007 14:04","https://dwr.state.co.us/Tools/Structures/2005319",
|
||||
"2005321","W0954 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0954","11487-R, 11488-R, 11489-R, 870-F-R","06-6-2097","WIDGER, KAREN; WIDGER, KAREN L. & MICHAEL JAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","15","37.0 N","8.0 E","N","","","","","403224.0","4145180.0","37.448419","-106.094114","09/17/2007 11:41","https://dwr.state.co.us/Tools/Structures/2005321",
|
||||
"2005369","W0539 WELL NO 01","FLOW - BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0018, W0539, W3331","27145-F, 1528-R","10061970/10061991, 10063531/10063710","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","29","37.0 N","9.0 E","N","","","","","410473.0","4141775.0","37.418462","-106.011760","09/17/2007 14:03","https://dwr.state.co.us/Tools/Structures/2005369",
|
||||
"2005385","79CW018 WELL NO 01R","EAST CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0018","22519-F-R, 22519-F-R","09062762/10061624","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","NE","35","37.0 N","9.0 E","N","","","","","415613.0","4140559.0","37.407985","-105.953541","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005385",
|
||||
"2005386","W0116 WELL NO 01","BIG PUMP WELL - JONES PL.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0063, W0116","7252-R","06-10-1549","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","16","37.0 N","8.0 E","N","","","","","401698.0","4144775.0","37.444608","-106.111310","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005386",
|
||||
"2005389","ALAMOSA HIGHWAY 17 WELL","HIGHWAY 17 WELL, W3214-78 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3214, W3214-78","20377-F","93040716000","EAST ALAMOSA WATER AND SEWER DISTICT; SANCHEZ, ROY","RGWCD SD6","10/31/1997","10/31/2025","3","20","ALAMOSA","","","SE","SE","NE","3","37.0 N","10.0 E","N","","","","","424151.0","4148501.0","37.480303","-105.857893","12/02/2020 18:16","https://dwr.state.co.us/Tools/Structures/2005389",
|
||||
"2005390","ALAMOSA BRUSH WELL","BRUSH WELL, W3214-78 WELL NO 02","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3214, W3214-78","20376-F","C601E216000","EAST ALAMOSA WATER AND SEWER DISTICT; SANCHEZ, ROY","RGWCD SD6","10/31/1997","10/31/2025","3","20","ALAMOSA","","","NE","NE","NE","11","37.0 N","10.0 E","N","","","","","425491.0","4147504.0","37.471427","-105.842638","12/02/2020 18:19","https://dwr.state.co.us/Tools/Structures/2005390",
|
||||
"2005395","W1293 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1293, W3916","13218-R","12062543/04201662","CALKIN, JOAN & MARVIN; CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","24","37.0 N","8.0 E","N","","","","","407234.0","4143161.0","37.430634","-106.048532","09/17/2007 14:21","https://dwr.state.co.us/Tools/Structures/2005395",
|
||||
"2005414","W0482 WELL NO 01","#3-RES-S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W3866","2399-F","08230942/042015004223","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","18","36.0 N","9.0 E","N","","","","","408829.0","4134986.0","37.357116","-106.029499","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005414",
|
||||
"2005415","W3866 WELL NO 01","ESPERANZA #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3866","6798-R, 6798-R-R, 6798-R-R","12062541/12062719","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","17","36.0 N","9.0 E","N","","","","","410058.0","4136132.0","37.367565","-106.015762","02/04/2013 14:43","https://dwr.state.co.us/Tools/Structures/2005415",
|
||||
"2005420","W2431 WELL NO 02","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0013, W2431, W3951","","07-4-1027","COLE-HATCHARD, STEPHEN J. & ANN M.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","10","38.0 N","11.0 E","N","","","","","432388.0","4156136.0","37.549756","-105.765440","02/03/2021 15:33","https://dwr.state.co.us/Tools/Structures/2005420",
|
||||
"2005442","W1782 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0075, W1782","6982-F, 6982-F-R","12-04436-04","ROCKY MOUNTAIN HOME BUILDERS LLC (YODER, MATT & CHESTER)","RGWCD SD6","10/31/2013","10/31/2025","3","20","ALAMOSA","","","SW","NE","SE","13","37.0 N","9.0 E","N","","","","","417462.0","4145034.0","37.448483","-105.933151","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005442",
|
||||
"2005486","W1030 WELL NO 01","HILT PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1030, W3751","22648-F, 22648-F-R","06-8-4923","CHRISTENSEN, BRYAN & VIRGINIA; TRATOS-HILT FAMILY TRUST (TRATOS, MICHELE)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","20","37.0 N","8.0 E","N","","","","","400457.0","4144032.0","37.437779","-106.125236","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005486",
|
||||
"2005600","82CW088 WELL NO 03R","TONY 1,2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0088","14704-R-R, 14704-R-R","11060529/11060636","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","28","37.0 N","8.0 E","N","","","","","402367.0","4141816.0","37.418012","-106.103356","03/06/2009 16:11","https://dwr.state.co.us/Tools/Structures/2005600",
|
||||
"2005805","83CW004 WELL NO 01R","CONFINED","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0004","25792-F-R, 45498-F","","SKY LINE HOSPITALITY","RGWCD SD6","10/31/2009","10/31/2020","3","20","ALAMOSA","","","SE","NE","NE","6","37.0 N","10.0 E","N","","","","","419241.0","4149014.0","37.484510","-105.913477","10/11/2023 15:13","https://dwr.state.co.us/Tools/Structures/2005805",
|
||||
"2005873","84CW027 WELL NO 02R","TRAILER HOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0027","7253-R-R","05-10-1551","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","21","37.0 N","8.0 E","N","","","","","401721.0","4144376.0","37.441014","-106.110997","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005873",
|
||||
"2005874","W1831 WELL NO 03","STANTON'S OLD HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1831","3860-F","07-10-1069","JOHNSON, SHIRLEY E.; JOHNSON, STANTON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","17","37.0 N","8.0 E","N","","","","","400043.0","4144794.0","37.444602","-106.130019","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005874",
|
||||
"2005875","W1831 WELL NO 04","IVANS RES. WELL - HOME PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1831","3702-F","06-8-4922","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","17","37.0 N","8.0 E","N","","","","","400819.0","4144791.0","37.444658","-106.121247","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005875",
|
||||
"2005883","W1460 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0014, W1460","10636-R","10061955/10062043","HEMMERLING, BRETT & JONI","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NE","SE","9","39.0 N","7.0 E","N","","","","","393367.0","4166518.0","37.639624","-106.208632","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005883",
|
||||
"2005917","85CW063 WELL NO 01R","HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","85CW0063","12075-F, 12075-F-R","07-8-1044","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","6","36.0 N","9.0 E","N","","","","","408068.0","4139026.0","37.393451","-106.038593","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005917",
|
||||
"2005925","82CW128 WELL NO 01R","OUT WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0128","1227-R-R","12204460/12062680","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","29","39.0 N","7.0 E","N","","","","","391648.0","4161721.0","37.596195","-106.227401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005925",
|
||||
"2006000","80CW100 WELL FWS23-20A","MUMM WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0100, 93CW0028","6420-R","24-8-1011","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","03/31/1993","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","22","37.0 N","11.0 E","N","","","","","432310.0","4142957.0","37.430970","-105.765110","12/02/2020 18:21","https://dwr.state.co.us/Tools/Structures/2006000",
|
||||
"2006071","80CW116 WELL 18-3-16A&P","#60-18-3-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0116","9186-F","01-10-1092N, GP12-5260-12","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","2","37.0 N","8.0 E","N","","","","","405550.0","4147951.0","37.473632","-106.068177","12/02/2020 18:22","https://dwr.state.co.us/Tools/Structures/2006071",
|
||||
"2006073","80CW106 WELL 6-1-16 A&P","#9-6-1-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0106","12661-F, 8808-F","25-01834-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","31","38.0 N","8.0 E","N","","","","","399251.0","4151189.0","37.502147","-106.139846","12/02/2020 18:24","https://dwr.state.co.us/Tools/Structures/2006073",
|
||||
"2006101","80CW121 WELL 23-6-16 A&P","#7-23-6-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0121","285-R, 12660-F","24100742","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","10","37.0 N","8.0 E","N","","","","","404099.0","4147160.0","37.466354","-106.084481","12/02/2020 18:25","https://dwr.state.co.us/Tools/Structures/2006101",
|
||||
"2006105","80CW114 WELL 16-1-16 A&P","#50-16-1-16A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0114","2480-F","23-01761-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","4","37.0 N","8.0 E","N","","","","","401652.0","4148015.0","37.473802","-106.112262","12/02/2020 18:26","https://dwr.state.co.us/Tools/Structures/2006105",
|
||||
"2006122","80CW112 WELL NO 14-1-16P","#10-14-1-16P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0112","3776-F","GP13-0961-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","6","37.0 N","8.0 E","N","","","","","398436.0","4149597.0","37.487711","-106.148845","12/02/2020 18:27","https://dwr.state.co.us/Tools/Structures/2006122",
|
||||
"2006130","80CW112 WELL 14-10-16A&P","#4-14-10-16A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0112","12658-F, 443-R","07-10-1447","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","6","37.0 N","8.0 E","N","","","","","399249.0","4148005.0","37.473453","-106.139432","12/02/2020 18:28","https://dwr.state.co.us/Tools/Structures/2006130",
|
||||
"2006181","80CW107 WELL 7-2-16 A&P","#51-7-2-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0107","2481-F","GP94-10-1117N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","32","38.0 N","8.0 E","N","","","","","400419.0","4149620.0","37.488134","-106.126421","12/02/2020 18:29","https://dwr.state.co.us/Tools/Structures/2006181",
|
||||
"2006225","80CW117 WELL NO 19-2-12P","#12-19-2-12P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0117","19227-F","98-6-1250","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","12","37.0 N","7.0 E","N","","","","","397019.0","4146711.0","37.461546","-106.164466","12/02/2020 18:30","https://dwr.state.co.us/Tools/Structures/2006225",
|
||||
"2006228","80CW117 WELL NO 19-6-16P","#56-19-6-16P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0117","3896-F","GP01-10-1300N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","12","37.0 N","7.0 E","N","","","","","397600.0","4146450.0","37.459258","-106.157862","12/02/2020 18:31","https://dwr.state.co.us/Tools/Structures/2006228",
|
||||
"2006236","80CW117 WELL NO 19-1-12P","#2-19-1-120","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0117","284-R","07-8-3129","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","12","37.0 N","7.0 E","N","","","","","396819.0","4147694.0","37.470382","-106.166865","12/02/2020 18:32","https://dwr.state.co.us/Tools/Structures/2006236",
|
||||
"2006257","MV BATTERSON WELL","W0847 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0847","4551-R, 4551-R-R","02092576","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SE","36","39.0 N","7.0 E","N","","","","","398383.0","4159284.0","37.575002","-106.150785","12/02/2020 18:34","https://dwr.state.co.us/Tools/Structures/2006257",
|
||||
"2006258","W0847 WELL NO 02","JACKSON STREET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0847","4552-R","23080167","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","NE","SE","SW","31","39.0 N","8.0 E","N","","","","","399227.0","4159511.0","37.577141","-106.141260","12/02/2020 18:35","https://dwr.state.co.us/Tools/Structures/2006258",
|
||||
"2006259","MV BROADWAY ST WELL","W0847 WELL NO 03","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0847","4553-R","08093041","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","31","39.0 N","8.0 E","N","","","","","398569.0","4160064.0","37.582052","-106.148787","12/02/2020 18:36","https://dwr.state.co.us/Tools/Structures/2006259",
|
||||
"2006260","MV SHERMAN ST WELL","W0847 WELL NO 04","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0847","13163-F","24100567","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","32","39.0 N","8.0 E","N","","","","","400951.0","4159225.0","37.574750","-106.121700","12/02/2020 18:37","https://dwr.state.co.us/Tools/Structures/2006260",
|
||||
"2006261","88CW013 WELL NO 08","PROSPECT STREET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","88CW0013","24019-F, 33733-F","052019004291","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1989","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","36","39.0 N","7.0 E","N","","","","","397716.0","4160071.0","37.582021","-106.158447","12/02/2020 18:38","https://dwr.state.co.us/Tools/Structures/2006261",
|
||||
"2006296","W1802 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","14CW0002, 87CW0035, W1802","5871-F, 5871-F-R","08223646/08062005","FRANCIS, ALBERT & KATRINA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","7","37.0 N","9.0 E","N","","","","","408103.0","4147060.0","37.465859","-106.039198","02/07/2011 11:59","https://dwr.state.co.us/Tools/Structures/2006296",
|
||||
"2006316","ALAMOSA 12TH ST WELL","W1788 WELL NO 02","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","4568-R, 4568-R-R","93040516000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","11","37.0 N","10.0 E","N","","","","","424233.0","4146258.0","37.460094","-105.856735","12/02/2020 18:49","https://dwr.state.co.us/Tools/Structures/2006316",
|
||||
"2006317","ALAMOSA COLE PARK WELL","W1778 WELL NO 03","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","02CW0043, W1778","4569-R","93040616000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","10","37.0 N","10.0 E","N","","","","","423646.0","4147367.0","37.470041","-105.863487","12/02/2020 18:50","https://dwr.state.co.us/Tools/Structures/2006317",
|
||||
"2006406","ALAMOSA GOLF COURSE WELL","GOLF COURSE, W1788 WELL NO 06","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1778","13419-F, 13419-F-R","93040816000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","NE","NW","SW","3","37.0 N","10.0 E","N","","","","","422947.0","4148447.0","37.479717","-105.871504","12/02/2020 18:51","https://dwr.state.co.us/Tools/Structures/2006406",
|
||||
"2006408","ALAMOSA MURPHY ST WELL","MURPHY WELL, W1788 WELL NO 04","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","4345-F","93040416000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","SE","NE","SW","4","37.0 N","10.0 E","N","","","","","421760.0","4148200.0","37.477391","-105.884901","12/02/2020 18:52","https://dwr.state.co.us/Tools/Structures/2006408",
|
||||
"2006641","92CW002 WELL NO 01R","FIELD 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","92CW0002","1349-R-R","23-05832","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","26","37.0 N","8.0 E","N","","","","","405234.0","4141903.0","37.419094","-106.070973","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006641",
|
||||
"2006680","92CW048 WELL NO 01RA","ROBERTSON (BIG)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","92CW0048","37970-F","12062638/12062664","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","35","37.0 N","9.0 E","N","","","","","414600.0","4140531.0","37.407640","-105.964982","01/28/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006680",
|
||||
"2006690","W1929 WELL NO 02","HOT POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1929","","00-10-1224","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/1994","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SE","35","39.0 N","8.0 E","N","","","","","406024.0","4159486.0","37.577634","-106.064293","12/02/2020 19:23","https://dwr.state.co.us/Tools/Structures/2006690",
|
||||
"2008079","80CW110 WELL FWS11-1-16P","#48-11-1-16 P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0110","6153-R, 6153-R-R","07-4-1176","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","31","38.0 N","9.0 E","N","","","","","408157.0","4150916.0","37.500616","-106.039068","12/02/2020 19:24","https://dwr.state.co.us/Tools/Structures/2008079",
|
||||
"2008081","80CW111 WELL FWS13-1-16P","#11-13-1-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0111","11863-F-R, 286-R","07-10-1450","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SW","1","37.0 N","7.0 E","N","","","","","397052.0","4148816.0","37.480519","-106.164388","12/02/2020 19:25","https://dwr.state.co.us/Tools/Structures/2008081",
|
||||
"2008101","80CW113 WELL FWS15-2-16A&P","#5-15-2-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0113","444-R, 12657-F","01-10-1312N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","6","37.0 N","8.0 E","N","","","","","400043.0","4148818.0","37.480866","-106.130565","03/19/2021 15:22","https://dwr.state.co.us/Tools/Structures/2008101",
|
||||
"2008102","80CW113 WELL FWS15-20-16AP","#1-15-20-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0113","283-R, 12659-F-R","94-10-1116N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","5","37.0 N","8.0 E","N","","","","","400844.0","4148033.0","37.473878","-106.121401","12/02/2020 19:26","https://dwr.state.co.us/Tools/Structures/2008102",
|
||||
"2008104","80CW118 WELL FWS20-4-16P","#3-20-4-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0118","442-R","24-07510-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","7","37.0 N","8.0 E","N","","","","","398454.0","4147212.0","37.466219","-106.148312","12/02/2020 19:27","https://dwr.state.co.us/Tools/Structures/2008104",
|
||||
"2008105","80CW118 WELL FWS20-7-20P","#61=-20-7-20P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0118","1717-R","01-10-1336N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","7","37.0 N","8.0 E","N","","","","","398522.0","4146392.0","37.458837","-106.147430","12/02/2020 19:28","https://dwr.state.co.us/Tools/Structures/2008105",
|
||||
"2008106","80CW118 WELLFWS20-22-16P","#57-20-22-16P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0118","20689-R","25-03760-08","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","7","37.0 N","8.0 E","N","","","","","399241.0","4146396.0","37.458952","-106.139303","12/02/2020 19:29","https://dwr.state.co.us/Tools/Structures/2008106",
|
||||
"2008112","80CW119 WELLFWS21-49-16P","#62-21-49-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0119","22402-F","GP02-10-1335","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","8","37.0 N","8.0 E","N","","","","","400062.0","4146422.0","37.459275","-106.130025","12/02/2020 19:30","https://dwr.state.co.us/Tools/Structures/2008112",
|
||||
"2008123","80CW120WELLFWS22-3-16A&P","#47-22-3-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0120","551-R, 12664-F","07-12-1118","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","9","37.0 N","8.0 E","N","","","","","401737.0","4147190.0","37.466376","-106.111191","12/02/2020 19:31","https://dwr.state.co.us/Tools/Structures/2008123",
|
||||
"2008124","80CW120WELLFWS22-8-16A&P","#49-22-8-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0120","12662-F, 2479-F","01-06244-8","ALAMOSA WILDLIFE REFUGE; UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SW","SE","9","37.0 N","8.0 E","N","","","","","402652.0","4146426.0","37.459588","-106.100745","12/02/2020 19:32","https://dwr.state.co.us/Tools/Structures/2008124",
|
||||
"2008327","W0029 WELL NO 01","SCHNEIDER, N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0029","874-R","02081361/02081385","SCHNEIDER, GERRET J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","27","37.0 N","9.0 E","N","","","","","413759.0","4142298.0","37.423487","-105.974690","04/17/2020 09:06","https://dwr.state.co.us/Tools/Structures/2008327",
|
||||
"2008329","W0032 WELL NO 01","COVERED WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6582-R","23-08475-12","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","1","36.0 N","8.0 E","N","","","","","406402.0","4138307.0","37.386805","-106.057320","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008329",
|
||||
"2008331","W0032 WELL NO 03","CARMEL 2 (SW 80)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6581-R","12230555/10061031","PAINE, JAMES; PAINE, NATALIE; WILHELM, CHRISTOPHER","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","14","36.0 N","8.0 E","N","","","","","405934.0","4136195.0","37.367723","-106.062337","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008331",
|
||||
"2008332","W0032 WELL NO 05","FIELD #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6583-R","05061446/05061482","FAUCETTE, TYLER & ROCHELLE; GREEN MOUNTAIN FARMS, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","11","36.0 N","8.0 E","N","","","","","405576.0","4137482.0","37.379286","-106.066544","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008332",
|
||||
"2008334","W0032 WELL NO 07","FIELD #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6580-R","14-11189-10","FAUCETTE, TYLER & ROCHELLE; GREEN MOUNTAIN FARMS, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SE","2","36.0 N","8.0 E","N","","","","","405581.0","4138288.0","37.386550","-106.066590","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008334",
|
||||
"2008337","W0034 WELL NO 01","JACKS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0034","20714-R","06-6-2098","SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","NW","33","37.0 N","10.0 E","N","","","","","421427.0","4140518.0","37.408127","-105.887849","09/17/2007 14:23","https://dwr.state.co.us/Tools/Structures/2008337",
|
||||
"2008339","W0035 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0035","21053-S","09062729/10060151","GERSINK, KENT; GESINK, ELBERT & MARLA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","32","37.0 N","9.0 E","N","","","","","410468.0","4140692.0","37.408701","-106.011685","09/17/2007 13:52","https://dwr.state.co.us/Tools/Structures/2008339",
|
||||
"2008369","W0066 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0066","3276-F","06-6-2152","WOLF FAMILY TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","38.0 N","10.0 E","N","","","","","420245.0","4153323.0","37.523433","-105.902590","06/20/2022 20:16","https://dwr.state.co.us/Tools/Structures/2008369",
|
||||
"2008393","W0085 WELL NO 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0085","11826-F","GP06-10-1350","FRANSEN, DUANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","SW","21","37.0 N","9.0 E","N","","","","","411317.0","4143811.0","37.436892","-106.002467","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008393",
|
||||
"2008394","W0085 WELL NO. 2","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0085","20664-F, 20664-F-R","01-8-1803","FRANSEN, DUANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","21","37.0 N","9.0 E","N","","","","","412121.0","4143480.0","37.433986","-105.993341","03/26/2009 09:57","https://dwr.state.co.us/Tools/Structures/2008394",
|
||||
"2008487","W0107 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0107","10268-R","22-05513","SKADBERG, ADAM","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SE","11","36.0 N","8.0 E","N","","","","","405575.0","4136910.0","37.374130","-106.066482","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008487",
|
||||
"2008492","W0109 WELL NO 02","VANDEREYK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0109","8573-R, 8573-R-R","06-12-1113","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","12","36.0 N","8.0 E","N","","","","","407189.0","4137495.0","37.379566","-106.048329","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008492",
|
||||
"2008493","W0109 WELL NO 03","#2 SMALL (VANDER EYK)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3027, W0109","8574-R","07-8-1239","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2024","3","20","CONEJOS","","","SW","SW","NW","12","36.0 N","8.0 E","N","","","","","406395.0","4137457.0","37.379143","-106.057291","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008493",
|
||||
"2008494","W0109 WELL NO 04","#2 BIG (VANDER EYK)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0109","8575-R, 8575-R-R","07-12-1026","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","12","36.0 N","8.0 E","N","","","","","406449.0","4137454.0","37.379122","-106.056681","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008494",
|
||||
"2008496","W0109 WELL NO 07","DADS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0109","10270-R","22-02290-10","ARCHER, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SE","13","36.0 N","8.0 E","N","","","","","407198.0","4135060.0","37.357621","-106.047922","09/17/2007 14:21","https://dwr.state.co.us/Tools/Structures/2008496",
|
||||
"2008498","W0114 WELL NO 01","TNT #1 & #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0114","13115-R","05201410","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","24","37.0 N","7.0 E","N","","","","","397643.0","4143207.0","37.430037","-106.156925","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008498",
|
||||
"2008506","W0120 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0120","8263-R","06-10-1109","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","15","36.0 N","8.0 E","N","","","","","403955.0","4135863.0","37.364528","-106.084640","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008506",
|
||||
"2008507","W0120 WELL NO 02","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3044, W0120","8262-R-R, 87536-F","06-8-3844","RODNEY A. REINHARDT LIVING TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","11","36.0 N","8.0 E","N","","","","","404781.0","4136691.0","37.372076","-106.075420","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008507",
|
||||
"2008508","W0122 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0122","7053-R, 173-WCB","12061215/12061393","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","10","38.0 N","8.0 E","N","","","","","404308.0","4156914.0","37.554279","-106.083388","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008508",
|
||||
"2008515","W0122 WELL NO 09","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0122","11655-F","09060712/09060744","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","15","38.0 N","8.0 E","N","","","","","403440.0","4155965.0","37.545636","-106.093089","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008515",
|
||||
"2008523","W0127 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0127","1052-R","052018002648/052018002654","WASHBURN LIVING TRUST (WASHBURN, JEFFREY)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","35","37.0 N","8.0 E","N","","","","","404810.0","4140327.0","37.404847","-106.075561","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008523",
|
||||
"2008533","W0135 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0135","7-R","07-10-1093","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","22","36.0 N","8.0 E","N","","","","","403941.0","4134414.0","37.351468","-106.084610","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008533",
|
||||
"2008534","W0135 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0135","8-R-R","77-8-130M","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SE","15","36.0 N","8.0 E","N","","","","","404020.0","4135146.0","37.358073","-106.083813","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008534",
|
||||
"2008557","W0144 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0144","13904-R, 13904-R-R","24-00689-08","MARTIN CATTLE CO. (MARTIN, DWIGHT)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","36.0 N","9.0 E","N","","","","","410468.0","4135766.0","37.364306","-106.011088","10/28/2020 15:34","https://dwr.state.co.us/Tools/Structures/2008557",
|
||||
"2008569","W0149 WELL NO 01","SCHNEIDER, S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0149","20916-R","14-11363-10","SCHNEIDER, CURTIS J. AND CANDACE G.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","23","37.0 N","9.0 E","N","","","","","414606.0","4144217.0","37.440861","-105.965341","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008569",
|
||||
"2008588","W0168 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0007, W0168","20402-R","07-10-1009","BRADY, JOHN AND TRENNA; BRADY, STEVE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","11","37.0 N","8.0 E","N","","","","","404907.0","4146360.0","37.459228","-106.075243","06/25/2008 16:46","https://dwr.state.co.us/Tools/Structures/2008588",
|
||||
"2008589","W0171 WELL NO 01","SO. RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0171","20750-R","06-8-4422","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","19","37.0 N","8.0 E","N","","","","","398637.0","4143162.0","37.429741","-106.145686","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008589",
|
||||
"2008618","W0184 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0184","10650-R","11061483/11061579","HAUGEN, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","36","38.0 N","7.0 E","N","","","","","397417.0","4150017.0","37.491383","-106.160427","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008618",
|
||||
"2008619","W0185 WELL NO 02","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0185","6576-R","11061704","VALDEZ, JOE T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NW","SW","24","36.0 N","8.0 E","N","","","","","406773.0","4133900.0","37.347125","-106.052575","02/06/2026 12:52","https://dwr.state.co.us/Tools/Structures/2008619",
|
||||
"2008650","W0212 WELL NO 01","SOW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0212","503-R","04060830/03062408","KOLB, BILL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","21","38.0 N","8.0 E","N","","","","","402524.0","4154331.0","37.530814","-106.103239","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008650",
|
||||
"2008673","W0235 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0235","11086-R, 339422-","","PETERSON, MICHAEL & AARON","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NE","36","36.0 N","9.0 E","N","","","","","417711.0","4130998.0","37.322004","-105.928775","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008673",
|
||||
"2008674","W0235 WELL NO 02","ROAD Z WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0235","11087-R","06-8-2775","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","31","36.0 N","9.0 E","N","","","","","408065.0","4130181.0","37.313736","-106.037529","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008674",
|
||||
"2008685","W0242 WELL NO 01","#63-24-1-16A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0242","2379-F","GP09-1900","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","1","37.0 N","8.0 E","N","","","","","407309.0","4148107.0","37.475216","-106.048307","12/02/2020 19:35","https://dwr.state.co.us/Tools/Structures/2008685",
|
||||
"2008691","W0244 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0244","8734-R","12-10793-04","VALDEZ, JOE I.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","29","37.0 N","9.0 E","N","","","","","409678.0","4142052.0","37.420881","-106.020777","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008691",
|
||||
"2008694","W0247 WELL NO 01","#64 - PARMA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","8632-R","04-8-1126","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","23","38.0 N","8.0 E","N","","","","","405135.0","4154294.0","37.530753","-106.073688","12/02/2020 19:36","https://dwr.state.co.us/Tools/Structures/2008694",
|
||||
"2008695","W0247 WELL NO 02","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","8633-R","20-05568-10","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406579.0","4154224.0","37.530270","-106.057339","12/02/2020 19:37","https://dwr.state.co.us/Tools/Structures/2008695",
|
||||
"2008696","W0247 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","2294-F","08230909","CLARK, PETE & LEAH","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","24","38.0 N","8.0 E","N","","","","","407364.0","4153503.0","37.523851","-106.048365","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008696",
|
||||
"2008699","W0247 WELL NO 07","CHIOVITTI","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","4288-F","07-10-1026","CHIOVITTI, NICK; JOHNSON, SHANE R. & ASHLEY C.; JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","30","38.0 N","8.0 E","N","","","","","399241.0","4152015.0","37.509590","-106.140072","06/20/2022 20:18","https://dwr.state.co.us/Tools/Structures/2008699",
|
||||
"2008701","W0247 WELL NO 10","GET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","38-WCB, 1765-R","06-8-3877","KOLB, BILL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","21","38.0 N","8.0 E","N","","","","","401710.0","4153201.0","37.520544","-106.112299","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008701",
|
||||
"2008702","W0250 WELL NO 01","NEW COOPER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0250","20901-R, 20901-R-R","18-05373-08","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2018","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","3","36.0 N","8.0 E","N","","","","","403176.0","4139117.0","37.393773","-106.093862","01/31/2019 08:16","https://dwr.state.co.us/Tools/Structures/2008702",
|
||||
"2008713","W0261 WELL NO 03","T4#6: #6 PIVOT WAVERLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","12556-R","GP13-4851-8","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","34","37.0 N","8.0 E","N","","","","","403974.0","4140737.0","37.408456","-106.085059","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008713",
|
||||
"2008714","W0261 WELL NO 04","#7 HOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","","5374152","HAMILTON, JENSON T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","SE","34","37.0 N","8.0 E","N","","","","","404741.0","4140582.0","37.407138","-106.076373","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008714",
|
||||
"2008755","W0284 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0284","1494-R","22060250","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","6","36.0 N","9.0 E","N","","","","","408832.0","4139015.0","37.393428","-106.029961","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008755",
|
||||
"2008759","W0287 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0287","10192-R, 20857-R","21-05092-08","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","35","37.0 N","9.0 E","N","","","","","415382.0","4139988.0","37.402818","-105.956085","09/17/2007 14:09","https://dwr.state.co.us/Tools/Structures/2008759",
|
||||
"2008762","W0292 WELL NO 02","DAD'S WELL - DESOUCHET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0292","10121-F, 10258-R","22-02530-08","TERRY & CONNIE BECKNER TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","13","36.0 N","8.0 E","N","","","","","406413.0","4135125.0","37.358128","-106.056793","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008762",
|
||||
"2008785","W0300 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0300","20915-R","07-10-1038","VK FARMS LLC (DEHERRERA, KIRBY)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","16","37.0 N","9.0 E","N","","","","","412213.0","4144659.0","37.444620","-105.992442","09/17/2007 15:37","https://dwr.state.co.us/Tools/Structures/2008785",
|
||||
"2008831","W0323 WELL NO 02","#12 DIC, DIC #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0323","4523-R","11061481/11061583","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","34","37.0 N","8.0 E","N","","","","","403581.0","4140741.0","37.408451","-106.089499","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008831",
|
||||
"2008832","W0323 WELL NO 03","#14 DICAMILLO, DIC #2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0323","5384-F","02082215/02082239","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","NE","33","37.0 N","8.0 E","N","","","","","402856.0","4141114.0","37.411737","-106.097739","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008832",
|
||||
"2008850","W0325 WELL NO 02","HORNING NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0325","14703-R-R","0921315/012018003204","NORTON, MATT; NORTON, MATT, JORDAN & BRENNON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","35","37.0 N","8.0 E","N","","","","","404824.0","4140820.0","37.409292","-106.075466","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008850",
|
||||
"2008856","W0333 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0333","14221-R","06-6-2151","ALLEN, JEANNIE; ALLEN, RYAN B. & JEANNIE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","9","37.0 N","11.0 E","N","","","","","430629.0","4147558.0","37.472313","-105.784542","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008856",
|
||||
"2008857","W0333 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0333","14226-R","06-8-2798","ALLEN, JEANNIE; ALLEN, RYAN B. & JEANNIE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","9","37.0 N","11.0 E","N","","","","","430622.0","4146885.0","37.466247","-105.784558","09/06/2007 17:07","https://dwr.state.co.us/Tools/Structures/2008857",
|
||||
"2008858","W0333 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","03CW0008, 94CW0025, W0333","14234-R, 38639-F, 43006-F, 44066-F, 51288-F","646688","PETERSEN, LESLIE P. & DEBORA S. HANKINSON","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","5","37.0 N","11.0 E","N","","","","","429789.0","4147989.0","37.476134","-105.794082","04/12/2021 09:57","https://dwr.state.co.us/Tools/Structures/2008858",
|
||||
"2008881","W0344 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0344","556-R","11061492/11061561","SINCLAIR, JOSH","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","15","37.0 N","9.0 E","N","","","","","413826.0","4144652.0","37.444709","-105.974208","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008881",
|
||||
"2008970","W0391 WELL NO 02","WHITE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0391","5792-F","05-10-1540","JOHNSON, SHIRLEY E.; JOHNSON, STANTON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","21","37.0 N","8.0 E","N","","","","","402435.0","4143969.0","37.437422","-106.102873","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008970",
|
||||
"2008971","W0391 WELL NO 03","BRUNELLI'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0391","1605-R","07-8-1884","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","18","37.0 N","8.0 E","N","","","","","399268.0","4144794.0","37.444518","-106.138778","09/17/2013 13:09","https://dwr.state.co.us/Tools/Structures/2008971",
|
||||
"2008976","W0395 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0395","20889-R","22-05486-10","MARQUEZ, MANUEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","36","37.0 N","9.0 E","N","","","","","417173.0","4140493.0","37.407531","-105.935908","09/06/2007 17:06","https://dwr.state.co.us/Tools/Structures/2008976",
|
||||
"2009024","W0425 WELL NO 01","HEERSINK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0058, W0425","13446-F","042013003351/06123309","4 MILE PROPERTIES, LLC (WIESCAMP, CODY); WIESCAMP, CODY & TEDI","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","14","37.0 N","8.0 E","N","","","","","404870.0","4145566.0","37.452068","-106.075558","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009024",
|
||||
"2009081","W0448 WELL NO 01","ROLANDS OLD FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0448","1339-R-R","06-10-1108","FAUCETTE, PAUL","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","23","36.0 N","8.0 E","N","","","","","404763.0","4134334.0","37.350832","-106.075320","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009081",
|
||||
"2009126","W0464 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0464","8265-R-R","21-04358","FAUCETTE, PAUL","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","SW","22","36.0 N","8.0 E","N","","","","","403935.0","4133681.0","37.344861","-106.084583","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009126",
|
||||
"2009128","W0464 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0004, W0464","8215-R","77-8-377","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","23","36.0 N","8.0 E","N","","","","","405750.0","4134219.0","37.349896","-106.064163","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009128",
|
||||
"2009129","W0464 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0004, W0464","8216-R","10063586/10063667","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","23","36.0 N","8.0 E","N","","","","","405564.0","4134224.0","37.349922","-106.066264","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009129",
|
||||
"2009160","W0481 WELL NO 01","GENE'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0481","20946-R","06-8-4920","HEERSINK, GENE; RUTGERS, JAMES","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","17","37.0 N","9.0 E","N","","","","","409715.0","4144778.0","37.445452","-106.020692","09/06/2007 17:04","https://dwr.state.co.us/Tools/Structures/2009160",
|
||||
"2009161","W0482 WELL NO 02","ACROSS FROM EXPO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0482","6336-R, 6336-R-R","24-05669-10","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","18","36.0 N","9.0 E","N","","","","","408008.0","4135396.0","37.360730","-106.038819","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009161",
|
||||
"2009162","W0482 WELL NO 03","#3-N-RES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0482","6335-R","10061969/10061988","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","18","36.0 N","9.0 E","N","","","","","408828.0","4135030.0","37.357513","-106.029515","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009162",
|
||||
"2009225","W0516 WELL NO 01","WIDGER RD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0516","5221-F","062013001071/032014000164","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","31","37.0 N","8.0 E","N","","","","","399182.0","4141301.0","37.413029","-106.139273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009225",
|
||||
"2009226","W0516 WELL NO 02","WIDGER RD 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0516","3736-F","012014002635","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","31","37.0 N","8.0 E","N","","","","","399147.0","4139997.0","37.401274","-106.139491","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009226",
|
||||
"2009232","W0518 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0518","11678-F","11061486/11061578","HAUGEN, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","36","38.0 N","7.0 E","N","","","","","397640.0","4151183.0","37.501916","-106.158068","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009232",
|
||||
"2009239","W0525 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0525","10821-R, 10821-R-R","06-8-3863","ARCHULETA, MANUEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","13","37.0 N","7.0 E","N","","","","","397707.0","4144824.0","37.444617","-106.156426","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009239",
|
||||
"2009240","W0525 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0525","10822-R, 10822-R-R","12061280/12204356","MILLER, MATTHEW","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","13","37.0 N","7.0 E","N","","","","","397551.0","4144824.0","37.444599","-106.158190","09/03/2021 17:16","https://dwr.state.co.us/Tools/Structures/2009240",
|
||||
"2009258","W0540 WELL NO 01","MAIN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0540","23645-, 61829-F","252400425","KELLOGG, DOUG; STOESSER, RICHARD","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","16","37.0 N","10.0 E","N","","","","","421760.0","4144972.0","37.448298","-105.884558","12/26/2023 14:40","https://dwr.state.co.us/Tools/Structures/2009258",
|
||||
"2009316","W0566 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","7328-R","06-8-4423","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","18","37.0 N","8.0 E","N","","","","","398452.0","4145972.0","37.455044","-106.148164","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009316",
|
||||
"2009317","W0566 WELL NO 02","SO. HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","8606-R","06-8-3913","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","18","37.0 N","8.0 E","N","","","","","398465.0","4145563.0","37.451360","-106.147961","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009317",
|
||||
"2009318","W0566 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","6184-R","06-10-1484","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","18","37.0 N","8.0 E","N","","","","","398469.0","4144918.0","37.445548","-106.147827","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009318",
|
||||
"2009319","W0566 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","8602-R","12212680/12212632","BRUNELLI, BRYAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","17","37.0 N","8.0 E","N","","","","","400045.0","4145600.0","37.451866","-106.130105","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009319",
|
||||
"2009321","W0575 WELL NO 02","#4-NORTH HIGHWAY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0575","1687-R","12062567/12062738","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","NW","SW","NW","19","36.0 N","9.0 E","N","","","","","408011.0","4134306.0","37.350907","-106.038650","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009321",
|
||||
"2009339","W0586 WELL NO 02","EAST HUNTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0586","8710-R","12062578/05151683","RICKERT PROPERTIES, LLC; SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","29","37.0 N","10.0 E","N","","","","","419481.0","4141346.0","37.415423","-105.909925","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009339",
|
||||
"2009390","W0624 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0624","2992-F","11061648","PROXIMITY MALT, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","33","39.0 N","8.0 E","N","","","","","403319.0","4160724.0","37.588511","-106.095086","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009390",
|
||||
"2009412","W0639 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0639","2825-F","12062586/12062685","SCHMIDT, LOUIS J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","23","37.0 N","8.0 E","N","","","","","405630.0","4143202.0","37.430841","-106.066665","01/26/2021 14:39","https://dwr.state.co.us/Tools/Structures/2009412",
|
||||
"2009439","W0652 WELL NO 01","#8 SCHROEDER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0652","6035-R","02081367","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","6","36.0 N","9.0 E","N","","","","","408016.0","4138242.0","37.386380","-106.039082","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009439",
|
||||
"2009447","W0653 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0653","5313-F","04061472/04061500","TEEM, ALBERT L.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","21","38.0 N","10.0 E","N","","","","","421790.0","4153406.0","37.524313","-105.885116","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009447",
|
||||
"2009484","W0688 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0688","20481-R","072019003872/10063641, 11061491/11061582","NIPPLE, FRED & DIANTHA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","19","37.0 N","10.0 E","N","","","","","418654.0","4142983.0","37.430104","-105.919450","01/12/2021 11:25","https://dwr.state.co.us/Tools/Structures/2009484",
|
||||
"2009492","W0695 WELL NO 01","FIELD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0695","2282-F","05061442/07201700380","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","11","36.0 N","8.0 E","N","","","","","405189.0","4137517.0","37.379562","-106.070919","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009492",
|
||||
"2009495","W0695 WELL NO 04","FIELD 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0695","2321-F","05061455/05061484","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","2","36.0 N","8.0 E","N","","","","","404803.0","4139109.0","37.393869","-106.075483","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009495",
|
||||
"2009496","W0697 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0697","8642-R, 8642-R-R","09062740","MILLER, WILLIAM E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","3","36.0 N","8.0 E","N","","","","","404139.0","4139398.0","37.396406","-106.083021","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009496",
|
||||
"2009516","W0710 WELL NO 01","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0710","5920-F","19-02851-12","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NE","SW","25","36.0 N","8.0 E","N","","","","","407193.0","4132330.0","37.333017","-106.047637","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009516",
|
||||
"2009558","W0735 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0007, W0735","1406-R, 90472-F","02081358","ALLEN, BLUE & JEANNIE; CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","4","36.0 N","9.0 E","N","","","","","411290.0","4139006.0","37.393585","-106.002195","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009558",
|
||||
"2009561","W0735 WELL NO 05","CODY WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0735","11821-R","10061965/10242127","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","33","37.0 N","9.0 E","N","","","","","412105.0","4139766.0","37.400512","-105.993080","09/06/2007 16:53","https://dwr.state.co.us/Tools/Structures/2009561",
|
||||
"2009612","W0766 WELL NO 01","TURNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","86CW0040, W0766","3775-F","06200677/05201404","BAR TWO BAR RANCH, LLC (JUSTIN ROGERS & RONALD CASH); ROGERS, JUSTIN A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","16","36.0 N","9.0 E","N","","","","","411270.0","4134960.0","37.357119","-106.001936","12/06/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009612",
|
||||
"2009638","W0776 WELL NO 01","#1 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0776","5473-F, 66769-F","10063628/10063646","HAEDGE, HEATH & DANA; HEERSINK, DEREK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","15","37.0 N","8.0 E","N","","","","","404058.0","4145548.0","37.451822","-106.084735","12/02/2020 19:38","https://dwr.state.co.us/Tools/Structures/2009638",
|
||||
"2009649","22CW0007 WELL NO 03 COMMERCIAL USE","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0007, W0787","54710-, 54710--A, 90473-F","19012635","CODY, D. WAYNE & SANDRA; COLORADO MALTING CO & COLORADO FARM BREWERY (CODY, WAYNE)","RGWCD SD6","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","NW","NW","4","36.0 N","9.0 E","N","390","W","180","N","411385.3","4139711.1","37.399948","-106.001207","02/06/2026 12:59","https://dwr.state.co.us/Tools/Structures/2009649",
|
||||
"2009658","W0794 WELL NO 01","LITTLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0794","10201-R","11602","SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","SW","32","37.0 N","10.0 E","N","","","","","419857.0","4139743.0","37.401008","-105.905503","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009658",
|
||||
"2009669","W0801 WELL NO 01","LARIAT 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0801","12354-F, 89123-F","GP13-2394-8","PAULSON, BRYAN","RGWCD SD6","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","4","38.0 N","7.0 E","N","","","","","393243.0","4158922.0","37.571158","-106.208929","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009669",
|
||||
"2009670","W804 WELL NO. 1","HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0804","2175-F","07-10-1023","TERRY & CONNIE BECKNER TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","SW","12","36.0 N","8.0 E","N","","","","","407187.0","4136653.0","37.371977","-106.048246","03/25/2009 16:59","https://dwr.state.co.us/Tools/Structures/2009670",
|
||||
"2009736","W0837 WELL NO 03","#18 & #19 TALL BARN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0837","1750-R","GP06-10-1186","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","29","37.0 N","8.0 E","N","","","","","400798.0","4141579.0","37.415709","-106.121053","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009736",
|
||||
"2009746","W0844 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0844","10545-R","07-8-1074","HASTON, LARRY & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","16","36.0 N","9.0 E","N","","","","","411268.0","4135339.0","37.360534","-106.002004","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009746",
|
||||
"2009774","W0856 WELL NO 01","SHADY CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0856","3088-F","11061696/06201506309","NISSLEY, IVAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","26","37.0 N","8.0 E","N","","","","","405656.0","4142372.0","37.423364","-106.066265","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009774",
|
||||
"2009809","W0873 WELL NO 01","PORTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0873","13576-R","072017003068/042017000955","CURTO, MARIO L. & RITA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","25","37.0 N","9.0 E","N","","","","","416239.0","4141402.0","37.415640","-105.946564","09/06/2007 16:51","https://dwr.state.co.us/Tools/Structures/2009809",
|
||||
"2009810","W0873 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0873","13577-R","05061441/05061490","WELCH, RAY C. & VICKIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","30","37.0 N","10.0 E","N","","","","","418043.0","4142545.0","37.426103","-105.926307","09/06/2007 16:51","https://dwr.state.co.us/Tools/Structures/2009810",
|
||||
"2009919","W0924 WELL NO 01","NORTH RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0924","6034-R, 6034-R-R, 6034-R-R","04210426","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","1","36.0 N","8.0 E","N","","","","","406405.0","4139154.0","37.394438","-106.057393","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009919",
|
||||
"2009920","W0924 WELL NO 02","#2 FORD SMALL SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0924","34063-F","06-8-3918","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","1","36.0 N","8.0 E","N","","","","","406390.0","4139106.0","37.394004","-106.057557","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009920",
|
||||
"2009983","W0978 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0978","1729-R","07-4-1014","MARTIN, JANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NE","NW","5","37.0 N","10.0 E","N","","","","","420047.0","4149198.0","37.486239","-105.904381","09/17/2007 14:00","https://dwr.state.co.us/Tools/Structures/2009983",
|
||||
"2009984","W0978 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0978","2745-F","1703100409971007/13-91357, 173100109941000/13-91353","OWENS, LARRY & VELLA; OWENS, LOHN & VELLA; VILLA MALL CONDO ASSOCIATION (BURT, ERIC)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SE","5","37.0 N","10.0 E","N","","","","","420270.0","4148407.0","37.479129","-105.901774","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009984",
|
||||
"2009985","W0978 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0978","3380-F","15-13609-4","CARROLL PROPERTIES LLC; MARTIN, JANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","5","37.0 N","10.0 E","N","","","","","419763.0","4148671.0","37.481465","-105.907536","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009985",
|
||||
"2010069","W1030 WELL NO 02","GRETT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1030","10420-R","06-10-1483","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","19","37.0 N","8.0 E","N","","","","","399216.0","4143972.0","37.437104","-106.139254","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010069",
|
||||
"2010070","W1031 WELL NO 01","CORNER WELL BOWEN CHURCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1031","7092-R-R","06-8-4337","MULLETT, ALVIN RAY & FREDA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","21","37.0 N","8.0 E","N","","","","","401624.0","4143186.0","37.430280","-106.111934","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010070",
|
||||
"2010091","W1042 WELL NO 01 NELSON","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","99CW0051, W1042","11296-F, 50480-F, 90449-F","042014001716","MT VALLEY FARMS (SIMPSON, CLEAVE)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","6","36.0 N","10.0 E","N","","","","","417778.0","4139513.0","37.398753","-105.928964","12/06/2002 00:00","https://dwr.state.co.us/Tools/Structures/2010091",
|
||||
"2010097","W1043 WELL NO 03","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1043","7734-F","12062573/12062653","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","25","36.0 N","8.0 E","N","","","","","407213.0","4132596.0","37.335416","-106.047444","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010097",
|
||||
"2010104","W1045 WELL NO 02","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, 22CW3034, W1045","1063-R","12062627/12062654","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","SW","19","36.0 N","9.0 E","N","","","","","408820.0","4133363.0","37.342488","-106.029401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010104",
|
||||
"2010105","W1045 WELL NO 03","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","15CW3009, W1045","1064-R, 81366-F","06125218","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","30","36.0 N","9.0 E","N","","","","","409221.0","4132703.0","37.336579","-106.024793","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010105",
|
||||
"2010128","W1068 WELL NO 01","GOLDEN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1068","5491-F","18-01238-08","ROCKY MOUNTAIN HOME BUILDERS LLC (YODER, MATTHEW T.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","12","37.0 N","8.0 E","N","","","","","406505.0","4147126.0","37.466294","-106.057274","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010128",
|
||||
"2010160","W1085 WELL NO 03","DUGAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","23CW3004, W1085","15518-R, 90544-F","112018004241","4 MILE PROPERTIES, LLC (WIESCAMP, CODY); WIESCAMP, CODY & TEDI","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","31","37.0 N","9.0 E","N","","","","","408871.0","4140700.0","37.408617","-106.029729","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010160",
|
||||
"2010176","W1094 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1094","12263-F","19-01257-08","GUNBARREL FARMS LLC (BROWN, ANDREW); GUNBARREL FARMS, LLC; TIMMINS, NATE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","11","38.0 N","10.0 E","N","","","","","424997.0","4156649.0","37.553807","-105.849157","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010176",
|
||||
"2010184","W1100 WELL NO 04","","Active structure but diversion records are not maintained (U)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1100","54600-","","HOCHSTETLER, LEVI","RGWCD SD6","","","3","20","ALAMOSA","","","","NE","NW","2","36.0 N","9.0 E","N","1980","W","800","N","415149.6","4139439.8","37.397858","-105.958643","01/07/2025 09:53","https://dwr.state.co.us/Tools/Structures/2010184",
|
||||
"2010185","W1100 WELL NO 05","","Active structure but diversion records are not maintained (U)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1100","54599-","","HOCHSTETLER, LEVI","RGWCD SD6","","","3","20","ALAMOSA","","","","NE","NW","2","36.0 N","9.0 E","N","1980","W","1060","N","415148.1","4139360.5","37.397146","-105.958657","01/10/2025 12:21","https://dwr.state.co.us/Tools/Structures/2010185",
|
||||
"2010186","W1100 WELL NO 06","","Active structure but diversion records are not maintained (U)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1100","54598-","","HOCHSTETLER, LEVI","RGWCD SD6","","","3","20","ALAMOSA","","","","NE","NW","2","36.0 N","9.0 E","N","1800","W","1200","N","415092.4","4139318.5","37.396762","-105.959285","01/10/2025 12:22","https://dwr.state.co.us/Tools/Structures/2010186",
|
||||
"2010204","W1115 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1115","3035-F","08051629","ARCHER, RODNEY; MEADOWS, JAMES E. & CAROLYN KAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","30","37.0 N","9.0 E","N","","","","","408842.0","4142317.0","37.423187","-106.030256","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010204",
|
||||
"2010366","W1235 WELL NO 01","ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1235","12896-R","09-03524-03","BURNS, WILLIAM A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","2","37.0 N","9.0 E","N","","","","","415339.0","4149363.0","37.487306","-105.957647","09/17/2007 13:56","https://dwr.state.co.us/Tools/Structures/2010366",
|
||||
"2010420","W1263 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1263","6265-F","15-00529-4, GP09-1718-8","SKY HIGH STATION, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","32","39.0 N","9.0 E","N","","","","","409873.0","4159849.0","37.581291","-106.020754","05/24/2005 09:57","https://dwr.state.co.us/Tools/Structures/2010420",
|
||||
"2010441","W1269 WELL NO 02","B COLEMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1269","4865-F","18-05410-04","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","NW","SW","19","36.0 N","9.0 E","N","","","","","408015.0","4133773.0","37.346104","-106.038538","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010441",
|
||||
"2010465","W1287 WELL NO 01","PVC PIPE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1287","11073-R","06-10-1400","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NE","SW","26","36.0 N","8.0 E","N","","","","","405561.0","4132384.0","37.333339","-106.066063","08/02/2021 17:01","https://dwr.state.co.us/Tools/Structures/2010465",
|
||||
"2010478","W1294 WELL NO 01","PRICE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1294","10893-F","A5009E16000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/2005","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","2","37.0 N","10.0 E","N","","","","","424282.0","4147757.0","37.473609","-105.856335","12/02/2020 19:39","https://dwr.state.co.us/Tools/Structures/2010478",
|
||||
"2010479","W1295 WELL NO 01","WEAVER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1295","1555-R","12062508/12062772, 12062510/12062767-PIVOT","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","32","37.0 N","9.0 E","N","","","","","410513.0","4139981.0","37.402297","-106.011090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010479",
|
||||
"2010484","W1298 WELL NO 01","HENRY ROAD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1298","8595-R","GP12-6270-10","NATHEL GYLLING REVOCABLE TRUST; THOMAS, KRISTIE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","5","36.0 N","10.0 E","N","","","","","420135.0","4138870.0","37.393164","-105.902268","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010484",
|
||||
"2010494","W1303 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1303","48655-F","06-09313-04","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); ELEVEN SOUTH LLC (MARTINEZ, JEFF)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","33","37.0 N","10.0 E","N","","","","","421818.0","4140511.0","37.408097","-105.883430","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010494",
|
||||
"2010496","W1303 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1303","57582-","17-00121-03","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); ELEVEN SOUTH LLC (MARTINEZ, JEFF)","RGWCD SD6","10/31/2017","10/31/2025","3","20","ALAMOSA","","","","SE","NW","33","37.0 N","10.0 E","N","","","","","421800.0","4140754.0","37.410286","-105.883659","02/06/2026 13:00","https://dwr.state.co.us/Tools/Structures/2010496",
|
||||
"2010533","W1334 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1334","","10262539/12062745","FRANCIS, ALBERT & KATRINA","RGWCD SD6","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","27","37.0 N","8.0 E","N","","","","","404013.0","4142755.0","37.426646","-106.084880","02/06/2026 13:00","https://dwr.state.co.us/Tools/Structures/2010533",
|
||||
"2010536","W1336 WELL NO 01","SW OF FARM HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1336","1844-R, 1844-R-R","02-6-1423","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","35","37.0 N","8.0 E","N","","","","","404831.0","4139933.0","37.401298","-106.075273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010536",
|
||||
"2010537","W1336 WELL NO 02","WEST RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1336","12555-R","03062355/03062381","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","33","37.0 N","8.0 E","N","","","","","401561.0","4139987.0","37.401443","-106.112220","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010537",
|
||||
"2010538","W1336 WELL NO 04","EAST RES. WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1336","11656-F","GP-11-2499-12","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","33","37.0 N","8.0 E","N","","","","","401674.0","4140096.0","37.402438","-106.110958","09/06/2007 17:30","https://dwr.state.co.us/Tools/Structures/2010538",
|
||||
"2010540","W1336 WELL NO 06","BONTRAGER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1336","12709-R","06-8-4959","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","35","37.0 N","8.0 E","N","","","","","405610.0","4139912.0","37.401189","-106.066470","02/06/2026 13:00","https://dwr.state.co.us/Tools/Structures/2010540",
|
||||
"2010585","W1363 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1363","10119-F","07-10-1198","SCHMIDT, LOUIS J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","23","37.0 N","8.0 E","N","","","","","406048.0","4143932.0","37.437463","-106.062034","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010585",
|
||||
"2010653","W1392 WELL NO 01","WEST HUNTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1392","6914-R","10061949/10062045","RICKERT PROPERTIES, LLC; SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","SW","30","37.0 N","10.0 E","N","","","","","417874.0","4141409.0","37.415849","-105.928090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010653",
|
||||
"2010706","W1421 WELL NO 01","ALFALFA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0005, W1421","11523-R, 11523-R-R","GP12-3628-8","CROUSE, KEN","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","3","36.0 N","9.0 E","N","","","","","413745.0","4138962.0","37.393420","-105.974459","09/21/2016 13:23","https://dwr.state.co.us/Tools/Structures/2010706",
|
||||
"2010736","W1447 WELL NO 01","WEST CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1447","13314-R","6910634","CHESLOCK, LANCE","RGWCD SD6","10/31/2010","10/31/2025","3","20","ALAMOSA","","","","SW","SE","29","37.0 N","10.0 E","N","","","","","420532.0","4141316.0","37.415243","-105.898046","07/31/2014 09:07","https://dwr.state.co.us/Tools/Structures/2010736",
|
||||
"2010737","W1447 WELL NO 02","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1447","13313-R","6915105","SKINNER, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SE","SE","29","37.0 N","10.0 E","N","","","","","420902.0","4141299.0","37.415122","-105.893864","07/01/2013 09:23","https://dwr.state.co.us/Tools/Structures/2010737",
|
||||
"2010773","W1456 WELL NO 01","NATIVE AQUATIC SPECIES RESTORATION FACILITY #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1456","2292-F-R","24-06940","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","1","37.0 N","9.0 E","N","","","","","416378.0","4148108.0","37.476090","-105.945754","12/02/2020 19:41","https://dwr.state.co.us/Tools/Structures/2010773",
|
||||
"2010774","W1456 WELL NO 02","NATIVE AQUATIC SPECIES RESTORATION FACILITY #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1456","14051-R, 59362-F","EASTECH NO 2-403033","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","1","37.0 N","9.0 E","N","","","","","416147.0","4148190.0","37.476808","-105.948375","12/02/2020 19:42","https://dwr.state.co.us/Tools/Structures/2010774",
|
||||
"2010775","W1456 WELL NO 03","NATIVE AQUATIC SPECIES RESTORATION FACILITY #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1456","58894-F, 14052-R-R","19-06559-08","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","1","37.0 N","9.0 E","N","","","","","416546.0","4147848.0","37.473762","-105.943824","12/02/2020 19:43","https://dwr.state.co.us/Tools/Structures/2010775",
|
||||
"2010858","W1481 WELL NO 01","T4 #2: W OF TED'S WAVERLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1481","4419-R","06-10-1185","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","30","37.0 N","8.0 E","N","","","","","399988.0","4141569.0","37.415532","-106.130203","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010858",
|
||||
"2010864","W1485 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","21011-R","10063530/10063715","UCU RANCH LLC (CLAUNCH, BILLY D.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","28","37.0 N","8.0 E","N","","","","","402394.0","4142365.0","37.422962","-106.103124","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010864",
|
||||
"2010866","W1485 WELL NO 04","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","4435-R","","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2019","3","20","CONEJOS","","","","SE","SW","10","36.0 N","8.0 E","N","","","","","403953.0","4136670.0","37.371801","-106.084767","12/02/2020 19:43","https://dwr.state.co.us/Tools/Structures/2010866",
|
||||
"2010867","W1485 WELL NO 05","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","4436-R","01201386/01201345","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SE","10","36.0 N","8.0 E","N","","","","","403967.0","4136677.0","37.371865","-106.084610","12/02/2020 19:44","https://dwr.state.co.us/Tools/Structures/2010867",
|
||||
"2010868","W1485 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1485","1709-R, 1709-R-R, 1709-R-R, 1709-R-R","15-08572-6","CLAUNCH, BUCKY & CATHY","RGWCD SD6","10/31/2015","10/31/2025","3","20","CONEJOS","","","NW","NE","SE","3","36.0 N","8.0 E","N","","","","","404458.0","4138877.0","37.391743","-106.079350","08/17/2015 13:43","https://dwr.state.co.us/Tools/Structures/2010868",
|
||||
"2010869","W1485 WELL NO 07","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","11069-F","062015000846/12212624","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SE","SW","SW","3","36.0 N","8.0 E","N","","","","","403512.0","4138302.0","37.386463","-106.089960","12/02/2020 19:45","https://dwr.state.co.us/Tools/Structures/2010869",
|
||||
"2010870","W1485 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1485","1708-R-R","22-06219-06","CLAUNCH, BUCKY & CATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","2","36.0 N","8.0 E","N","","","","","404802.0","4138378.0","37.387281","-106.075400","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010870",
|
||||
"2010907","W1532 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1532","20244-R","07-8-1468","YUND, CHEB & SONYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","30","37.0 N","8.0 E","N","","","","","399185.0","4142373.0","37.422690","-106.139386","12/02/2020 19:46","https://dwr.state.co.us/Tools/Structures/2010907",
|
||||
"2010908","W1532 WELL NO 02","CHURCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1532","7071-R","09060680/10061171","YUND, CHEB & SONYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","29","37.0 N","8.0 E","N","","","","","400812.0","4142383.0","37.422956","-106.121003","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010908",
|
||||
"2010921","W1542 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1542","8723-R","05083044/12062775","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","30","37.0 N","9.0 E","N","","","","","408850.0","4141466.0","37.415519","-106.030060","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010921",
|
||||
"2010928","W1544 WELL NO 01","MAIN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1544","75721-F","25000634","HP FUTURES, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","SW","5","37.0 N","11.0 E","N","","","","","429424.0","4147841.0","37.474773","-105.798195","01/31/2024 13:37","https://dwr.state.co.us/Tools/Structures/2010928",
|
||||
"2010984","W1583 WELL NO 02","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1583","9029-F","11061477/11061586","BUCK MATTHEWS FAMILY LLLP.; MATTHEWS, STEVE & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","3","38.0 N","7.0 E","N","","","","","393860.0","4159298.0","37.574618","-106.201998","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010984",
|
||||
"2011034","W1608 WELL NO 01","HUNTER Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1608","20650-R","10063608/10063640","BRADY, JOHN AND TRENNA; BRADY, STEVE; SCHAEFER RANCH, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","16","37.0 N","8.0 E","N","","","","","402420.0","4145573.0","37.451876","-106.103255","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011034",
|
||||
"2011055","W1622 WELL NO 01","PAINTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1622","20048-R, 20048-R-R","05060244/10190349","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","5","36.0 N","9.0 E","N","","","","","409783.0","4139233.0","37.395485","-106.019246","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011055",
|
||||
"2011058","W1622 WELL NO 4","BLUE'S WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1622","809-R","10063601/10063671-100493","ALLEN, BLUE & JEANNIE; CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","33","37.0 N","9.0 E","N","","","","","411280.0","4139805.0","37.400785","-106.002404","11/14/2013 10:44","https://dwr.state.co.us/Tools/Structures/2011058",
|
||||
"2011061","W1622 WELL NO 07","VANDER EYK #5 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0042, W1622","10204-R","06-8-3982","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","6","36.0 N","9.0 E","N","","","","","408835.0","4138241.0","37.386452","-106.029832","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011061",
|
||||
"2011083","W1628 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1628","4608-F, 4608-F-R","6980608","PS CUBE LLC (SPATEL, PRAYA)","RGWCD SD6","10/31/2007","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","34","39.0 N","7.0 E","N","","","","","394061.0","4160602.0","37.586392","-106.199911","01/27/2025 13:45","https://dwr.state.co.us/Tools/Structures/2011083",
|
||||
"2011085","W1628 WELL NO 03","MOTEL WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1628","57490-, 59973-F, 88793-F","6980608","PS CUBE LLC (SPATEL, PRAYA)","RGWCD SD6","10/31/2007","10/31/2025","3","20","RIO GRANDE","","","SW","NE","NW","34","39.0 N","7.0 E","N","","","","","394097.0","4160635.0","37.586694","-106.199508","10/29/2025 10:27","https://dwr.state.co.us/Tools/Structures/2011085",
|
||||
"2011114","W1652 WELL NO 01","LAZY U","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1652","5154-F","042013003352/06123300","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","NE","NE","NW","7","36.0 N","8.0 E","N","","","","","399041.0","4138338.0","37.386311","-106.140462","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011114",
|
||||
"2011149","W1677 WELL NO 01","BUS. NAME WAS SCHALL IRON WORKS INC.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1677","9475-F","20801043","DC LAND & HOLDINGS, LLC (TOEWS, DAVID W.); TOEWS, DAVID W.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SE","25","39.0 N","7.0 E","N","","","","","398450.0","4160896.0","37.589536","-106.150250","12/02/2020 19:47","https://dwr.state.co.us/Tools/Structures/2011149",
|
||||
"2011165","W1682 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0029, W1682","10547-R, 90483-F","02081334/12212612","AK FRONTIER FARMS LLC (GESINK, KENT N.); SKADBERG, ADAM","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","3","36.0 N","9.0 E","N","","","","","413330.0","4138996.0","37.393688","-105.979151","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011165",
|
||||
"2011204","W1707 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1707","11933-R","11061396","COOMBS, JASON","RGWCD SD6","10/31/2012","10/31/2025","3","20","CONEJOS","","","","SW","NW","25","36.0 N","8.0 E","N","","","","","406395.0","4132857.0","37.337687","-106.056710","12/02/2020 19:48","https://dwr.state.co.us/Tools/Structures/2011204",
|
||||
"2011205","W1708 WELL NO 01","TRAILER PARK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1708","29070-, 68698-F","6788523","MANAGER, JOSH; VALLEY MOBILE HOME LLC (MUNOZ, MEMBERS, ELEAZAR & HULDA)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","26","38.0 N","10.0 E","N","","","","","424237.0","4151110.0","37.503824","-105.857189","01/31/2024 13:58","https://dwr.state.co.us/Tools/Structures/2011205",
|
||||
"2011225","W1712 WELL NO 03","IRRIGATION WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, W1712","15936-F","8940628","STRANG, JIM AND LISA","RGWCD SD6","10/31/2018","10/31/2025","3","20","ALAMOSA","","","","SW","NW","2","37.0 N","11.0 E","N","","","","","433925.0","4148818.0","37.483911","-105.747383","02/06/2026 13:02","https://dwr.state.co.us/Tools/Structures/2011225",
|
||||
"2011229","W1715 WELL NO 02","CROWTHER SMALL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3015, W1715","6325-R-R, 6325-R-R","06200649","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","18","36.0 N","9.0 E","N","","","","","408020.0","4135807.0","37.364436","-106.038734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011229",
|
||||
"2011360","W1802 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1802","5872-F","GP12-5224-10","ANDREWS, COLBY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","28","37.0 N","9.0 E","N","","","","","411490.0","4141704.0","37.417920","-106.000260","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011360",
|
||||
"2011361","W1802 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1802","11097-R","24-02112-08","ANDREWS, COLBY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","28","37.0 N","9.0 E","N","","","","","411495.0","4141732.0","37.418173","-106.000206","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011361",
|
||||
"2011396","W1817 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1817","13780-R, 13780-R-R, 13780-R-R","06-10-1485","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","19","37.0 N","8.0 E","N","","","","","398501.0","4143971.0","37.437017","-106.147335","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011396",
|
||||
"2011432","W1831 WELL NO 02","CHURCH QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1831","7232-R","05062255/05062198","BRADY, MICHAEL; BRADY, MICHAEL KIRK & ALESHA ANN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","28","37.0 N","8.0 E","N","","","","","401642.0","4142370.0","37.422928","-106.111622","01/30/2020 11:42","https://dwr.state.co.us/Tools/Structures/2011432",
|
||||
"2011435","W1831 WELL NO 07","10S WELL (BILL'S PLACE)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1831","14058-R","06-10-1495","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","20","37.0 N","8.0 E","N","","","","","400805.0","4143183.0","37.430165","-106.121189","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011435",
|
||||
"2011452","W1832 WELL NO 01","HOWARD'S LOWER HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1832","3703-F","10190403/08062028","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","20","37.0 N","8.0 E","N","","","","","400010.0","4143211.0","37.430332","-106.130177","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011452",
|
||||
"2011453","W1832 WELL NO 02","HOWARD'S UPPER CATERPILLAR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1832","16244-R","06-10-1548","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","30","37.0 N","8.0 E","N","","","","","399170.0","4141585.0","37.415587","-106.139448","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011453",
|
||||
"2011545","W1866 WELL NO 01","RESERVOIR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1866","20335-R","10242131","FRANSEN, NATHAN D.; VELASQUEZ, JOHN (JUAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","17","36.0 N","9.0 E","N","","","","","410452.0","4134938.0","37.356842","-106.011169","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011545",
|
||||
"2011566","W1888 WELL NO 01","GUNBARREL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1888","1471-R","072014000387/072014001467","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","13","37.0 N","7.0 E","N","","","","","397638.0","4145634.0","37.451909","-106.157319","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011566",
|
||||
"2011684","W1944 WELL NO 02","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1944","8897-F","05-10-1555","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","10","36.0 N","8.0 E","N","","","","","403164.0","4137493.0","37.379136","-106.093785","12/02/2020 19:49","https://dwr.state.co.us/Tools/Structures/2011684",
|
||||
"2011685","W1944 WELL NO 03","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1944","5873-F","052018002647/05201408","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","10","36.0 N","8.0 E","N","","","","","403154.0","4136708.0","37.372060","-106.093795","12/02/2020 19:50","https://dwr.state.co.us/Tools/Structures/2011685",
|
||||
"2011687","W1951 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1951","12785-R","07-02393-04","ZIMMERMAN, TREVER","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NE","10","37.0 N","11.0 E","N","","","","","433099.0","4147360.0","37.470711","-105.756592","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011687",
|
||||
"2011741","W1976 WELL NO 05","MALOUFF WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","05CW0011, W1976","10421-F","24030389, GP 07-10-1032","U.S FISH AND WILDLIFE SERVICE (CARUSO, BRIAN); UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","32","38.0 N","9.0 E","N","","","","","409819.0","4150898.0","37.500617","-106.020266","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011741",
|
||||
"2011901","W2068 WELL NO 01","LIBRARY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2068","","16-11947","ADAMS STATE UNIVERSITY; RUYBAL, KEVIN","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","SE","4","37.0 N","10.0 E","N","","","","","421989.0","4147763.0","37.473472","-105.882265","06/20/2022 20:22","https://dwr.state.co.us/Tools/Structures/2011901",
|
||||
"2011904","W2070 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2070","22468-F-R","07-6-1094, 3758444","BILLINGS, JAMES; PRICE, WADE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","28","38.0 N","10.0 E","N","","","","","421806.0","4152148.0","37.512977","-105.884801","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011904",
|
||||
"2011907","W2073 WELL NO 06","MARTIN N. RES.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2073","14881-R, 20749-T","06-8-3915","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","11","38.0 N","8.0 E","N","","","","","405678.0","4156196.0","37.547950","-106.067788","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011907",
|
||||
"2011909","W2076 WELL NO 02","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2076","5545-F","6102949","CENTURY PROPERTY MANAGEMENT (MCCARROLL, DARLENE); LORNA JEANNE PRICE REVOCABLE TRUST; PRICE, LEO O.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NW","7","37.0 N","11.0 E","N","","","","","427631.0","4147595.0","37.472417","-105.818448","01/31/2024 16:12","https://dwr.state.co.us/Tools/Structures/2011909",
|
||||
"2011973","W2128 WELL NO 01","ESPERANZA #4 RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W2128","14445-R","12062619/12212621","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","19","36.0 N","9.0 E","N","","","","","408817.0","4134176.0","37.349815","-106.029535","09/17/2007 14:50","https://dwr.state.co.us/Tools/Structures/2011973",
|
||||
"2011987","W2138 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2138","3760-F","GP15-07501-8","OLD WESTERN HERITAGE LLC ","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SW","11","38.0 N","7.0 E","N","","","","","395479.0","4156569.0","37.550210","-106.183278","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011987",
|
||||
"2012068","W2206 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2206","14037-R","03073266/04070335","BUSH, MICHAEL; SPLASHLAND LLC (POLKOWSKE, LEROY)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","34","38.0 N","10.0 E","N","","","","","424004.0","4149454.0","37.488880","-105.859654","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012068",
|
||||
"2012069","W2206 WELL NO 05","LLOYD JONES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2206","14038-R","10060947/05063028","JONES JR, LLOYD E.; JONES, MARGARET OR BUTCH","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","34","38.0 N","10.0 E","N","","","","","424004.0","4149427.0","37.488637","-105.859651","09/17/2007 14:50","https://dwr.state.co.us/Tools/Structures/2012069",
|
||||
"2012081","W2223 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2223","13581-F","5374184","CARPENTER, KEVIN; KB PROPERTIES, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","10","37.0 N","10.0 E","N","","","","","423915.0","4147592.0","37.472091","-105.860468","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012081",
|
||||
"2012088","W2227 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2227","49710-F","5524111","BROADWAY SERVICE","RGWCD SD6","10/31/2009","10/31/2024","3","20","ALAMOSA","","","NE","NE","NE","10","37.0 N","10.0 E","N","","","","","424126.0","4147521.0","37.471469","-105.858075","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012088",
|
||||
"2012096","W2243 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2243","13903-R","07-12-1019","MULLETT, ALVIN RAY & FREDA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","21","37.0 N","8.0 E","N","","","","","402425.0","4143162.0","37.430148","-106.102879","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012096",
|
||||
"2012118","W2266 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2266","11197-R","15-18139-10","SINCLAIR, MATT & EVA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","31","37.0 N","10.0 E","N","","","","","417845.0","4140544.0","37.408051","-105.928322","01/19/2017 14:43","https://dwr.state.co.us/Tools/Structures/2012118",
|
||||
"2012244","W2340 WELL NO 01","MOSE Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2340","11618-R","12062606/12062697","BRADY, JOHN AND TRENNA; BRADY, STEVE; THE L&P, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","22","37.0 N","8.0 E","N","","","","","403206.0","4144181.0","37.439414","-106.094187","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012244",
|
||||
"2012372","W2431 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, W2431","89487-F","22-023993","PITARRESI, BARRY V. & PATRICIA M.","RGWCD SD6","10/31/2024","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","10","38.0 N","11.0 E","N","","","","","432302.0","4156746.0","37.555247","-105.766470","02/06/2026 13:04","https://dwr.state.co.us/Tools/Structures/2012372",
|
||||
"2012472","W2481 WELL NO 03","DAD'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2481","13194-F","09060704/09060741","CROWDER, HOWARD L.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","27","37.0 N","9.0 E","N","","","","","412950.0","4141681.0","37.417851","-105.983760","09/17/2007 14:48","https://dwr.state.co.us/Tools/Structures/2012472",
|
||||
"2012503","W2516 WELL NO 02","BUNCH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2516","","07-7679-3","BUNCH, GLEN","RGWCD SD6","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","NE","SE","14","37.0 N","10.0 E","N","","","","","425524.0","4145033.0","37.449159","-105.842015","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012503",
|
||||
"2012513","W2522 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2522","","18 007863-NL, 19-012664","COLORADO GATORS; YOUNG, ERWIN & LYNNE","RGWCD SD6","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","SW","SE","16","37.0 N","10.0 E","N","","","","","421897.0","4144817.0","37.446913","-105.882993","12/26/2023 14:43","https://dwr.state.co.us/Tools/Structures/2012513",
|
||||
"2012535","W2537 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","12CW0017, 21CW3023, W2537","5426-F","14-15552-8","COBLENTZ, DAVID R. LEAH L.; FRANSEN, NATHAN D.","RGWCD SD6","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","31","37.0 N","8.0 E","N","","","","","398430.0","4140005.0","37.401268","-106.147591","09/03/2021 17:21","https://dwr.state.co.us/Tools/Structures/2012535",
|
||||
"2012551","W2542 WELL NO 01","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2542","8445-R-R","12061202/12061401","GROWER SHIPPER POTATO COMPANY; LOUNSBURY, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NE","36","39.0 N","7.0 E","N","","","","","398109.0","4160581.0","37.586660","-106.154068","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012551",
|
||||
"2012555","W2544 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2544","5270-","23030700","COBLENTZ, MELVIN & MARY","RGWCD SD6","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","31","37.0 N","8.0 E","N","600","W","200","N","398552.0","4141506.0","37.414808","-106.146419","02/06/2026 13:05","https://dwr.state.co.us/Tools/Structures/2012555",
|
||||
"2012556","W2544 WELL NO 03","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2544","11119-R","07-8-1196","COBLENTZ, BENJAMIN A. & LAURA A.; YUTZY, GLENN D. & GENEVA F.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","30","37.0 N","8.0 E","N","","","","","398391.0","4141603.0","37.415664","-106.148252","08/02/2021 16:59","https://dwr.state.co.us/Tools/Structures/2012556",
|
||||
"2012562","W2545 WELL NO 06","HAGEDORN WEST S WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2545","7608-F","12230560/10062006","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","4","38.0 N","8.0 E","N","","","","","401778.0","4158013.0","37.563917","-106.112174","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012562",
|
||||
"2012586","W2549 WELL NO 02","FISH FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2549","53198-F","012018003201/12061316","HART, JAMES N. & MARIA L.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SE","24","39.0 N","7.0 E","N","","","","","398308.0","4163155.0","37.609878","-106.152172","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012586",
|
||||
"2012639","W2564 WELL NO 01","SHOWNS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2564","5950-R","07-8-1421","SCHAEFER, MICHAEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","34","39.0 N","7.0 E","N","","","","","394494.0","4160510.0","37.585613","-106.194994","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012639",
|
||||
"2012662","W2587 WELL NO 01","SOUTH HEERSINK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0058, W2587","2826-F","08-10-1453","4 MILE PROPERTIES, LLC (WIESCAMP, CODY); WIESCAMP, CODY & TEDI","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","14","37.0 N","8.0 E","N","","","","","404861.0","4144784.0","37.445020","-106.075559","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012662",
|
||||
"2012663","W2587 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2587","2059-F","14-08172","JD SCHMIDT & CARLA M. YOKLEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","14","37.0 N","8.0 E","N","","","","","405656.0","4144746.0","37.444759","-106.066568","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012663",
|
||||
"2012685","W2592 WELL NO 01","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2592","6536-R","95-8-1875N","BUCK MATTHEWS FAMILY LLLP.; MATTHEWS, STEVE & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SE","SW","3","38.0 N","7.0 E","N","","","","","394308.0","4158059.0","37.563504","-106.196747","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012685",
|
||||
"2012686","W2592 WELL NO 02","NOFFSKER PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2592","6537-R","02081353","JOHNSON, SHANE R. & ASHLEY C.; NOFFSKER, JOHN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","15","38.0 N","7.0 E","N","","","","","394481.0","4154982.0","37.535795","-106.194346","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012686",
|
||||
"2012687","W2592 WELL NO 03","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2592","10478-F","052017001429/07201500238","BUCK MATTHEWS FAMILY LLLP.; MATHEWS, MIKE; MATTHEWS, STEVE & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","NW","10","38.0 N","7.0 E","N","","","","","394353.0","4157570.0","37.559103","-106.196167","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012687",
|
||||
"2013136","W3106 WELL NO 01","HOWARDS #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3106","7017-R, 7017-R-R","05060253/05060276","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","20","37.0 N","9.0 E","N","","","","","410083.0","4143444.0","37.433466","-106.016370","09/17/2007 14:46","https://dwr.state.co.us/Tools/Structures/2013136",
|
||||
"2013139","W3106 WELL NO 04","HOWARDS #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3106","7020-R","04062008/04062030","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","19","37.0 N","9.0 E","N","","","","","408942.0","4143140.0","37.430614","-106.029227","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013139",
|
||||
"2013257","W3252 WELL NO 02","MVC MAIN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3252","","8109801","MONTE VISTA COOP; YARBROUGH, DEBRA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","NE","5","38.0 N","8.0 E","N","","","","","401586.0","4158555.0","37.568781","-106.114420","02/05/2024 10:34","https://dwr.state.co.us/Tools/Structures/2013257",
|
||||
"2013409","W3487 WELL NO 04R","CARMEL 1 (NE 120)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3487","6585-R-R","10062750/10062844","PAINE, JAMES; PAINE, NATALIE; WILHELM, CHRISTOPHER","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","12","36.0 N","8.0 E","N","","","","","406387.0","4136657.0","37.371933","-106.057281","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013409",
|
||||
"2013560","W3726 WELL NO 05R","POND/SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3726","10267-R, 10267-R-R, 10267-R-R","06-6-2157","ARCHER, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SE","NE","SE","14","36.0 N","8.0 E","N","","","","","406281.0","4135488.0","37.361387","-106.058329","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013560",
|
||||
"2013589","W3839 WELL NO 02R","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3839","14444-R-R","05119260/05119272","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NW","NW","20","36.0 N","9.0 E","N","","","","","410037.0","4134514.0","37.352980","-106.015803","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013589",
|
||||
"2013707","W0312 WELL NO 01","ROBERT'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0312","12112-F","09060695/09060754","SCHNEIDER, CURTIS J. AND CANDACE G.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","22","37.0 N","9.0 E","N","","","","","413768.0","4143799.0","37.437016","-105.974764","03/20/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013707",
|
||||
"2013718","RAKHRA WELL NO 37709-F","EAST DEEP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","37709-F","99-4-1199","CLAIR, DON; RAKHRA MUSHROOM FARM CORP","RGWCD SD6","10/31/1996","10/31/2025","3","20","ALAMOSA","","","","SE","SE","26","38.0 N","10.0 E","N","","","","","425789.0","4151224.0","37.504978","-105.839643","02/18/2011 16:35","https://dwr.state.co.us/Tools/Structures/2013718",
|
||||
"2013763","98CW035 WELL NO 1R","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0035","47728-F","10061611/10060099","CURTO, MARIO L. & RITA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","36","37.0 N","9.0 E","N","","","","","416296.0","4140601.0","37.408426","-105.945829","09/17/2007 14:13","https://dwr.state.co.us/Tools/Structures/2013763",
|
||||
"2013764","98CW040 HOMELAKE WELL 4","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0040","53183-F","11090021/05083096","COLORADO STATE VETERAN'S CENTER (KLIPPERT, CRYSTAL); MEDINA, JONATHON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SE","33","39.0 N","8.0 E","N","","","","","403221.0","4159267.0","37.575370","-106.096003","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013764",
|
||||
"2013825","96CW008 WELL NO 1","43762F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","96CW0008","43762-F","07-10-1078","GERINGER, NATHAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","NE","20","38.0 N","8.0 E","N","","","","","401653.0","4154401.0","37.531352","-106.113105","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013825",
|
||||
"2013846","2004CW021 WELL NO 3R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0006, 04CW0021","54245--A","22030777, 22030781","LEASE, CHRIS & SHAWNA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","33","38.0 N","10.0 E","N","","","","","421238.0","4149562.0","37.489622","-105.890950","06/30/2021 11:51","https://dwr.state.co.us/Tools/Structures/2013846",
|
||||
"2013869","2002CW0068 WELL NO 1","MAMA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","02CW0068","13106-R, 13106-R-R","10061956/11061622","SCHAEFER, MICHAEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","2","38.0 N","7.0 E","N","","","","","396063.0","4158869.0","37.571003","-106.176994","09/10/2019 09:40","https://dwr.state.co.us/Tools/Structures/2013869",
|
||||
"2013872","00CW0024 WELL NO 1R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0024","7316-R-R, 89727-F","16-05045-10","MCCORMICK, CHRISTY; ZIEGLER LIVING TRUST; ZIEGLER, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NE","SW","34","38.0 N","9.0 E","N","","","","","413731.0","4150160.0","37.494340","-105.975927","02/24/2005 10:16","https://dwr.state.co.us/Tools/Structures/2013872",
|
||||
"2013889","03CW0007 WELL NO 1R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","03CW0007","15629-R-R","05-8-1144","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","20","37.0 N","9.0 E","N","","","","","410491.0","4143168.0","37.431018","-106.011725","10/13/2005 16:50","https://dwr.state.co.us/Tools/Structures/2013889",
|
||||
"2013940","PERMIT 1887 R","1887 R","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","1887-R","11061518/11061554","ZIMMERMAN, ROBERT & KAREN; ZIMMERMAN, TREVER","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","10","37.0 N","11.0 E","N","","","","","432214.0","4147303.0","37.470133","-105.766595","08/21/2007 14:38","https://dwr.state.co.us/Tools/Structures/2013940",
|
||||
"2013963","2006CW010 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0010","","3796624","BROWN, WILLIAM","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","6","37.0 N","11.0 E","N","","","","","428271.0","4147833.0","37.474612","-105.811233","01/24/2008 16:05","https://dwr.state.co.us/Tools/Structures/2013963",
|
||||
"2013984","PERMIT 46764-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46764-F","10062691/10062882","WIDGER, KAREN; WIDGER, KAREN L. & MICHAEL JAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","15","37.0 N","8.0 E","N","","","","","403641.0","4145533.0","37.451643","-106.089447","01/13/2014 10:27","https://dwr.state.co.us/Tools/Structures/2013984",
|
||||
"2013985","07CW26 WELL NO 2-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0026","46502-F","06-8-3874","YODER, ROY & ROSE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","22","37.0 N","8.0 E","N","","","","","404412.0","4143542.0","37.433780","-106.080473","06/18/2010 15:58","https://dwr.state.co.us/Tools/Structures/2013985",
|
||||
"2013990","PERMIT 13351-R-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","13351-R","09060684/072017003083","ARCHER, RODNEY; MEADOWS, JAMES E. & CAROLYN KAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","29","37.0 N","9.0 E","N","","","","","409676.0","4142482.0","37.424756","-106.020852","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013990",
|
||||
"2013991","PERMIT 23185-F-","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23185-F","05083007/10061995","GESINK, ELBERT & MARLA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","33","37.0 N","9.0 E","N","","","","","411683.0","4140981.0","37.411422","-105.997992","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013991",
|
||||
"2013992","PERMIT 12131-R-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","12131-R, 303093-","6902297","HEERSINK, DEREK","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","19","37.0 N","10.0 E","N","","","","","418203.0","4144217.0","37.441186","-105.924684","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013992",
|
||||
"2014186","PERMIT 15311-FR","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","15311-F-R","20-04575-12","ROGERS, JUSTIN A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","21","36.0 N","9.0 E","N","","","","","411305.0","4134234.0","37.350579","-106.001454","08/01/2008 11:38","https://dwr.state.co.us/Tools/Structures/2014186",
|
||||
"2014332","PERMIT 20976-RR","DAD'S WELL, FKA WDID 2014325","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20976-R-R","10061964/10061999","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","5","36.0 N","9.0 E","N","","","","","410593.0","4139016.0","37.393608","-106.010070","07/02/2008 09:00","https://dwr.state.co.us/Tools/Structures/2014332",
|
||||
"2014354","2006CW018 WELL NO 1R","IRRIGATION","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0018","65642-F","02082210/02082234","CURTO, MARIO L. & RITA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","26","37.0 N","9.0 E","N","","","","","415795.0","4141362.0","37.415239","-105.951576","07/28/2014 14:23","https://dwr.state.co.us/Tools/Structures/2014354",
|
||||
"2014440","21CW0004 WELL NO 3R","REPLACES WDID 2005165","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0004","8214-R-R","07-10-1094","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","23","36.0 N","8.0 E","N","","","","","404870.0","4133754.0","37.345616","-106.074038","11/05/2025 13:28","https://dwr.state.co.us/Tools/Structures/2014440",
|
||||
"2014462","05CW11 WELL NO 5-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","05CW0011","24049-F, 47136-F, 65967-F","07-6-1008","WAGNER, JAMES J.","RGWCD SD6","10/31/2011","10/31/2025","3","20","ALAMOSA","","","","NW","SW","3","37.0 N","9.0 E","N","","","","","413034.0","4148518.0","37.479477","-105.983617","02/07/2011 15:21","https://dwr.state.co.us/Tools/Structures/2014462",
|
||||
"2014472","2011CW2 WELL NO 01-R","DUTTON, FKA 2009497","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","11CW0002","2290-F-R","06-10-1550","NORTON, MATT; NORTON, MATT, JORDAN & BRENNON","RGWCD SD6","10/31/2012","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","25","37.0 N","8.0 E","N","","","","","407280.0","4141699.0","37.417463","-106.047829","09/13/2013 12:09","https://dwr.state.co.us/Tools/Structures/2014472",
|
||||
"2014624","20CW0009 WELL NO. 2-5-R","CODY WELL-REPLACEMENT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW0009","22538-F-R","07-8-1081","MORGAN, GARY","RGWCD SD6","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NW","SW","34","37.0 N","9.0 E","N","","","","","413333.0","4140129.0","37.403899","-105.979250","12/06/2023 15:00","https://dwr.state.co.us/Tools/Structures/2014624",
|
||||
"2105000","W1455 WELL NO 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1455","12977-R","05-10-1544","SYKES, LISA K.","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","NE","NW","SW","18","36.0 N","10.0 E","N","","","","","418007.0","4135463.0","37.362272","-105.925928","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105000",
|
||||
"2105001","W1455 WELL NO 02","LITTLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1455","12976-R","07-4-1231","SYKES, LISA K.","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","SW","SW","SW","18","36.0 N","10.0 E","N","","","","","417823.0","4135004.0","37.358119","-105.927955","09/17/2007 14:44","https://dwr.state.co.us/Tools/Structures/2105001",
|
||||
"2105002","W1604 WELL NO 01","FKA WDID 2013981-HOME 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0030, W1604","11822-R, 11822-R-R","07-8-1484","SOUTHERN STAR AG; SYKES, GLENN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","23","36.0 N","9.0 E","N","","","","","414511.0","4134305.0","37.351520","-105.965268","10/20/2014 16:58","https://dwr.state.co.us/Tools/Structures/2105002",
|
||||
"2105003","W0164 WELL NO 01","VALDEZ WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0164","20323-R","22-06817-12","HENDERSON, COLIN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","28","35.0 N","9.0 E","N","","","","","412005.0","4122790.0","37.247505","-105.992196","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105003",
|
||||
"2105005","W0188 WELL NO 01","GORDON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0188","780-R","24100486","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SW","21","36.0 N","10.0 E","N","","","","","421359.0","4133171.0","37.341905","-105.887836","05/29/2009 11:26","https://dwr.state.co.us/Tools/Structures/2105005",
|
||||
"2105006","W1975 WELL NO 01","WEST 40","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1975","10909-R","07-12-1046","VALDEZ RANCHES, LLC (VALDEZ, STEPHEN A.)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","6","35.0 N","9.0 E","N","","","","","409219.0","4128476.0","37.298483","-106.024299","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105006",
|
||||
"2105008","W2264 WELL NO 01","JOE VALDEZ HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2264","20767-R","20-02584","VALDEZ, JOE T.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","9","35.0 N","9.0 E","N","","","","","411231.0","4127044.0","37.285771","-106.001429","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105008",
|
||||
"2105009","W2521 WELL NO 15","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2521","19397-R","07-10-1039","L-11 FARMS LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","4","35.0 N","10.0 E","N","","","","","421062.0","4128355.0","37.298474","-105.890676","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105009",
|
||||
"2105010","W0266 WELL NO 02","CARMEL FIRE STATION ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0031, W0266","6851-R","20-05747-10","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/1996","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","24","36.0 N","8.0 E","N","","","","","407208.0","4133391.0","37.342581","-106.047600","01/06/2025 10:57","https://dwr.state.co.us/Tools/Structures/2105010",
|
||||
"2105011","W0293 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0293","6024-R","07-10-1143","HAMILTON, CLAY; HAMILTON, DIANA","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","30","36.0 N","9.0 E","N","","","","","408026.0","4131802.0","37.328341","-106.038170","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105011",
|
||||
"2105012","W0317 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0317","980-R","07-6-1106","ARCHER, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","24","36.0 N","9.0 E","N","","","","","416089.0","4133365.0","37.343192","-105.947347","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105012",
|
||||
"2105013","W0354 WELL NO 02","WM WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0009, W0354","10908-R","15-02721","GYLLING, IVAN W.","RGWCD SD6","10/31/2001","10/31/2025","3","21","CONEJOS","","","SW","NW","NE","31","36.0 N","9.0 E","N","","","","","408831.0","4131324.0","37.324113","-106.029026","05/03/2012 16:13","https://dwr.state.co.us/Tools/Structures/2105013",
|
||||
"2105014","W0458 WELL NO 01","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0458","12108-R","07-10-1152","BOOTH, JACE; MARTIN, JANELL","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","25","36.0 N","9.0 E","N","","","","","417688.0","4131569.0","37.327148","-105.929097","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105014",
|
||||
"2105015","W0616 WELL NO 01","VALDEZ HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0616","62751-F","04061480/11061647","SILVA FARM & RANCH, LLC (SILVA, INOCENCIO)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","10","35.0 N","9.0 E","N","","","","","413678.0","4127279.0","37.288120","-105.973855","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105015",
|
||||
"2105016","W0929 WELL NO 01","BRUSH FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0929","14216-R","GT18101020","MILLER, DAVID V. & CONSTANCE J.; MILLER, VAUGHN & CONNIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NW","1","35.0 N","9.0 E","N","","","","","416186.0","4129571.0","37.309006","-105.945823","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105016",
|
||||
"2105017","W0962 WELL NO 01","JACK'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0962","6726-R","07-10-1151","BOOTH, ED; MARTIN, JANELL","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","NW","28","36.0 N","9.0 E","N","","","","","411255.0","4132479.0","37.334757","-106.001808","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105017",
|
||||
"2105021","W2332 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0123, W2332","6837-R, 6837-R-R","03103795/05060266","HENDERSON, JAMES; SHAWCROFT FAATZ, MARTILLE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SW","36","36.0 N","9.0 E","N","","","","","416852.0","4129998.0","37.312915","-105.938357","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2105021",
|
||||
"2105022","80CW031 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0031","26595-F","15-05708","MARTIN, JANELL","RGWCD SD6","10/31/1996","10/31/2025","3","21","CONEJOS","","","","NW","SW","21","36.0 N","9.0 E","N","","","","","411653.0","4133669.0","37.345520","-105.997458","05/03/2012 16:24","https://dwr.state.co.us/Tools/Structures/2105022",
|
||||
"2105026","W0453 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0453","20311-R, 89297-F","07-12-1037","MCCARROLL, BRAD & KIM","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","10","35.0 N","9.0 E","N","","","","","412859.0","4127205.0","37.287376","-105.983085","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2105026",
|
||||
"2105031","W0465 WELL NO 02","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","90CW0011, W0465","14228-R","19-04780-10","REYNOLDS, JACK L.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","SW","25","36.0 N","10.0 E","N","","","","","425764.0","4132137.0","37.332948","-105.838007","09/17/2007 14:45","https://dwr.state.co.us/Tools/Structures/2105031",
|
||||
"2105037","W0024 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0024","440-R","10061612/10061626","CASH, RON; ROGERS, JUSTIN A.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","32","36.0 N","9.0 E","N","","","","","409636.0","4130403.0","37.315891","-106.019829","09/17/2007 14:45","https://dwr.state.co.us/Tools/Structures/2105037",
|
||||
"2105040","W0025 WELL NO 02","HOME QTR-FAR SOUTHWEST PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0025","7218-R","06-10-1532","FAUCETTE, GERALD; PRICE, STANLEY & JANICE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","29","36.0 N","9.0 E","N","","","","","409628.0","4131815.0","37.328616","-106.020091","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105040",
|
||||
"2105041","W0025 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0025","10394-F","22-04085-12","FAUCETTE, GERALD; PRICE, STANLEY & JANICE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","29","36.0 N","9.0 E","N","","","","","410428.0","4132067.0","37.330965","-106.011093","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105041",
|
||||
"2105042","W0039 WELL NO 01","HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0039","20314-R, 20314-R-R","07-10-1118","ARMSTRONG, MITCH","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","33","36.0 N","9.0 E","N","","","","","412843.0","4130006.0","37.312619","-105.983594","09/17/2007 14:44","https://dwr.state.co.us/Tools/Structures/2105042",
|
||||
"2105044","W0056 WELL NO 01","HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0056","2448-F","19-05677-10","COOMBS, JASON; COOMBS, LARRY W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","28","36.0 N","9.0 E","N","","","","","412025.0","4132639.0","37.336272","-105.993136","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105044",
|
||||
"2105045","W0058 WELL NO 01","LEO O. PRICE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0058","4566-R","10060723/12212604","ROBERTS, MICHON & THOMAS LEE II","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NW","SE","22","36.0 N","9.0 E","N","","","","","413727.0","4133667.0","37.345697","-105.974045","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105045",
|
||||
"2105046","W0111 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0111","770-R","10061615/10061630","DERRELL SHAWCROFT FAMILY RANCH LLC (SHAWCROFT, MARGARET & GREG)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","7","35.0 N","9.0 E","N","","","","","408820.0","4126929.0","37.284502","-106.028610","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105046",
|
||||
"2105055","W0157 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0157","10543-R","22-027424-14","CHAVEZ, CURTIS","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","12","35.0 N","8.0 E","N","","","","","407992.0","4126882.0","37.283997","-106.037944","05/24/2005 10:09","https://dwr.state.co.us/Tools/Structures/2105055",
|
||||
"2105056","W0180 WELL NO 01","RUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0180","5910-R, 35-WCB, 329421-","24-07513-10","LARSEN, RHETT","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","22","36.0 N","10.0 E","N","","","","","422727.0","4134173.0","37.351051","-105.872498","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105056",
|
||||
"2105058","W0202 WELL NO 01","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","13CW3005, W0202","10206-R, 10206-R-R","07-8-1279","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","2","35.0 N","8.0 E","N","","","","","404777.0","4128745.0","37.300463","-106.074445","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105058",
|
||||
"2105059","W0202 WELL NO 02","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","13CW3005, W0202","10207-R, 10207-R-R, 10207-R-R","06-10-1107","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","2","35.0 N","8.0 E","N","","","","","404774.0","4129397.0","37.306339","-106.074562","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105059",
|
||||
"2105062","W0251 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0251","2988-F","20-03723-12","NORTONVILLE CATTLE CO.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NE","34","36.0 N","10.0 E","N","","","","","423693.0","4130705.0","37.319874","-105.861235","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105062",
|
||||
"2105072","W0267 WELL NO 01","HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0267","6852-R","07-12-1069","CROWTHER, LEE & MICHELLE ; VALDEZ RANCHES, LLC (VALDEZ, STEPHEN A.)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","5","35.0 N","9.0 E","N","","","","","410045.0","4129280.0","37.305810","-106.015078","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105072",
|
||||
"2105077","W0353 (15CW3002) WELL NO 01","ACROSS FROM JOANN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","15CW3002, W0353","3919-F, 90507-F","25-02184-10","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","30","36.0 N","9.0 E","N","","","","","408018.0","4132560.0","37.335172","-106.038354","09/03/2020 14:02","https://dwr.state.co.us/Tools/Structures/2105077",
|
||||
"2105078","W0354 WELL NO 01","PUMP BY DIANA'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0354","13369-R","07-10-1062","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","30","36.0 N","9.0 E","N","","","","","408023.0","4132185.0","37.331793","-106.038251","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105078",
|
||||
"2105079","W0367 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0367","6177-F","06-12-1159","VALDEZ, LIONEL","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","NW","4","35.0 N","9.0 E","N","","","","","411660.0","4129265.0","37.305829","-105.996854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105079",
|
||||
"2105083","W0384 WELL NO 01","PUMP HOUSE #1-NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA JARA CREEK","00190746","","W0384","13971-F","19-01056-08","FOXWORTHY, MARK; LA JARA, TOWN OF (ATTN: WATER OPERATOR); ZARAGOZA, LARRY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NE","SW","14","35.0 N","9.0 E","N","","","","","414942.5","4125893.6","37.275754","-105.959439","12/02/2020 19:54","https://dwr.state.co.us/Tools/Structures/2105083",
|
||||
"2105084","W0384 WELL NO 02","PUMP HOUSE #2-SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0384","13928-F","19-01057-08","FOXWORTHY, MARK; LA JARA, TOWN OF (ATTN: WATER OPERATOR); ZARAGOZA, LARRY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","SW","14","35.0 N","9.0 E","N","","","","","414972.0","4125303.0","37.270430","-105.959033","12/02/2020 19:55","https://dwr.state.co.us/Tools/Structures/2105084",
|
||||
"2105087","W0428 WELL NO 01","HUTCHINSON WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0428","20238-R","07-12-1053","WEBER, DONALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NE","24","35.0 N","8.0 E","N","","","","","407569.0","4124445.0","37.261991","-106.042412","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105087",
|
||||
"2105088","W0429 WELL NO 01","MAPES LONG PIPE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0429","1340-R","06-10-1509","NATHEL GYLLING REVOCABLE TRUST; THOMAS, KRISTIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","28","36.0 N","9.0 E","N","","","","","412076.0","4131690.0","37.327724","-105.992448","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105088",
|
||||
"2105089","W0429 WELL NO 02","SW HOME WELL-JOHNSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0429","20313-R","04061483/10242120","NATHEL GYLLING REVOCABLE TRUST; THOMAS, KRISTIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NE","32","36.0 N","9.0 E","N","","","","","411218.0","4130856.0","37.320126","-106.002032","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105089",
|
||||
"2105090","W0465 WELL NO 01","QUINSET WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0465","14227-R","12062633/12062670","REYNOLDS, JACK L.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","23","36.0 N","10.0 E","N","","","","","425057.0","4133210.0","37.342562","-105.846095","09/17/2007 14:43","https://dwr.state.co.us/Tools/Structures/2105090",
|
||||
"2105091","W0465 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0465","161-WCB, 14229-R","21-07000-10","NORTONVILLE CATTLE CO.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NW","SW","26","36.0 N","10.0 E","N","","","","","424258.0","4131925.0","37.330916","-105.854984","09/17/2007 14:43","https://dwr.state.co.us/Tools/Structures/2105091",
|
||||
"2105131","W0492 WELL NO 01","WELL NO. 1 - M","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0492","20112-R, 335810-","24-05048-10","MORTENSEN, WILLIAM P.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","34","36.0 N","10.0 E","N","","","","","423344.0","4129893.0","37.312527","-105.865090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105131",
|
||||
"2105132","W0576 WELL NO 01","RESERVOIR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0576","11058-R","07-8-1082","GYLLING, IVAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SW","36","36.0 N","8.0 E","N","","","","","407190.0","4130242.0","37.314199","-106.047409","01/03/2013 09:32","https://dwr.state.co.us/Tools/Structures/2105132",
|
||||
"2105134","W0581 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0581","3910-F","06-10-1545","MT VALLEY FARMS (SIMPSON, CLEAVE)","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","SW","SW","NW","7","36.0 N","10.0 E","N","","","","","417762.0","4137281.0","37.378635","-105.928896","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105134",
|
||||
"2105138","W0615 WELL NO 01","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0615","62750-F, 79111-F","05-10-1494","SILVA FARM & RANCH, LLC (SILVA, INOCENCIO)","RGWCD SD6","10/31/2006","10/31/2025","3","21","CONEJOS","","","","SW","SW","3","35.0 N","9.0 E","N","","","","","412860.0","4128608.0","37.300021","-105.983238","05/03/2012 16:25","https://dwr.state.co.us/Tools/Structures/2105138",
|
||||
"2105151","W0617 WELL NO 01","HOMEPLACE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0617","10316-R","07-14-1001","HUFFAKER, BRADLEY H. & LEANN R.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NE","SW","8","35.0 N","9.0 E","N","","","","","410076.0","4127304.0","37.288004","-106.014489","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105151",
|
||||
"2105157","W0656 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0656","20239-R","14-08588-12","NORTON, KIP","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","19","35.0 N","9.0 E","N","","","","","408986.0","4125201.0","37.268944","-106.026526","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105157",
|
||||
"2105159","W0660 WELL NO 01","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0660","12797-R-R","16-04402-10","FRANSEN, NATHAN D.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","NW","29","36.0 N","9.0 E","N","","","","","409818.0","4132551.0","37.335268","-106.018036","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105159",
|
||||
"2105162","W0669 WELL NO 01","SCHLOMER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0669","13816-AD, 5845-F, 5845-F-R","21-01045-10","FAUCETTE, TYLER & ROCHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","36","36.0 N","10.0 E","N","","","","","426759.0","4131149.0","37.324122","-105.826678","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105162",
|
||||
"2105164","W0716 WELL NO 01","W716","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0716","6876-R","07-10-1029","MCCARROLL, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","24","36.0 N","9.0 E","N","","","","","416893.0","4134004.0","37.349023","-105.938343","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105164",
|
||||
"2105165","W0716 WELL NO 02","W0716-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0716","6877-R","07-10-1025","MCCARROLL, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","16","35.0 N","9.0 E","N","","","","","412017.0","4125778.0","37.274436","-105.992414","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105165",
|
||||
"2105167","W0731 WELL NO 01","HORTON WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0731","8716-R","GP12-3448-12","BAR TWO BAR RANCH, LLC (JUSTIN ROGERS & RONALD CASH); GYLLING, IVAN W.; ROGERS, JUSTIN A.; YUND, CHAY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","31","36.0 N","9.0 E","N","","","","","408030.0","4131024.0","37.321330","-106.038028","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105167",
|
||||
"2105168","W0732 WELL NO 01","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0732","5571-F","07-10-1048","GALLEGOS, DAVID; GONZALES, MARIA; GONZALES, MARTIN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","15","35.0 N","8.0 E","N","","","","","404324.0","4126217.0","37.277633","-106.079230","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105168",
|
||||
"2105173","W0785 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3007, W0785","1836-R","072017003071/11060631","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","SW","SW","SW","12","36.0 N","9.0 E","N","","","","","416139.0","4136461.0","37.371099","-105.947133","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105173",
|
||||
"2105187","W0809 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0809","20792-R","07-12-1036","MARTINEZ, MICHAEL M.; VIGIL, AMANDA & MELANIE (VIGIL-GARCIA)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","36","36.0 N","8.0 E","N","","","","","407196.0","4130966.0","37.320725","-106.047432","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105187",
|
||||
"2105188","W0817 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0817","8738-R","05-10-1256","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","NW","35","36.0 N","8.0 E","N","","","","","404748.0","4131764.0","37.327669","-106.075159","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105188",
|
||||
"2105190","W0817 WELL NO 03","#2 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0817","11715-F","05-10-1393","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","NW","34","36.0 N","8.0 E","N","","","","","403928.0","4131780.0","37.327728","-106.084416","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105190",
|
||||
"2105191","W0819 WELL NO 01","CHURCH FARM WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0819","12502-R","07-16-1001","PETERSON FARMS & RANCH, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NE","18","35.0 N","9.0 E","N","","","","","409617.0","4126028.0","37.276459","-106.019511","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105191",
|
||||
"2105203","W0853 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0853","5820-R","07060383/07060926","GALLEGOS, RICHARD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","SW","22","36.0 N","9.0 E","N","","","","","412938.0","4133970.0","37.348354","-105.982988","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105203",
|
||||
"2105215","W0875 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0875","20445-R","06-12-1118","PETERSON, ALAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","13","35.0 N","8.0 E","N","","","","","407573.0","4126006.0","37.276060","-106.042561","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105215",
|
||||
"2105216","W0876 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0876","13900-R, 8826-AD","07-10-1121","SHAWCROFT, JEFF","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","19","36.0 N","10.0 E","N","","","","","418746.0","4133169.0","37.341662","-105.917332","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105216",
|
||||
"2105244","W1054 WELL NO 01","DONNIE M.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1054","6226-R","07-10-1072","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","3","35.0 N","10.0 E","N","","","","","423368.0","4129072.0","37.305129","-105.864734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105244",
|
||||
"2105247","W1058 WELL NO 03","SIMPSON RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1058","11853-R","23-04331-10","MT VALLEY FARMS (SIMPSON, CLEAVE); SIMPSON, ALAN","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","","NW","SE","8","36.0 N","10.0 E","N","","","","","420378.0","4137172.0","37.377881","-105.899340","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105247",
|
||||
"2105303","W1275 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1275","21024-R, 21024-R-R","10061607/10061621","VALDEZ RANCHES, LLC (VALDEZ, STEPHEN A.); VALDEZ, STEPHEN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","4","35.0 N","9.0 E","N","","","","","411272.0","4129125.0","37.304531","-106.001215","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105303",
|
||||
"2105305","W1283 WELL NO 01","RIVERA RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1283","21025-R","04212961/10242122","VALDEZ, ARMANDO; VALDEZ, ARMANDO & JESSICA","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","11","35.0 N","8.0 E","N","","","","","405962.0","4127864.0","37.292644","-106.060965","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105305",
|
||||
"2105306","W1284 WELL NO 01","LA JARA RANCH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1284","4457-F","02071275/12062786","VALDEZ, ARMANDO & JESSICA","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","22","35.0 N","9.0 E","N","","","","","412833.0","4124150.0","37.259840","-105.983020","01/23/2009 14:01","https://dwr.state.co.us/Tools/Structures/2105306",
|
||||
"2105307","W1285 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1285","10287-R, 36-WCB","07-10-1197","GARCIA, MAC, CHRIS, ERNEST, JOHNNY & WILLIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","4","35.0 N","10.0 E","N","","","","","422577.0","4128326.0","37.298340","-105.873581","09/17/2007 14:41","https://dwr.state.co.us/Tools/Structures/2105307",
|
||||
"2105310","W1288 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","W1288","9471-F","19-04342","MCCARROLL, BRYCEN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","35","36.0 N","8.0 E","N","","","","","406377.0","4130332.0","37.314928","-106.056594","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105310",
|
||||
"2105315","W1321 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1321","13093-R","12062621/12062646","MARLENE CROWTHER REVOCABLE TRUST; MORTENSEN, LOREN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","6","35.0 N","10.0 E","N","","","","","418630.0","4128819.0","37.302446","-105.918164","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105315",
|
||||
"2105393","W1706 WELL NO 02","#6 BIG RED WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1706","2273-F","20-02934-10","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","26","36.0 N","8.0 E","N","","","","","405562.0","4132745.0","37.336593","-106.066098","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105393",
|
||||
"2105395","W1707 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","W1707","","07-8-1252","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","35","36.0 N","8.0 E","N","","","","","405553.0","4130696.0","37.318126","-106.065939","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105395",
|
||||
"2105396","W1707 WELL NO 06","GERALDS OLD KENT PLACE NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","W1707","11934-R","06-10-1106","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","35","36.0 N","8.0 E","N","","","","","405553.0","4130914.0","37.320090","-106.065966","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105396",
|
||||
"2105424","W1787 WELL NO BRAIDEN","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1787","1344-R","06-12-1054","BRAIDEN, JIM; NORTON, KIP","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","14","35.0 N","8.0 E","N","","","","","405932.0","4125995.0","37.275797","-106.061066","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105424",
|
||||
"2105430","W1849 WELL NO 02","MEADOW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1849","5546-F","11061482/11061580","CROWTHER, SHAD MARK & BRIANNA LEI","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","NE","NW","32","36.0 N","10.0 E","N","","","","","419923.0","4131172.0","37.323765","-105.903830","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105430",
|
||||
"2105464","13CW3001 WELL NO 01R","HOMEPLACE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3001, W1952","1210-R, 1210-R-R, 1210-R-R, 1210-R-R","13-09880-10","HAMILTON, JENSON T.","RGWCD SD6","10/31/2014","10/31/2025","3","21","CONEJOS","","","","NE","SE","7","35.0 N","9.0 E","N","","","","","409623.0","4127361.0","37.288474","-106.019605","10/08/2020 15:02","https://dwr.state.co.us/Tools/Structures/2105464",
|
||||
"2105476","W1972 WELL NO 01","BENCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1972","20357-R","07-10-1135","MCCARROLL, CRAIG A. & APRIL D.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","7","35.0 N","9.0 E","N","","","","","409215.0","4127680.0","37.291309","-106.024247","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105476",
|
||||
"2105486","W1991 WELL NO 01","W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0036, W1991","6694-R, 88769-F","07-10-1030","MORTENSEN, WILLIAM P.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","9","35.0 N","10.0 E","N","","","","","422150.0","4127462.0","37.290517","-105.878308","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105486",
|
||||
"2105520","W2047 WELL NO 06","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2047","3440-F","05-10-1539","MUNIZ, DAVID; MUNIZ, DAVID & MARGARET MUNIZ","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NE","SW","14","35.0 N","8.0 E","N","","","","","405134.0","4125802.0","37.273976","-106.070042","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105520",
|
||||
"2105552","W2140 WELL NO 02","WELL BY CREEK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2140","19768-R, 24-WCB, 26371-F","06-12-1144","NORTONVILLE CATTLE CO.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","22","36.0 N","10.0 E","N","","","","","423371.0","4133314.0","37.343362","-105.865139","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105552",
|
||||
"2105617","W2244 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2244","1022-R","12062637/12062663","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); MARTINEZ, LEROY & ROSALIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","NE","SW","NE","7","36.0 N","10.0 E","N","","","","","418863.0","4137382.0","37.379643","-105.916473","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105617",
|
||||
"2105618","W2244 WELL NO 07","CAR WASH ROAD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2244","5052-F","21-01410-12","2 J RANCHES LLC. (MARTINEZ, JOSEPH); FINNEGAN, CHUCK","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","21","35.0 N","9.0 E","N","","","","","412015.0","4124396.0","37.261980","-105.992273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105618",
|
||||
"2105653","W2332 WELL NO 02","SCHOOL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2332","5566-F","02072533/12062777","HENDERSON, JAMES; SHAWCROFT FAATZ, MARTILLE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","14","35.0 N","9.0 E","N","","","","","415298.0","4125808.0","37.275011","-105.955414","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105653",
|
||||
"2105668","W2503 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2503","13916-R, 13916-R-R","11060580/11060601","MILLER, VAUGHN & CONNIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","32","36.0 N","10.0 E","N","","","","","419366.0","4129924.0","37.312469","-105.909981","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105668",
|
||||
"2105882","PERMIT 47687 F","WEST PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","47687-F","11060551/11060637","GYLLING, IVAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","36","36.0 N","8.0 E","N","","","","","407479.0","4130476.0","37.316337","-106.044178","04/19/2007 14:24","https://dwr.state.co.us/Tools/Structures/2105882",
|
||||
"2105883","PERMIT 47667 F","EAST PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","47667-F","11060551/11060637","GYLLING, IVAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","36","36.0 N","8.0 E","N","","","","","407605.0","4130541.0","37.316935","-106.042764","12/17/2007 12:41","https://dwr.state.co.us/Tools/Structures/2105883",
|
||||
"2105885","W-202 WELL NO 3","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","13CW3005, W0202","10208-R-R","07-8-1490","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","2","35.0 N","8.0 E","N","","","","","405963.0","4129738.0","37.309533","-106.061191","09/21/2020 12:35","https://dwr.state.co.us/Tools/Structures/2105885",
|
||||
"2105886","13CW3005 WELL NO 3-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW3005","33866-F","07-8-1490","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","2","35.0 N","8.0 E","N","","","","","405689.0","4129454.0","37.306946","-106.064246","09/21/2020 12:40","https://dwr.state.co.us/Tools/Structures/2105886",
|
||||
"2105887","PERMIT 52040 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","48671-F, 52040-F","94-6290-8","NORTON, KIP","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NW","21","35.0 N","9.0 E","N","","","","","411593.0","4124480.0","37.262698","-105.997041","05/01/2007 10:08","https://dwr.state.co.us/Tools/Structures/2105887",
|
||||
"2105892","13CW3005 WELL NO 1-S","BEHIND CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3005","57594-F","07-8-1278","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","2","35.0 N","8.0 E","N","","","","","405151.0","4128880.0","37.301718","-106.070243","09/21/2020 12:22","https://dwr.state.co.us/Tools/Structures/2105892",
|
||||
"2105897","PERMIT 24129-R-F","SMALL RES WELL-#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","24129-F-R","05-8-4292","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","26","36.0 N","8.0 E","N","","","","","405478.0","4132702.0","37.336197","-106.067040","10/29/2007 18:01","https://dwr.state.co.us/Tools/Structures/2105897",
|
||||
"2105900","13CW3010 WELL NO 2-A","VEGGIE QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3010","43441-F, 43441-F-R","07-8-1432","ARMSTRONG, MITCH; ARMSTRONG, SHERRY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NW","34","36.0 N","9.0 E","N","","","","","413255.0","4131210.0","37.323509","-105.979086","09/22/2020 08:25","https://dwr.state.co.us/Tools/Structures/2105900",
|
||||
"2105901","PERMIT 22620-F-","NORTH PIVOT ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","22620-F","DM23-0925","SYKES, LISA K.","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","","SW","NE","18","36.0 N","10.0 E","N","","","","","418764.0","4135951.0","37.366737","-105.917434","10/29/2007 18:01","https://dwr.state.co.us/Tools/Structures/2105901",
|
||||
"2105904","13CW3005 WELL NO 2-S","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW3005","32315-F","06-10-1107","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","2","35.0 N","8.0 E","N","","","","","404769.0","4129080.0","37.303482","-106.074578","09/21/2020 12:28","https://dwr.state.co.us/Tools/Structures/2105904",
|
||||
"2105910","07CW30 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0030","51312-F","17-06001-8","SOUTHERN STAR AG; SYKES, GLENN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","23","36.0 N","9.0 E","N","","","","","415670.0","4134459.0","37.353014","-105.952201","02/07/2011 15:26","https://dwr.state.co.us/Tools/Structures/2105910",
|
||||
"2106419","95CW009 WELL NO 01","VALDEZ FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0009","10127-F","12204472/12204380","VALDEZ, GARRETT S.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SE","16","35.0 N","9.0 E","N","","","","","412837.0","4125835.0","37.275027","-105.983172","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2106419",
|
||||
"2205024","W-3898 HOT WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3898","10167-F","19-08455, GP07-8-1251","FAUCETTE, TYLER & ROCHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SE","30","36.0 N","11.0 E","N","","","","","428299.0","4132068.0","37.332525","-105.809387","01/04/2016 14:44","https://dwr.state.co.us/Tools/Structures/2205024",
|
||||
"2205025","W3898 HOT WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3898","10165-F, 309913-","18-05411-10","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","NE","NW","SW","2","35.0 N","10.0 E","N","","","","","424263.0","4128939.0","37.304004","-105.854622","04/12/2018 08:52","https://dwr.state.co.us/Tools/Structures/2205025",
|
||||
"2205111","W0392 WELL NO 01","SIMPSON WELL W-392--1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0392","20111-R","08-8-2240","UNITED STATES BUREAU OF LAND MANAGEMENT (SMITH, ROY)","RGWCD SD6","10/31/2010","10/31/2025","3","22","CONEJOS","","","","NW","NW","12","35.0 N","10.0 E","N","","","","","425788.0","4127870.0","37.294492","-105.837309","12/02/2020 20:00","https://dwr.state.co.us/Tools/Structures/2205111",
|
||||
"2205146","W0715 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0715","3080-F","07-10-1253","JOHNSON, SCOTT (LA JARA)","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SW","11","35.0 N","10.0 E","N","","","","","424167.0","4126682.0","37.283653","-105.855475","03/26/2014 16:05","https://dwr.state.co.us/Tools/Structures/2205146",
|
||||
"2205927","W2233 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2233","2053-F","06-10-1538","VALLEY LAND & CATTLE, LLC (MILLER, MITCH)","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SE","2","35.0 N","10.0 E","N","","","","","425771.0","4128284.0","37.298222","-105.837542","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205927",
|
||||
|
Loading…
x
Reference in New Issue
Block a user