From d3edff3c3de7866bb1caa646b3ba8f33d464ee0f Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 22 Sep 2025 09:31:16 -0600 Subject: [PATCH 01/30] FIX: transfer lon/lat instead of original e/n location --- transfers/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transfers/util.py b/transfers/util.py index 327c55391..c9092b741 100644 --- a/transfers/util.py +++ b/transfers/util.py @@ -277,7 +277,7 @@ def make_location(row: pd.Series) -> Location: location = Location( nma_pk_location=row.LocationId, # name=row.PointID, - point=point.wkt, + point=transformed_point.wkt, elevation=z, release_status="public" if row.PublicRelease else "private", elevation_accuracy=row.AltitudeAccuracy, From 0a7305349f88b1e4005416282c1c4326bf8d9bcf Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 22 Sep 2025 16:12:32 -0600 Subject: [PATCH 02/30] WIP: water level transfer script --- core/lexicon.json | 6 +- db/contact.py | 3 + transfers/waterlevels_transfer.py | 156 ++++++++++++++++++++++++++++-- 3 files changed, 158 insertions(+), 7 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index 1c4980449..91332e39f 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -344,9 +344,11 @@ {"categories": [{"name": "organization", "description": null}], "term": "NMED", "definition": "New Mexico Environment Department"}, {"categories": [{"name": "organization", "description": null}], "term": "NMOSE", "definition": "New Mexico Office of the State Engineer"}, {"categories": [{"name": "organization", "description": null}], "term": "NMBGMR", "definition": "New Mexico Bureau of Geology and Mineral Resources"}, + {"categories": [{"name": "organization", "description": null}], "term": "NMRWA", "definition": "New Mexico Rural Water Association"}, {"categories": [{"name": "organization", "description": null}], "term": "Bernalillo Cty", "definition": "Bernalillo County"}, {"categories": [{"name": "organization", "description": null}], "term": "BLM", "definition": "Bureau of Land Management"}, {"categories": [{"name": "organization", "description": null}], "term": "SFC", "definition": "Santa Fe County"}, + {"categories": [{"name": "organization", "description": null}], "term": "CSF", "definition": "City of Santa Fe"}, {"categories": [{"name": "organization", "description": null}], "term": "NESWCD", "definition": "Northeast Soil & Water Conservation District"}, {"categories": [{"name": "organization", "description": null}], "term": "NMISC", "definition": "New Mexico Interstate Stream Commission"}, {"categories": [{"name": "organization", "description": null}], "term": "PVACD", "definition": "Pecos Valley Artesian Conservancy District"}, @@ -357,6 +359,7 @@ {"categories": [{"name": "organization", "description": null}], "term": "USFS", "definition": "United States Forest Service"}, {"categories": [{"name": "organization", "description": null}], "term": "NMT", "definition": "New Mexico Tech"}, {"categories": [{"name": "organization", "description": null}], "term": "NPS", "definition": "National Park Service"}, + {"categories": [{"name": "organization", "description": null}], "term": "Otero SWCD", "definition": "Otero Soil and Water Conservation District"}, {"categories": [{"name": "collection_method", "description": null}], "term": "manual", "definition": "manual sampling"}, {"categories": [{"name": "collection_method", "description": null}], "term": "continuous", "definition": "continuous sampling"}, @@ -425,7 +428,8 @@ {"name": "phone_type", "description": null}, {"name": "address_type", "description": null}, {"name": "contact_type", "description": null}], "term": "Primary", "definition": "primary"}, - {"categories": [{"name": "contact_type", "description": null}], "term": "Secondary", "definition": "secondary"}, + {"categories": [{"name": "contact_type", "description": null}], "term": "Secondary", "definition": "secondary"}, + {"categories": [{"name": "contact_type", "description": null}], "term": "NM_Aquifer Import", "definition": "import from NM_Aquifer whose contact type is not known"}, {"categories": [{"name": "email_type", "description": null}, {"name": "phone_type", "description": null}, diff --git a/db/contact.py b/db/contact.py index d2ac9466d..8fb2ff5e9 100644 --- a/db/contact.py +++ b/db/contact.py @@ -39,7 +39,10 @@ class Contact(Base, AutoBaseMixin, ReleaseMixin): organization: Mapped[str] = mapped_column(String(100), nullable=True) role: Mapped[str] = lexicon_term(nullable=False) contact_type: Mapped[str] = lexicon_term(nullable=False) + + # primary keys of the nm aquifer tables from which the contacts originate nma_pk_owners: Mapped[str] = mapped_column(String(100), nullable=True) + nma_pk_waterlevels: Mapped[str] = mapped_column(String(100), nullable=True) phones: Mapped[List["Phone"]] = relationship( "Phone", back_populates="contact", passive_deletes=True diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 2edf71df6..dbb2ede9a 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -19,7 +19,15 @@ import pandas as pd -from db import Thing, Sample, Observation, FieldEvent, FieldActivity +from db import ( + Thing, + Sample, + Observation, + FieldEvent, + FieldActivity, + # FieldEventContactAssociation, + Contact, +) from transfers.util import ( filter_to_valid_point_ids, logger, @@ -28,6 +36,9 @@ lu_to_lexicon_map, ) +# keep a dictionary of created Contacts to avoid repeated SQL queries +CREATED_CONTACTS = {} + def transfer_water_levels(session): @@ -79,10 +90,7 @@ def transfer_water_levels(session): else: collecting_organization = row.MeasuringAgency - if pd.isna(row.MeasuredBy): - sampler_name = "Unknown" - else: - sampler_name = row.MeasuredBy + # --- FieldEvent --- field_event = FieldEvent( thing=thing, @@ -92,6 +100,9 @@ def transfer_water_levels(session): ) session.add(field_event) + session.flush() + + # --- FieldActivity --- field_activity = FieldActivity( field_event=field_event, @@ -99,6 +110,139 @@ def transfer_water_levels(session): release_status=release_status, ) session.add(field_activity) + session.flush() + + # --- Contact/FieldEventContactAssociation --- + # AMP feedback: + # - is Duke Engring the same as Duke University? Is it from their engineering school? + # - speak with AMP to help identify all initials + """ + Developer's notes + + - If MeasuredBy is NULL + - If this is the first NULL that has been encountered, create a + Contact with name "NM_Aquifer NULL" + - If this is not the first NULL that has been encountered, use + the existing Contact with name "NM_Aquifer NULL" + - If MeasuredBy is not NULL + - If a Contact with name MeasuredBy already exists, use it + - If a Contact with name MeasuredBy does not exist, create it + """ + if pd.isna(row.MeasuredBy): + measured_by = None + else: + measured_by = row.MeasuredBy + + # TODO: fix + if measured_by in CREATED_CONTACTS.keys(): + contact = CREATED_CONTACTS[measured_by] + else: + if "AGW" in measured_by: + contact_name = "A. G. Wassenaar, Inc" + contact_organization = collecting_organization + elif measured_by == "CDM": + contact_name = "CDM Smith" + contact_organization = collecting_organization + elif measured_by == "CH2MHill": + contact_name = "CH2M Hill" + contact_organization = collecting_organization + elif measured_by == "Chevron personnel": + contact_name = "Chevron" + contact_organization = collecting_organization + elif measured_by in [ + "City of Santa Fe", + "City of Santa Fe", + "City of Santa Fe", + "CityofSantaFe", + ]: + contact_name = None + contact_organization = "CSF" + elif measured_by in ["Consultant", "Consulting Pro."]: + contact_name = None + contact_organization = collecting_organization + elif measured_by in ["DBSA", "DBStephens & Assoc"]: + contact_name = "Daniel B. Stephens & Associates, Inc" + contact_organization = collecting_organization + elif "Glorieta Geoscienc" in measured_by: + contact_name = "Glorieta Geoscience, Inc" + contact_organization = collecting_organization + elif measured_by == "Golder Ass. For OSE": + contact_name = "Golder Associates, Inc" + contact_organization = "NMOSE" + elif measured_by == "Hydroscience Assoc.": + contact_name = "Hydroscience Associates, Inc" + contact_organization = collecting_organization + elif "IC Tech" in measured_by or "ICTech" in measured_by: + # AMP: is this also true for IC Tech and IC Tech, Inc? All other names with "IC Tech" in them indicate the measurement was taken for NMOSE + contact_name = "IC Tech, Inc" + contact_organization = "NMOSE" + elif "John Shomaker" in measured_by: + contact_name = "John Shomaker & Associates, Inc" + contact_organization = collecting_organization + elif measured_by == "Mario Gonzales NMRWA": + contact_name = "Mario Gonzales" + contact_organization = "NMRWA" + elif "Minton" in measured_by: + contact_name = "Minton Engineers" + contact_organization = collecting_organization + elif "MJ Darr" in measured_by: + contact_name = "MJDarrconsult, Inc" + contact_organization = collecting_organization + elif measured_by == "NMBGMR": + contact_name = None + contact_organization = "NMBGMR" + elif measured_by == "NMED": + contact_name = None + contact_organization = "NMED" + elif measured_by in ["NMOSE", "NMOSE?"]: + contact_name = None + contact_organization = "NMOSE" + elif measured_by == "NPS": + contact_name = None + contact_organization = "NPS" + elif measured_by == "OSE": + contact_name = None + contact_organization = "NMOSE" + elif measured_by == "OSE; Doug Rappuhn": + contact_name = "Doug Rappuhn" + contact_organization = "NMOSE" + elif measured_by == "Otero SWCD": + contact_name = None + contact_organization = "Otero SWCD" + elif measured_by in ["Pump company", "PumpService"]: + contact_name = None + contact_organization = collecting_organization + elif measured_by == "PVACD person": + contact_name = None + contact_organization = "PVACD" + elif measured_by == "REPORTED": + contact_name = None + contact_organization = collecting_organization + elif measured_by == "TWDB": + contact_name = None + contact_organization = "TWDB" + + """ + Developer's notes + + Use existing contact for the thing if measured by is the owner + """ + if measured_by not in ["Owner", "Owner report"]: + contact = Contact( + name=measured_by, + role="sampler", + contact_type="NM_Aquifer Import", + organization=collecting_organization, + nma_pk_waterlevels=row.GlobalID, + ) + session.add(contact) + session.flush() # to get the contact.id + + CREATED_CONTACTS[measured_by] = contact + else: + contact = thing.contacts[0] + + # --- Sample --- if not pd.isna(row.MeasurementMethod): sample_method = lu_to_lexicon_map[ @@ -109,7 +253,7 @@ def transfer_water_levels(session): sample = Sample( field_activity=field_activity, - sampler_name=sampler_name, + # sampler_name=sampler_name, sample_date=dt_utc, sample_matrix="water", sample_name=str( From 71a43280c8051e53e0e36ae9903f534dce1c4000 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 23 Sep 2025 09:52:45 -0600 Subject: [PATCH 03/30] WIP: NMA WaterLevels MeasuredBy -> Contacts --- core/lexicon.json | 1 + transfers/waterlevels_transfer.py | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/core/lexicon.json b/core/lexicon.json index 2f7992ec5..ee8551a30 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -360,6 +360,7 @@ {"categories": [{"name": "organization", "description": null}], "term": "NMT", "definition": "New Mexico Tech"}, {"categories": [{"name": "organization", "description": null}], "term": "NPS", "definition": "National Park Service"}, {"categories": [{"name": "organization", "description": null}], "term": "Otero SWCD", "definition": "Otero Soil and Water Conservation District"}, + {"categories": [{"name": "organization", "description": null}], "term": "Taos SWCD", "definition": "Taos Soil and Water Conservation District"}, {"categories": [{"name": "collection_method", "description": null}], "term": "manual", "definition": "manual sampling"}, {"categories": [{"name": "collection_method", "description": null}], "term": "continuous", "definition": "continuous sampling"}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index dbb2ede9a..f3e73ed31 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -218,6 +218,24 @@ def transfer_water_levels(session): elif measured_by == "REPORTED": contact_name = None contact_organization = collecting_organization + elif measured_by in ["Rodgers & Co", "Rodgers & Co."]: + contact_name = "Rodgers & Company, Inc" + contact_organization = collecting_organization + elif measured_by == "Sandia National labs": + contact_name = None + contact_organization = "SNL" + elif measured_by in ["Santa Fe County", "SFC", "SFCounty LF staff"]: + contact_name = None + contact_organization = "SFC" + elif measured_by == "SFC/Frost": + contact_name = "Frost" + contact_organization = "SFC" + elif measured_by == "Statewide Drilling": + contact_name = "Statewide Drilling, Inc" + contact_organization = collecting_organization + elif measured_by == "Taos SWCD": + contact_name = None + contact_organization = "Taos SWCD" elif measured_by == "TWDB": contact_name = None contact_organization = "TWDB" From 30bcf9a701a80f73aad0a9723746d2d5b13ca2b5 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 23 Sep 2025 12:42:56 -0600 Subject: [PATCH 04/30] WIP: waterlevels transfer --- transfers/waterlevels_transfer.py | 54 +++++++++++++++++-------------- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index f3e73ed31..86941c2ce 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -157,9 +157,6 @@ def transfer_water_levels(session): ]: contact_name = None contact_organization = "CSF" - elif measured_by in ["Consultant", "Consulting Pro."]: - contact_name = None - contact_organization = collecting_organization elif measured_by in ["DBSA", "DBStephens & Assoc"]: contact_name = "Daniel B. Stephens & Associates, Inc" contact_organization = collecting_organization @@ -188,43 +185,28 @@ def transfer_water_levels(session): elif "MJ Darr" in measured_by: contact_name = "MJDarrconsult, Inc" contact_organization = collecting_organization - elif measured_by == "NMBGMR": - contact_name = None - contact_organization = "NMBGMR" - elif measured_by == "NMED": - contact_name = None - contact_organization = "NMED" - elif measured_by in ["NMOSE", "NMOSE?"]: + elif measured_by == "NMOSE?": contact_name = None contact_organization = "NMOSE" - elif measured_by == "NPS": - contact_name = None - contact_organization = "NPS" elif measured_by == "OSE": contact_name = None contact_organization = "NMOSE" elif measured_by == "OSE; Doug Rappuhn": contact_name = "Doug Rappuhn" contact_organization = "NMOSE" - elif measured_by == "Otero SWCD": - contact_name = None - contact_organization = "Otero SWCD" elif measured_by in ["Pump company", "PumpService"]: contact_name = None contact_organization = collecting_organization elif measured_by == "PVACD person": contact_name = None contact_organization = "PVACD" - elif measured_by == "REPORTED": - contact_name = None - contact_organization = collecting_organization elif measured_by in ["Rodgers & Co", "Rodgers & Co."]: contact_name = "Rodgers & Company, Inc" contact_organization = collecting_organization elif measured_by == "Sandia National labs": contact_name = None contact_organization = "SNL" - elif measured_by in ["Santa Fe County", "SFC", "SFCounty LF staff"]: + elif measured_by in ["Santa Fe County", "SFCounty LF staff"]: contact_name = None contact_organization = "SFC" elif measured_by == "SFC/Frost": @@ -232,13 +214,35 @@ def transfer_water_levels(session): contact_organization = "SFC" elif measured_by == "Statewide Drilling": contact_name = "Statewide Drilling, Inc" - contact_organization = collecting_organization - elif measured_by == "Taos SWCD": + elif measured_by in [ + "?", + "Consultant", + "Consulting Pro.", + "REPORTED", + "Unknown", + "Unknown; reported", + "Water operator", + "Well owner", + "WWTP", + "WWTP personnel", + ]: contact_name = None - contact_organization = "Taos SWCD" - elif measured_by == "TWDB": + contact_organization = collecting_organization + elif measured_by in [ + "NMBGMR", + "NMED", + "NMOSE", + "NPS", + "Otero SWCD", + "SFC", + "Taos SWCD", + "TWDB", + "USFS", + "USGS", + "USGS WRD", + ]: contact_name = None - contact_organization = "TWDB" + contact_organization = measured_by """ Developer's notes From 5cd0ca4b06c652fdcae6bdabe2acbcfef18aab3a Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 23 Sep 2025 15:15:24 -0600 Subject: [PATCH 05/30] WIP: water levels transfer --- core/lexicon.json | 5 +- transfers/waterlevels_transfer.py | 327 ++++++++++++++++++------------ 2 files changed, 202 insertions(+), 130 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index ee8551a30..60ac2c4ea 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -31,7 +31,8 @@ {"name": "coordinate_method", "description": null}, {"name": "current_use", "description": null}, {"name": "status", "description": null}, - {"name": "organization", "description": null}], "term": "Unknown", "definition": "Unknown"}, + {"name": "organization", "description": null}, + {"name": "role", "description": null}], "term": "Unknown", "definition": "Unknown"}, {"categories": [{"name": "construction_method", "description": null}], "term": "Air-rotary", "definition": "Air-rotary"}, {"categories": [{"name": "construction_method", "description": null}], "term": "Bored or augered", "definition": "Bored or augered"}, @@ -423,6 +424,8 @@ {"categories": [{"name": "role", "description": null}], "term": "Hydrogeologist", "definition": "Hydrogeologist"}, {"categories": [{"name": "role", "description": null}], "term": "Engineer", "definition": "Engineer"}, {"categories": [{"name": "role", "description": null}], "term": "Technician", "definition": "Technician"}, + {"categories": [{"name": "role", "description": null}], "term": "Organization", "definition": "A contact that is an organization"}, + {"categories": [{"name": "role", "description": null}], "term": "Specialist", "definition": "Specialist"}, {"categories": [{"name": "email_type", "description": null}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 86941c2ce..eded79484 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -133,136 +133,205 @@ def transfer_water_levels(session): else: measured_by = row.MeasuredBy - # TODO: fix - if measured_by in CREATED_CONTACTS.keys(): - contact = CREATED_CONTACTS[measured_by] + # sometimes multiple contacts need to be created, so they'll be stored in a list + # the nth name corresponds with the nth organization + contact_names = [] + contact_organizations = [] + roles = [] + # --- Companies/Organizations --- + if "AGW" in measured_by: + contact_names.append("A. G. Wassenaar, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "CDM": + contact_names.append("CDM Smith") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "CH2MHill": + contact_names.append("CH2M Hill") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "Chevron personnel": + contact_names.append("Chevron") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by in [ + "City of Santa Fe", + "City of Santa Fe", + "City of Santa Fe", + "CityofSantaFe", + ]: + contact_names.append(None) + contact_organizations.append("CSF") + roles.append("Organization") + elif measured_by in ["DBSA", "DBStephens & Assoc"]: + contact_names.append("Daniel B. Stephens & Associates, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif "Glorieta Geoscienc" in measured_by: + contact_names.append("Glorieta Geoscience, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "Golder Ass. For OSE": + contact_names.append("Golder Associates, Inc") + contact_organizations.append("NMOSE") + roles.append("Organization") + elif measured_by == "Hydroscience Assoc.": + contact_names.append("Hydroscience Associates, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif "IC Tech" in measured_by or "ICTech" in measured_by: + contact_names.append("IC Tech, Inc") + contact_organizations.append("NMOSE") + roles.append("Organization") + elif "John Shomaker" in measured_by: + contact_names.append("John Shomaker & Associates, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "Mario Gonzales NMRWA": + contact_names.append("Mario Gonzales") + contact_organizations.append("NMRWA") + roles.append("Organization") + elif "Minton" in measured_by: + contact_names.append("Minton Engineers") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif "MJ Darr" in measured_by: + contact_names.append("MJDarrconsult, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "NMOSE?": + contact_names.append(None) + contact_organizations.append("NMOSE") + roles.append("Organization") + elif measured_by == "OSE": + contact_names.append(None) + contact_organizations.append("NMOSE") + roles.append("Organization") + elif measured_by == "OSE; Doug Rappuhn": + contact_names.append("Doug Rappuhn") + contact_organizations.append("NMOSE") + roles.append("Organization") + elif measured_by in ["Pump company", "PumpService"]: + contact_names.append(None) + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "PVACD person": + contact_names.append(None) + contact_organizations.append("PVACD") + roles.append("Organization") + elif measured_by in ["Rodgers & Co", "Rodgers & Co."]: + contact_names.append("Rodgers & Company, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by == "Sandia National labs": + contact_names.append(None) + contact_organizations.append("SNL") + roles.append("Organization") + elif measured_by in ["Santa Fe County", "SFCounty LF staff"]: + contact_names.append(None) + contact_organizations.append("SFC") + roles.append("Organization") + elif measured_by == "SFC/Frost": + contact_names.append("Frost") + contact_organizations.append("SFC") + roles.append("Organization") + elif measured_by == "Statewide Drilling": + contact_names.append("Statewide Drilling, Inc") + contact_organizations.append(collecting_organization) + roles.append("Organization") + elif measured_by in [ + "?", + "Consultant", + "Consulting Pro.", + "REPORTED", + "Unknown", + "Unknown; reported", + "Water operator", + "WWTP", + "WWTP personnel", + ]: + # if measured_by + contact_names.append(None) + contact_organizations.append(collecting_organization) + roles.append("Unknown") + elif measured_by in [ + "NMBGMR", + "NMED", + "NMOSE", + "NPS", + "Otero SWCD", + "SFC", + "Taos SWCD", + "TWDB", + "USFS", + "USGS", + "USGS WRD", + ]: + contact_names.append(None) + contact_organizations.append(measured_by) + roles.append("Organization") + + # --- People --- + # TODO: AMP feedback to ask if the roles are correct + elif measured_by == "Wagner": + contact_names.append("Stacy Timmons") + contact_organizations.append(collecting_organization) + roles.append("Hydrogeologist") + elif measured_by in ["Anders Lundahl", "Anders Lundalh"]: + contact_names.append("Anders Lundahl") + contact_organizations.append(collecting_organization) + roles.append("Specialist") + elif measured_by == "CE": + contact_names.append("Cathy Eisen") + contact_organizations.append(collecting_organization) + roles.append("Hydrogeologist") + """ + Developer's notes + + Use existing contact for the thing if measured by is the owner + """ + if measured_by not in ["Owner", "Owner report", "Well owner"]: + for i, c in enumerate(contact_names): + if c not in CREATED_CONTACTS.keys(): + # create new contact if not already created + name = contact_names[i] + organization = contact_organizations[i] + + if len(roles) > 0: + role = roles[i] + else: + role = "sampler" + + contact = Contact( + name=name, + role="sampler", + contact_type="NM_Aquifer Import", + organization=organization, + nma_pk_waterlevels=row.GlobalID, + ) + session.add(contact) + session.flush() # to get the contact.id + + CREATED_CONTACTS[c] = contact + + """ + Developer's notes + + Assumes that the first listed contact is the lead and the + person who took the sample. The subsequent contact will be + participants in the field event + """ + if i == 0: + # leader + # sampler + pass + else: + # participant + # not sampler + pass else: - if "AGW" in measured_by: - contact_name = "A. G. Wassenaar, Inc" - contact_organization = collecting_organization - elif measured_by == "CDM": - contact_name = "CDM Smith" - contact_organization = collecting_organization - elif measured_by == "CH2MHill": - contact_name = "CH2M Hill" - contact_organization = collecting_organization - elif measured_by == "Chevron personnel": - contact_name = "Chevron" - contact_organization = collecting_organization - elif measured_by in [ - "City of Santa Fe", - "City of Santa Fe", - "City of Santa Fe", - "CityofSantaFe", - ]: - contact_name = None - contact_organization = "CSF" - elif measured_by in ["DBSA", "DBStephens & Assoc"]: - contact_name = "Daniel B. Stephens & Associates, Inc" - contact_organization = collecting_organization - elif "Glorieta Geoscienc" in measured_by: - contact_name = "Glorieta Geoscience, Inc" - contact_organization = collecting_organization - elif measured_by == "Golder Ass. For OSE": - contact_name = "Golder Associates, Inc" - contact_organization = "NMOSE" - elif measured_by == "Hydroscience Assoc.": - contact_name = "Hydroscience Associates, Inc" - contact_organization = collecting_organization - elif "IC Tech" in measured_by or "ICTech" in measured_by: - # AMP: is this also true for IC Tech and IC Tech, Inc? All other names with "IC Tech" in them indicate the measurement was taken for NMOSE - contact_name = "IC Tech, Inc" - contact_organization = "NMOSE" - elif "John Shomaker" in measured_by: - contact_name = "John Shomaker & Associates, Inc" - contact_organization = collecting_organization - elif measured_by == "Mario Gonzales NMRWA": - contact_name = "Mario Gonzales" - contact_organization = "NMRWA" - elif "Minton" in measured_by: - contact_name = "Minton Engineers" - contact_organization = collecting_organization - elif "MJ Darr" in measured_by: - contact_name = "MJDarrconsult, Inc" - contact_organization = collecting_organization - elif measured_by == "NMOSE?": - contact_name = None - contact_organization = "NMOSE" - elif measured_by == "OSE": - contact_name = None - contact_organization = "NMOSE" - elif measured_by == "OSE; Doug Rappuhn": - contact_name = "Doug Rappuhn" - contact_organization = "NMOSE" - elif measured_by in ["Pump company", "PumpService"]: - contact_name = None - contact_organization = collecting_organization - elif measured_by == "PVACD person": - contact_name = None - contact_organization = "PVACD" - elif measured_by in ["Rodgers & Co", "Rodgers & Co."]: - contact_name = "Rodgers & Company, Inc" - contact_organization = collecting_organization - elif measured_by == "Sandia National labs": - contact_name = None - contact_organization = "SNL" - elif measured_by in ["Santa Fe County", "SFCounty LF staff"]: - contact_name = None - contact_organization = "SFC" - elif measured_by == "SFC/Frost": - contact_name = "Frost" - contact_organization = "SFC" - elif measured_by == "Statewide Drilling": - contact_name = "Statewide Drilling, Inc" - elif measured_by in [ - "?", - "Consultant", - "Consulting Pro.", - "REPORTED", - "Unknown", - "Unknown; reported", - "Water operator", - "Well owner", - "WWTP", - "WWTP personnel", - ]: - contact_name = None - contact_organization = collecting_organization - elif measured_by in [ - "NMBGMR", - "NMED", - "NMOSE", - "NPS", - "Otero SWCD", - "SFC", - "Taos SWCD", - "TWDB", - "USFS", - "USGS", - "USGS WRD", - ]: - contact_name = None - contact_organization = measured_by - - """ - Developer's notes - - Use existing contact for the thing if measured by is the owner - """ - if measured_by not in ["Owner", "Owner report"]: - contact = Contact( - name=measured_by, - role="sampler", - contact_type="NM_Aquifer Import", - organization=collecting_organization, - nma_pk_waterlevels=row.GlobalID, - ) - session.add(contact) - session.flush() # to get the contact.id - - CREATED_CONTACTS[measured_by] = contact - else: - contact = thing.contacts[0] + contact = thing.contacts[0] # --- Sample --- From 42e07ed447f9f9b839b4221dcf38a4fbf9ede640 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 23 Sep 2025 17:03:04 -0600 Subject: [PATCH 06/30] WIP: work on waterlevels transfer --- core/lexicon.json | 21 +++++- transfers/waterlevels_transfer.py | 108 ++++++++++++++++++++---------- 2 files changed, 91 insertions(+), 38 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index 60ac2c4ea..f92086d02 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -346,7 +346,7 @@ {"categories": [{"name": "organization", "description": null}], "term": "NMOSE", "definition": "New Mexico Office of the State Engineer"}, {"categories": [{"name": "organization", "description": null}], "term": "NMBGMR", "definition": "New Mexico Bureau of Geology and Mineral Resources"}, {"categories": [{"name": "organization", "description": null}], "term": "NMRWA", "definition": "New Mexico Rural Water Association"}, - {"categories": [{"name": "organization", "description": null}], "term": "Bernalillo Cty", "definition": "Bernalillo County"}, + {"categories": [{"name": "organization", "description": null}], "term": "Bernalillo County", "definition": "Bernalillo County"}, {"categories": [{"name": "organization", "description": null}], "term": "BLM", "definition": "Bureau of Land Management"}, {"categories": [{"name": "organization", "description": null}], "term": "SFC", "definition": "Santa Fe County"}, {"categories": [{"name": "organization", "description": null}], "term": "CSF", "definition": "City of Santa Fe"}, @@ -363,6 +363,24 @@ {"categories": [{"name": "organization", "description": null}], "term": "Otero SWCD", "definition": "Otero Soil and Water Conservation District"}, {"categories": [{"name": "organization", "description": null}], "term": "Taos SWCD", "definition": "Taos Soil and Water Conservation District"}, + {"categories": [{"name": "organization", "description": null}], "term": "A&T Pump & Well Service, LLC", "definition": "A&T Pump & Well Service, LLC"}, + {"categories": [{"name": "organization", "description": null}], "term": "A. G. Wassenaar, Inc", "definition": "A. G. Wassenaar, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "AMEC", "definition": "AMEC"}, + {"categories": [{"name": "organization", "description": null}], "term": "CDM Smith", "definition": "CDM Smith"}, + {"categories": [{"name": "organization", "description": null}], "term": "CH2M Hill", "definition": "CH2M Hill"}, + {"categories": [{"name": "organization", "description": null}], "term": "Chevron", "definition": "Chevron"}, + {"categories": [{"name": "organization", "description": null}], "term": "Daniel B. Stephens & Associates, Inc", "definition": "Daniel B. Stephens & Associates, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Glorieta Geoscience, Inc", "definition": "Glorieta Geoscience, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Golder Associates, Inc", "definition": "Golder Associates, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Hydroscience Associates, Inc", "definition": "Hydroscience Associates, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "IC Tech, Inc", "definition": "IC Tech, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "John Shomaker & Associates, Inc", "definition": "John Shomaker & Associates, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Minton Engineers", "definition": "Minton Engineers"}, + {"categories": [{"name": "organization", "description": null}], "term": "MJDarrconsult, Inc", "definition": "MJDarrconsult, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Rodgers & Company, Inc", "definition": "Rodgers & Company, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Statewide Drilling, Inc", "definition": "Statewide Drilling, Inc"}, + + {"categories": [{"name": "collection_method", "description": null}], "term": "manual", "definition": "manual sampling"}, {"categories": [{"name": "collection_method", "description": null}], "term": "continuous", "definition": "continuous sampling"}, @@ -426,6 +444,7 @@ {"categories": [{"name": "role", "description": null}], "term": "Technician", "definition": "Technician"}, {"categories": [{"name": "role", "description": null}], "term": "Organization", "definition": "A contact that is an organization"}, {"categories": [{"name": "role", "description": null}], "term": "Specialist", "definition": "Specialist"}, + {"categories": [{"name": "role", "description": null}], "term": "Research Assistant", "definition": "Research Assistant"}, {"categories": [{"name": "email_type", "description": null}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index eded79484..00ed3b90f 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -85,17 +85,11 @@ def transfer_water_levels(session): measurement is the same as the date/time of the field event. """ - if pd.isna(row.MeasuringAgency): - collecting_organization = "Unknown" - else: - collecting_organization = row.MeasuringAgency - # --- FieldEvent --- field_event = FieldEvent( thing=thing, event_date=dt_utc, - collecting_organization=collecting_organization, release_status=release_status, ) @@ -133,27 +127,43 @@ def transfer_water_levels(session): else: measured_by = row.MeasuredBy + if pd.isna(row.MeasuringAgency): + measuring_agency = "Unknown" + else: + measuring_agency = row.MeasuringAgency + # sometimes multiple contacts need to be created, so they'll be stored in a list # the nth name corresponds with the nth organization contact_names = [] contact_organizations = [] roles = [] # --- Companies/Organizations --- - if "AGW" in measured_by: - contact_names.append("A. G. Wassenaar, Inc") - contact_organizations.append(collecting_organization) + if measured_by == "A&T Pump & Well Serv": + contact_names.append(None) + contact_organizations.append("A&T Pump & Well Service, LLC") + roles.append("Organization") + elif "AGW" in measured_by: + if "Turner" in measured_by: + contact_names.append("Turner") + else: + contact_names.append(None) + contact_organizations.append("A. G. Wassenaar, Inc") + roles.append("Organization") + elif measured_by == "AMEC": + contact_names.append(None) + contact_organizations.append("AMEC Earth & Environmental") roles.append("Organization") elif measured_by == "CDM": - contact_names.append("CDM Smith") - contact_organizations.append(collecting_organization) + contact_names.append(None) + contact_organizations.append("CDM Smith") roles.append("Organization") elif measured_by == "CH2MHill": - contact_names.append("CH2M Hill") - contact_organizations.append(collecting_organization) + contact_names.append(None) + contact_organizations.append("CH2M Hill") roles.append("Organization") elif measured_by == "Chevron personnel": contact_names.append("Chevron") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif measured_by in [ "City of Santa Fe", @@ -166,11 +176,11 @@ def transfer_water_levels(session): roles.append("Organization") elif measured_by in ["DBSA", "DBStephens & Assoc"]: contact_names.append("Daniel B. Stephens & Associates, Inc") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif "Glorieta Geoscienc" in measured_by: contact_names.append("Glorieta Geoscience, Inc") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif measured_by == "Golder Ass. For OSE": contact_names.append("Golder Associates, Inc") @@ -178,7 +188,7 @@ def transfer_water_levels(session): roles.append("Organization") elif measured_by == "Hydroscience Assoc.": contact_names.append("Hydroscience Associates, Inc") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif "IC Tech" in measured_by or "ICTech" in measured_by: contact_names.append("IC Tech, Inc") @@ -186,7 +196,7 @@ def transfer_water_levels(session): roles.append("Organization") elif "John Shomaker" in measured_by: contact_names.append("John Shomaker & Associates, Inc") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif measured_by == "Mario Gonzales NMRWA": contact_names.append("Mario Gonzales") @@ -194,11 +204,11 @@ def transfer_water_levels(session): roles.append("Organization") elif "Minton" in measured_by: contact_names.append("Minton Engineers") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif "MJ Darr" in measured_by: contact_names.append("MJDarrconsult, Inc") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif measured_by == "NMOSE?": contact_names.append(None) @@ -212,17 +222,13 @@ def transfer_water_levels(session): contact_names.append("Doug Rappuhn") contact_organizations.append("NMOSE") roles.append("Organization") - elif measured_by in ["Pump company", "PumpService"]: - contact_names.append(None) - contact_organizations.append(collecting_organization) - roles.append("Organization") elif measured_by == "PVACD person": contact_names.append(None) contact_organizations.append("PVACD") roles.append("Organization") elif measured_by in ["Rodgers & Co", "Rodgers & Co."]: contact_names.append("Rodgers & Company, Inc") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif measured_by == "Sandia National labs": contact_names.append(None) @@ -238,12 +244,14 @@ def transfer_water_levels(session): roles.append("Organization") elif measured_by == "Statewide Drilling": contact_names.append("Statewide Drilling, Inc") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Organization") elif measured_by in [ "?", "Consultant", "Consulting Pro.", + "Pump company", + "PumpService", "REPORTED", "Unknown", "Unknown; reported", @@ -253,7 +261,7 @@ def transfer_water_levels(session): ]: # if measured_by contact_names.append(None) - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Unknown") elif measured_by in [ "NMBGMR", @@ -273,19 +281,49 @@ def transfer_water_levels(session): roles.append("Organization") # --- People --- - # TODO: AMP feedback to ask if the roles are correct - elif measured_by == "Wagner": + elif measured_by == " Wagner": contact_names.append("Stacy Timmons") - contact_organizations.append(collecting_organization) + contact_organizations.append("NMBGMR") roles.append("Hydrogeologist") + elif measured_by == "AL": + contact_names.append("Angela Lucero") + contact_organizations.append("NMBGMR") + roles.append("Hydrologist") + elif measured_by == "AL, GR": + contact_names.extend(["Angela Lucero", "Geoff Rawling"]) + contact_organizations.extend(["NMBGMR", "NMBGMR"]) + elif measured_by == "AL, SC": + contact_names.extend(["Angela Lucero", " Scott Christenson"]) + contact_organizations.extend(["NMBGMR", "NMBGMR"]) + roles.extend(["Hydrologist", "Technician"]) + elif measured_by == "Amy Kronson": + contact_names.append("Amy Kronson") + contact_organizations.append("Bernalillo County") + roles.append("Technician") elif measured_by in ["Anders Lundahl", "Anders Lundalh"]: contact_names.append("Anders Lundahl") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Specialist") + elif measured_by == "Andrew Matejunas": + contact_names.append(measured_by) + contact_organizations.append("NMBGMR") + roles.append("Research Assistant") + elif measured_by == "Andy Manning": + contact_names.append(measured_by) + contact_organizations.append("USGS") + roles.append("Hydrogeologist") + elif measured_by == "Anthony Chavez": + # TODO: determine role + continue elif measured_by == "CE": contact_names.append("Cathy Eisen") - contact_organizations.append(collecting_organization) + contact_organizations.append(measuring_agency) roles.append("Hydrogeologist") + + else: + logger.warning( + f"The following record has not been mapped to a Contact: {row.MeasuredBy} // {row.MeasuringAgency} for PointID {row.PointID}" + ) """ Developer's notes @@ -297,11 +335,7 @@ def transfer_water_levels(session): # create new contact if not already created name = contact_names[i] organization = contact_organizations[i] - - if len(roles) > 0: - role = roles[i] - else: - role = "sampler" + role = roles[i] contact = Contact( name=name, From 68f7c7e701ac34100fd787213c581df5c30d7825 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Wed, 24 Sep 2025 09:34:23 -0600 Subject: [PATCH 07/30] WIP: water levels transfer --- core/lexicon.json | 1 + transfers/waterlevels_transfer.py | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index f92086d02..3fa28a444 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -366,6 +366,7 @@ {"categories": [{"name": "organization", "description": null}], "term": "A&T Pump & Well Service, LLC", "definition": "A&T Pump & Well Service, LLC"}, {"categories": [{"name": "organization", "description": null}], "term": "A. G. Wassenaar, Inc", "definition": "A. G. Wassenaar, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "AMEC", "definition": "AMEC"}, + {"categories": [{"name": "organization", "description": null}], "term": "Balleau Groundwater, Inc", "definition": "Balleau Groundwater, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "CDM Smith", "definition": "CDM Smith"}, {"categories": [{"name": "organization", "description": null}], "term": "CH2M Hill", "definition": "CH2M Hill"}, {"categories": [{"name": "organization", "description": null}], "term": "Chevron", "definition": "Chevron"}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 00ed3b90f..789b2294b 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -153,6 +153,14 @@ def transfer_water_levels(session): contact_names.append(None) contact_organizations.append("AMEC Earth & Environmental") roles.append("Organization") + elif measured_by == "ARCADIS": + contact_names.append(None) + contact_organizations.append("Arcadis") + roles.append("Organization") + elif "Balleau" in measured_by: + contact_names.append("Balleau Groundwater, Inc") + contact_organizations.append(measuring_agency) + roles.append("Organization") elif measured_by == "CDM": contact_names.append(None) contact_organizations.append("CDM Smith") @@ -259,11 +267,12 @@ def transfer_water_levels(session): "WWTP", "WWTP personnel", ]: - # if measured_by + # Unknowns contact_names.append(None) contact_organizations.append(measuring_agency) roles.append("Unknown") elif measured_by in [ + "Arcadis", "NMBGMR", "NMED", "NMOSE", @@ -276,6 +285,7 @@ def transfer_water_levels(session): "USGS", "USGS WRD", ]: + # organizations whose names do not need to be changed contact_names.append(None) contact_organizations.append(measured_by) roles.append("Organization") @@ -313,7 +323,7 @@ def transfer_water_levels(session): contact_organizations.append("USGS") roles.append("Hydrogeologist") elif measured_by == "Anthony Chavez": - # TODO: determine role + # TODO: AMP determine role continue elif measured_by == "CE": contact_names.append("Cathy Eisen") From b93d48b8f5f7705fab2cf17887cf0fd5f9705940 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Wed, 24 Sep 2025 13:37:11 -0600 Subject: [PATCH 08/30] WIP: water levels transfer --- transfers/waterlevels_transfer.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 789b2294b..6111116f0 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -137,6 +137,11 @@ def transfer_water_levels(session): contact_names = [] contact_organizations = [] roles = [] + + # TODO: get help figuring out (AMP) + if measured_by in ["Anthony Chavez", "BEI", "BF/RG"]: + continue + # --- Companies/Organizations --- if measured_by == "A&T Pump & Well Serv": contact_names.append(None) @@ -161,6 +166,10 @@ def transfer_water_levels(session): contact_names.append("Balleau Groundwater, Inc") contact_organizations.append(measuring_agency) roles.append("Organization") + elif measured_by == "Bureau": + contact_names.append(None) + contact_organizations.append("NMBGMR") + roles.append("Organization") elif measured_by == "CDM": contact_names.append(None) contact_organizations.append("CDM Smith") @@ -186,6 +195,11 @@ def transfer_water_levels(session): contact_names.append("Daniel B. Stephens & Associates, Inc") contact_organizations.append(measuring_agency) roles.append("Organization") + elif measured_by == "Calvert": + contact_names.append("Calvert") + contact_organizations.append("Daniel B. Stephens & Associates, Inc") + # TODO: see if AMP knows this person's name and role + roles.append("Unknown") elif "Glorieta Geoscienc" in measured_by: contact_names.append("Glorieta Geoscience, Inc") contact_organizations.append(measuring_agency) @@ -322,9 +336,10 @@ def transfer_water_levels(session): contact_names.append(measured_by) contact_organizations.append("USGS") roles.append("Hydrogeologist") - elif measured_by == "Anthony Chavez": - # TODO: AMP determine role - continue + elif measured_by in ["Bob Borton", "Borton"]: + contact_names.append("Bob Borton") + contact_organizations.append("NMOSE") + roles.append("Geologist") elif measured_by == "CE": contact_names.append("Cathy Eisen") contact_organizations.append(measuring_agency) From 5c5772dca360172e21559e50deefc93ed5729b51 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Thu, 25 Sep 2025 11:03:53 -0600 Subject: [PATCH 09/30] WIP: water levels transfer --- transfers/waterlevels_transfer.py | 128 ++++++++++++++++++------------ 1 file changed, 76 insertions(+), 52 deletions(-) diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 6111116f0..5a7eebc14 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -138,87 +138,92 @@ def transfer_water_levels(session): contact_organizations = [] roles = [] + # ns --> names + # os --> organizations + # rs --> roles + # TODO: get help figuring out (AMP) if measured_by in ["Anthony Chavez", "BEI", "BF/RG"]: continue # --- Companies/Organizations --- if measured_by == "A&T Pump & Well Serv": - contact_names.append(None) - contact_organizations.append("A&T Pump & Well Service, LLC") - roles.append("Organization") + ns = [None] + os = ["A&T Pump & Well Service, LLC"] + rs = ["Organization"] elif "AGW" in measured_by: if "Turner" in measured_by: - contact_names.append("Turner") + ns = ["Turner"] else: - contact_names.append(None) - contact_organizations.append("A. G. Wassenaar, Inc") - roles.append("Organization") + ns = [None] + os = ["A. G. Wassenaar, Inc"] + rs = ["Organization"] elif measured_by == "AMEC": - contact_names.append(None) - contact_organizations.append("AMEC Earth & Environmental") - roles.append("Organization") + ns = [None] + os = ["AMEC Earth & Environmental"] + rs = ["Organization"] elif measured_by == "ARCADIS": - contact_names.append(None) - contact_organizations.append("Arcadis") - roles.append("Organization") + ns = [None] + os = ["Arcadis"] + rs = ["Organization"] elif "Balleau" in measured_by: - contact_names.append("Balleau Groundwater, Inc") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Balleau Groundwater, Inc"] + rs = ["Organization"] elif measured_by == "Bureau": - contact_names.append(None) - contact_organizations.append("NMBGMR") - roles.append("Organization") + ns = [None] + os = ["NMBGMR"] + rs = ["Organization"] elif measured_by == "CDM": - contact_names.append(None) - contact_organizations.append("CDM Smith") - roles.append("Organization") + ns = [None] + os = ["CDM Smith"] + rs = ["Organization"] elif measured_by == "CH2MHill": - contact_names.append(None) - contact_organizations.append("CH2M Hill") - roles.append("Organization") + ns = [None] + os = ["CH2M Hill"] + rs = ["Organization"] elif measured_by == "Chevron personnel": - contact_names.append("Chevron") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Chevron"] + rs = ["Organization"] elif measured_by in [ "City of Santa Fe", "City of Santa Fe", "City of Santa Fe", "CityofSantaFe", ]: - contact_names.append(None) - contact_organizations.append("CSF") - roles.append("Organization") + ns = [None] + os = ["CSF"] + rs = ["Organization"] elif measured_by in ["DBSA", "DBStephens & Assoc"]: - contact_names.append("Daniel B. Stephens & Associates, Inc") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Daniel B. Stephens & Associates, Inc"] + rs = ["Organization"] elif measured_by == "Calvert": - contact_names.append("Calvert") - contact_organizations.append("Daniel B. Stephens & Associates, Inc") + ns = ["Calvert"] + os = ["Daniel B. Stephens & Associates, Inc"] # TODO: see if AMP knows this person's name and role - roles.append("Unknown") + rs = ["Unknown"] elif "Glorieta Geoscienc" in measured_by: - contact_names.append("Glorieta Geoscience, Inc") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Glorieta Geoscience, Inc"] + rs = ["Organization"] elif measured_by == "Golder Ass. For OSE": - contact_names.append("Golder Associates, Inc") - contact_organizations.append("NMOSE") - roles.append("Organization") + ns = [None] + os = ["Golder Associates, Inc"] + rs = ["Organization"] elif measured_by == "Hydroscience Assoc.": - contact_names.append("Hydroscience Associates, Inc") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Hydroscience Associates, Inc"] + rs = ["Organization"] elif "IC Tech" in measured_by or "ICTech" in measured_by: - contact_names.append("IC Tech, Inc") - contact_organizations.append("NMOSE") - roles.append("Organization") + ns = [None] + os = ["IC Tech, Inc"] + rs = ["Organization"] elif "John Shomaker" in measured_by: - contact_names.append("John Shomaker & Associates, Inc") - contact_organizations.append(measuring_agency) + ns = [None] + os = ["John Shomaker & Associates, Inc"] + rs = ["Organization"] roles.append("Organization") elif measured_by == "Mario Gonzales NMRWA": contact_names.append("Mario Gonzales") @@ -342,8 +347,24 @@ def transfer_water_levels(session): roles.append("Geologist") elif measured_by == "CE": contact_names.append("Cathy Eisen") - contact_organizations.append(measuring_agency) + contact_organizations.append("NMBGMR") roles.append("Hydrogeologist") + elif measured_by == "CE PJ": + contact_names.extend(["Cathy Eisen", "Peggy Johnson"]) + contact_organizations.extend(["NMBGMR", "NMBGMR"]) + roles.extend(["Hydrogeologist", "Hydrogeologist"]) + elif measured_by in ["CE TK", "CE, TK"]: + contact_names.extend(["Cathy Eisen", "Trevor Kludt"]) + contact_organizations.extend(["NMBGMR", "NMBGMR"]) + roles.extend(["Hydrogeologist", "Hydrogeologist"]) + elif measured_by == "CE, GR": + contact_names.extend(["Cathy Eisen", "Geoff Rawling"]) + contact_organizations.extend(["NMBGMR", "NMBGMR"]) + roles.extend(["Hydrogeologist", "Hydrogeologist"]) + elif measured_by == "CM": + contact_names.extend(["Cris Morton"]) + contact_organizations.extend(["NMBGMR"]) + roles.extend(["Hydrogeologist"]) else: logger.warning( @@ -355,6 +376,9 @@ def transfer_water_levels(session): Use existing contact for the thing if measured by is the owner """ if measured_by not in ["Owner", "Owner report", "Well owner"]: + contact_names.extend(ns) + contact_organizations.extend(os) + roles.extend(rs) for i, c in enumerate(contact_names): if c not in CREATED_CONTACTS.keys(): # create new contact if not already created From cca507e041caf6ff803b34d6c4830fbf16a5f86c Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Fri, 26 Sep 2025 19:04:22 -0600 Subject: [PATCH 10/30] WIP: water levels transfer --- transfers/waterlevels_transfer.py | 169 +++++++++++++++--------------- 1 file changed, 83 insertions(+), 86 deletions(-) diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 094214fcd..975c14613 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -245,55 +245,51 @@ def transfer_water_levels(session): ns = [None] os = ["John Shomaker & Associates, Inc"] rs = ["Organization"] - roles.append("Organization") elif measured_by == "Mario Gonzales NMRWA": - contact_names.append("Mario Gonzales") - contact_organizations.append("NMRWA") - roles.append("Organization") + # TODO: does AMP know this person's role at NMRWA? + ns = ["Mario Gonzalez"] + os = ["NMRWA"] + rs = ["Unknown"] elif "Minton" in measured_by: - contact_names.append("Minton Engineers") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Minton Engineers"] + rs = ["Organization"] elif "MJ Darr" in measured_by: - contact_names.append("MJDarrconsult, Inc") - contact_organizations.append(measuring_agency) - roles.append("Organization") - elif measured_by == "NMOSE?": - contact_names.append(None) - contact_organizations.append("NMOSE") - roles.append("Organization") - elif measured_by == "OSE": - contact_names.append(None) - contact_organizations.append("NMOSE") - roles.append("Organization") + ns = [None] + rs = ["MJDarrconsult, Inc"] + os = [measuring_agency] + elif measured_by in ["NMOSE?", "OSE"]: + ns = [None] + os = ["NMOSE"] + rs = ["Organization"] elif measured_by == "OSE; Doug Rappuhn": - contact_names.append("Doug Rappuhn") - contact_organizations.append("NMOSE") - roles.append("Organization") + ns = ["Doug Rappuhn"] + os = ["NMOSE"] + rs = ["Hydrologist"] elif measured_by == "PVACD person": - contact_names.append(None) - contact_organizations.append("PVACD") - roles.append("Organization") + ns = [None] + os = ["PVACD"] + rs = ["Organization"] elif measured_by in ["Rodgers & Co", "Rodgers & Co."]: - contact_names.append("Rodgers & Company, Inc") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Rodgers & Company, Inc"] + rs = ["Organization"] elif measured_by == "Sandia National labs": - contact_names.append(None) - contact_organizations.append("SNL") - roles.append("Organization") + ns = [None] + os = ["SNL"] + rs = ["Organization"] elif measured_by in ["Santa Fe County", "SFCounty LF staff"]: - contact_names.append(None) - contact_organizations.append("SFC") - roles.append("Organization") + ns = [None] + os = ["SFC"] + rs = ["Organization"] elif measured_by == "SFC/Frost": - contact_names.append("Frost") - contact_organizations.append("SFC") - roles.append("Organization") + ns = ["Frost"] + os = ["SFC"] + rs = ["Unknown"] elif measured_by == "Statewide Drilling": - contact_names.append("Statewide Drilling, Inc") - contact_organizations.append(measuring_agency) - roles.append("Organization") + ns = [None] + os = ["Statewide Drilling, Inc"] + rs = ["Organization"] elif measured_by in [ "?", "Consultant", @@ -308,9 +304,9 @@ def transfer_water_levels(session): "WWTP personnel", ]: # Unknowns - contact_names.append(None) - contact_organizations.append(measuring_agency) - roles.append("Unknown") + ns = [None] + os = [measuring_agency] + rs = ["Unknown"] elif measured_by in [ "Arcadis", "NMBGMR", @@ -326,66 +322,67 @@ def transfer_water_levels(session): "USGS WRD", ]: # organizations whose names do not need to be changed - contact_names.append(None) - contact_organizations.append(measured_by) - roles.append("Organization") + ns = [None] + os = [measured_by] + rs = ["Organization"] # --- People --- elif measured_by == " Wagner": - contact_names.append("Stacy Timmons") - contact_organizations.append("NMBGMR") - roles.append("Hydrogeologist") + ns = ["Stacy Timmons"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] elif measured_by == "AL": - contact_names.append("Angela Lucero") - contact_organizations.append("NMBGMR") - roles.append("Hydrologist") + ns = ["Angela Lucero"] + os = ["NMBGMR"] + rs = ["Hydrologist"] elif measured_by == "AL, GR": - contact_names.extend(["Angela Lucero", "Geoff Rawling"]) - contact_organizations.extend(["NMBGMR", "NMBGMR"]) + ns = ["Angela Lucero", "Geoff Rawling"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrologist", "Hydrogeologist"] elif measured_by == "AL, SC": - contact_names.extend(["Angela Lucero", " Scott Christenson"]) - contact_organizations.extend(["NMBGMR", "NMBGMR"]) - roles.extend(["Hydrologist", "Technician"]) + ns = ["Angela Lucero", "Scott Christenson"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrologist", "Technician"] elif measured_by == "Amy Kronson": - contact_names.append("Amy Kronson") - contact_organizations.append("Bernalillo County") - roles.append("Technician") + ns = ["Amy Kronson"] + os = ["NMBGMR"] + rs = ["Technician"] elif measured_by in ["Anders Lundahl", "Anders Lundalh"]: - contact_names.append("Anders Lundahl") - contact_organizations.append(measuring_agency) - roles.append("Specialist") + ns = ["Anders Lundahl"] + os = [measuring_agency] + rs = ["Specialist"] elif measured_by == "Andrew Matejunas": - contact_names.append(measured_by) - contact_organizations.append("NMBGMR") - roles.append("Research Assistant") + ns = [measured_by] + os = ["NMBGMR"] + rs = ["Research Assistant"] elif measured_by == "Andy Manning": - contact_names.append(measured_by) - contact_organizations.append("USGS") - roles.append("Hydrogeologist") + ns = [measured_by] + os = ["USGS"] + rs = ["Hydrogeologist"] elif measured_by in ["Bob Borton", "Borton"]: - contact_names.append("Bob Borton") - contact_organizations.append("NMOSE") - roles.append("Geologist") + ns = ["Bob Borton"] + os = ["NMBGMR"] + rs = ["Geologist"] elif measured_by == "CE": - contact_names.append("Cathy Eisen") - contact_organizations.append("NMBGMR") - roles.append("Hydrogeologist") + ns = ["Cathy Eisen"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] elif measured_by == "CE PJ": - contact_names.extend(["Cathy Eisen", "Peggy Johnson"]) - contact_organizations.extend(["NMBGMR", "NMBGMR"]) - roles.extend(["Hydrogeologist", "Hydrogeologist"]) + ns = ["Cathy Eisen", "Peggy Johnson"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by in ["CE TK", "CE, TK"]: - contact_names.extend(["Cathy Eisen", "Trevor Kludt"]) - contact_organizations.extend(["NMBGMR", "NMBGMR"]) - roles.extend(["Hydrogeologist", "Hydrogeologist"]) + ns = ["Cathy Eisen", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by == "CE, GR": - contact_names.extend(["Cathy Eisen", "Geoff Rawling"]) - contact_organizations.extend(["NMBGMR", "NMBGMR"]) - roles.extend(["Hydrogeologist", "Hydrogeologist"]) + ns = ["Cathy Eisen", "Geoff Rawling"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by == "CM": - contact_names.extend(["Cris Morton"]) - contact_organizations.extend(["NMBGMR"]) - roles.extend(["Hydrogeologist"]) + ns = ["Cris Morton"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] else: logger.warning( From f57d0dcc6c29386ba5e0030edebfd9c09d18d559 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Fri, 26 Sep 2025 19:42:10 -0600 Subject: [PATCH 11/30] WIP: water levels transfer --- core/lexicon.json | 1 + transfers/waterlevels_transfer.py | 77 +++++++++++++++++++++++++++++-- 2 files changed, 75 insertions(+), 3 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index e80b07cb4..22d8e5c9d 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -452,6 +452,7 @@ {"categories": [{"name": "role", "description": null}], "term": "Organization", "definition": "A contact that is an organization"}, {"categories": [{"name": "role", "description": null}], "term": "Specialist", "definition": "Specialist"}, {"categories": [{"name": "role", "description": null}], "term": "Research Assistant", "definition": "Research Assistant"}, + {"categories": [{"name": "role", "description": null}], "term": "Research Scientist", "definition": "Research Scientist"}, {"categories": [{"name": "email_type", "description": null}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 975c14613..17df7108b 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -164,10 +164,47 @@ def transfer_water_levels(session): # rs --> roles # TODO: get help figuring out (AMP) - if measured_by in ["Anthony Chavez", "BEI", "BF/RG"]: + if measured_by in [ + "Anthony Chavez", + "BEI", + "BF/RG", + "Borchert", + "Borton & Cooper", + "CDWR", + "Chaves/Cruz", + "Chavez/Cruz", + "CM, AK" "Cook", + "Coons", + "Cooper", + "Corbin", + "Crocker", + "Cruz", + "Cruz-Tribble", + "Cruz/Frost", + "D.Bird", + "D.D.", + "D.Duncan", + "Dames & Moore", + "Dames/Moore", + "Dave Snider", + "David N Jenkins", + "David N. Jenkins", + "DC", + "Decker", + "DL, TK", + "DR", + "DR, ST", + "Duke Engring", + "Duncan", + ]: + logger.critical( + f"Skipping water level for PointID {row.PointID} because contact could not be determined for {measured_by}" + ) + # TODO: if any of these people are not knowable after AMP review put them into db + # as Unknown/Unknown. These can be audited in the future with nma_pk_waterlevels continue - # --- Companies/Organizations --- + # --- Companies/Organizations/Misc --- if measured_by == "A&T Pump & Well Serv": ns = [None] os = ["A&T Pump & Well Service, LLC"] @@ -225,6 +262,10 @@ def transfer_water_levels(session): os = ["Daniel B. Stephens & Associates, Inc"] # TODO: see if AMP knows this person's name and role rs = ["Unknown"] + elif measured_by == "Driller": + ns = [None] + os = [measuring_agency] + rs = ["Driller"] elif "Glorieta Geoscienc" in measured_by: ns = [None] os = ["Glorieta Geoscience, Inc"] @@ -262,7 +303,8 @@ def transfer_water_levels(session): ns = [None] os = ["NMOSE"] rs = ["Organization"] - elif measured_by == "OSE; Doug Rappuhn": + elif measured_by in ["OSE; Doug Rappuhn", "D.Rappuhn OSE"]: + # TODO: verify role with AMP ns = ["Doug Rappuhn"] os = ["NMOSE"] rs = ["Hydrologist"] @@ -383,6 +425,35 @@ def transfer_water_levels(session): ns = ["Cris Morton"] os = ["NMBGMR"] rs = ["Hydrogeologist"] + elif measured_by == "CM, EM": + ns = ["Cris Morton", "Ethan Mamer"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "CM, LS, KP": + # TODO: verify Kitty's role with AMP + ns = ["Cris Morton", "Laila Sturgis", "Kitty Pokorny"] + os = ["NMBGMR", "NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist", "Hydrogeologist"] + elif measured_by == "CM, LS, KrPe": + ns = ["Cris Morton", "Laila Sturgis", "Kirsten Pearthree"] + os = ["NMBGMR", "NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist", "Research Scientist"] + elif measured_by == "CM, SC": + ns = ["Cris Morton", "Scott Christenson"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Technician"] + elif measured_by == "CM, TK": + ns = ["Cris Morton", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "Dan McGregor": + ns = [measured_by] + os = ["Bernalillo County"] + rs = ["Hydrogeologist"] + elif measured_by in ["Dennis Cooper", "Dennis R. Cooper"]: + ns = ["Dennis Cooper"] + os = ["NMOSE"] + rs = ["Engineer"] else: logger.warning( From ee51383a8556afee66a8246c33ccf34a9b12fcbd Mon Sep 17 00:00:00 2001 From: jacob-a-brown Date: Sat, 27 Sep 2025 01:42:32 +0000 Subject: [PATCH 12/30] Formatting changes --- transfers/contact_transfer.py | 98 ++++++++++++++++++++++------------ transfers/link_ids_transfer.py | 4 +- transfers/well_transfer.py | 4 +- 3 files changed, 70 insertions(+), 36 deletions(-) diff --git a/transfers/contact_transfer.py b/transfers/contact_transfer.py index 80dfad4c8..81741fd56 100644 --- a/transfers/contact_transfer.py +++ b/transfers/contact_transfer.py @@ -107,54 +107,71 @@ def _add_first_contact(session, row, thing): "nma_pk_owners": row.OwnerKey, "addresses": [], "emails": [], - "phones": [] + "phones": [], } contact = _make_contact_and_assoc(session, contact_data, thing) if row.Email: - email = _make_email('first', row.OwnerKey, email=row.Email, - email_type="Primary", - release_status=release_status) + email = _make_email( + "first", + row.OwnerKey, + email=row.Email, + email_type="Primary", + release_status=release_status, + ) if email: contact.emails.append(email) if row.Phone: - phone = _make_phone('first', row.OwnerKey, phone_number=row.Phone, - phone_type="Primary", - release_status=release_status) + phone = _make_phone( + "first", + row.OwnerKey, + phone_number=row.Phone, + phone_type="Primary", + release_status=release_status, + ) if phone: contact.phones.append(phone) if row.CellPhone: - phone = _make_phone('first', row.OwnerKey, phone_number=row.CellPhone, - phone_type="Mobile", - release_status=release_status) + phone = _make_phone( + "first", + row.OwnerKey, + phone_number=row.CellPhone, + phone_type="Mobile", + release_status=release_status, + ) if phone: contact.phones.append(phone) if row.MailingAddress: - address = _make_address('first', row.OwnerKey, - 'mailing', - address_line_1=row.MailingAddress, - city=row.MailCity, - state=row.MailState, - postal_code=row.MailZipCode, - address_type="Mailing", - release_status=release_status) + address = _make_address( + "first", + row.OwnerKey, + "mailing", + address_line_1=row.MailingAddress, + city=row.MailCity, + state=row.MailState, + postal_code=row.MailZipCode, + address_type="Mailing", + release_status=release_status, + ) if address: contact.addresses.append(address) if row.PhysicalAddress: - address = _make_address('first', row.OwnerKey, - 'physical', - address_line_1=row.PhysicalAddress, - city=row.PhysicalCity, - state=row.PhysicalState, - postal_code=row.PhysicalZipCode, - address_type="Physical", - release_status=release_status - ) + address = _make_address( + "first", + row.OwnerKey, + "physical", + address_line_1=row.PhysicalAddress, + city=row.PhysicalCity, + state=row.PhysicalState, + postal_code=row.PhysicalZipCode, + address_type="Physical", + release_status=release_status, + ) if address: contact.addresses.append(address) @@ -174,22 +191,30 @@ def _add_second_contact(session, row, thing): "nma_pk_owners": row.OwnerKey, "addresses": [], "emails": [], - "phones": [] + "phones": [], } contact = _make_contact_and_assoc(session, contact_data, thing) if row.SecondCtctEmail: - email = _make_email('second', row.OwnerKey, email=row.SecondCtctEmail, - email_type="Primary", - release_status=release_status) + email = _make_email( + "second", + row.OwnerKey, + email=row.SecondCtctEmail, + email_type="Primary", + release_status=release_status, + ) if email: contact.emails.append(email) if row.SecondCtctPhone: - phone = _make_phone('second', row.OwnerKey, phone_number=row.SecondCtctPhone, - phone_type="Primary", - release_status=release_status) + phone = _make_phone( + "second", + row.OwnerKey, + phone_number=row.SecondCtctPhone, + phone_type="Primary", + release_status=release_status, + ) if phone: contact.phones.append(phone) @@ -205,6 +230,7 @@ def _make_name(first, last): else: return f"{first} {last}" + def _make_email(first_second, ownerkey, **kw): try: email = CreateEmail(**kw) @@ -214,6 +240,7 @@ def _make_email(first_second, ownerkey, **kw): f"{first_second} '{ownerkey}' Skipping email. Validation error: {e}" ) + def _make_phone(first_second, ownerkey, **kw): try: phone = CreatePhone(**kw) @@ -223,6 +250,7 @@ def _make_phone(first_second, ownerkey, **kw): f"{first_second} '{ownerkey}' Skipping phone . Validation error: {e}" ) + def _make_address(first_second, ownerkey, kind, **kw): try: address = CreateAddress(**kw) @@ -231,6 +259,8 @@ def _make_address(first_second, ownerkey, kind, **kw): logger.warning( f"{first_second} '{ownerkey}' Skipping {kind} address. Validation error: {e}" ) + + # def _make_contact_and_assoc(session, data, thing): contact = CreateContact(**data) diff --git a/transfers/link_ids_transfer.py b/transfers/link_ids_transfer.py index 8e4cfd339..3b935fc85 100644 --- a/transfers/link_ids_transfer.py +++ b/transfers/link_ids_transfer.py @@ -114,7 +114,9 @@ def add_link_site_id(session, row, thing): if not re.match(r"^\d{15}$", site_id): # TODO: lets make a sweet function for flagging issues # flag for interrogation - logger.critical(f"{row.PointID} alternate id {site_id} is not a valid USGS site id") + logger.critical( + f"{row.PointID} alternate id {site_id} is not a valid USGS site id" + ) return link_id.alternate_id = row.SiteID diff --git a/transfers/well_transfer.py b/transfers/well_transfer.py index 8bb6179dd..f62ffb6b8 100644 --- a/transfers/well_transfer.py +++ b/transfers/well_transfer.py @@ -57,7 +57,9 @@ def transfer_wells(session, limit=0): for i, row in enumerate(wdf.itertuples()): pointid = row.PointID if wdf[wdf["PointID"] == pointid].shape[0] > 1: - logger.critical(f"transfer_wells. PointID {pointid} has duplicate records. Skipping.") + logger.critical( + f"transfer_wells. PointID {pointid} has duplicate records. Skipping." + ) continue if limit and i >= limit: From 3eb86395c18c1ed334eeae1fd27b2c41de26c6e2 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Sat, 27 Sep 2025 11:30:21 -0600 Subject: [PATCH 13/30] WIP: water levels transfer --- core/lexicon.json | 7 ++ transfers/waterlevels_transfer.py | 202 ++++++++++++++++++++++++++++-- 2 files changed, 201 insertions(+), 8 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index 22d8e5c9d..e95f85cf5 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -375,15 +375,20 @@ {"categories": [{"name": "organization", "description": null}], "term": "Balleau Groundwater, Inc", "definition": "Balleau Groundwater, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "CDM Smith", "definition": "CDM Smith"}, {"categories": [{"name": "organization", "description": null}], "term": "CH2M Hill", "definition": "CH2M Hill"}, + {"categories": [{"name": "organization", "description": null}], "term": "Corbin Consulting, Inc", "definition": "Corbin Consulting, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Chevron", "definition": "Chevron"}, {"categories": [{"name": "organization", "description": null}], "term": "Daniel B. Stephens & Associates, Inc", "definition": "Daniel B. Stephens & Associates, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "EnecoTech", "definition": "EnecoTech"}, + {"categories": [{"name": "organization", "description": null}], "term": "Faith Engineering, Inc", "definition": "Faith Engineering, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Glorieta Geoscience, Inc", "definition": "Glorieta Geoscience, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Golder Associates, Inc", "definition": "Golder Associates, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Hathorn's Well Service, Inc", "definition": "Hathorn's Well Service, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Hydroscience Associates, Inc", "definition": "Hydroscience Associates, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "IC Tech, Inc", "definition": "IC Tech, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "John Shomaker & Associates, Inc", "definition": "John Shomaker & Associates, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Minton Engineers", "definition": "Minton Engineers"}, {"categories": [{"name": "organization", "description": null}], "term": "MJDarrconsult, Inc", "definition": "MJDarrconsult, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Puerta del Canon Ranch", "definition": "Puerta del Canon Ranch"}, {"categories": [{"name": "organization", "description": null}], "term": "Rodgers & Company, Inc", "definition": "Rodgers & Company, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Statewide Drilling, Inc", "definition": "Statewide Drilling, Inc"}, @@ -453,6 +458,8 @@ {"categories": [{"name": "role", "description": null}], "term": "Specialist", "definition": "Specialist"}, {"categories": [{"name": "role", "description": null}], "term": "Research Assistant", "definition": "Research Assistant"}, {"categories": [{"name": "role", "description": null}], "term": "Research Scientist", "definition": "Research Scientist"}, + {"categories": [{"name": "role", "description": null}], "term": "Operator", "definition": "Operator"}, + {"categories": [{"name": "role", "description": null}], "term": "Biologist", "definition": "Biologist"}, {"categories": [{"name": "email_type", "description": null}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 17df7108b..38289a055 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -173,7 +173,8 @@ def transfer_water_levels(session): "CDWR", "Chaves/Cruz", "Chavez/Cruz", - "CM, AK" "Cook", + "CM, AK", + "Cook", "Coons", "Cooper", "Corbin", @@ -196,13 +197,36 @@ def transfer_water_levels(session): "DR, ST", "Duke Engring", "Duncan", + "EA", + "EA/HB", + "Fleming", + "Fleming - Shomaker", + "Fleming/Shomaker", + "Frost", + "G.Boylan", + "GLR, SC", + "GLR, SK, SC", + "GR, MM", + "GR/PW", + "GR/RG", + "HB", + "Heaton", + "Horner-Crocker", + "HR", + "Hydrogeologic Serv", + "J.Evans", + "J.Frost", + "Jenkins", + "Johnson/Cruz", + "Johnson/Robbins", + "Kilmer/Jenkins", ]: - logger.critical( - f"Skipping water level for PointID {row.PointID} because contact could not be determined for {measured_by}" + ns = ["NM_Aquifer WaterLevels Unknown"] + os = ["Unknown"] + rs = ["Unknown"] + logger.warning( + f"The following record has not been mapped to a Contact: {row.MeasuredBy} // {row.MeasuringAgency} for PointID {row.PointID} (which comes from the WaterLevels table)" ) - # TODO: if any of these people are not knowable after AMP review put them into db - # as Unknown/Unknown. These can be audited in the future with nma_pk_waterlevels - continue # --- Companies/Organizations/Misc --- if measured_by == "A&T Pump & Well Serv": @@ -240,6 +264,10 @@ def transfer_water_levels(session): ns = [None] os = ["CH2M Hill"] rs = ["Organization"] + elif measured_by == "Jerome Salazar": + ns = ["Jerome Salazar"] + os = ["Chevron"] + rs = ["Unknown"] elif measured_by == "Chevron personnel": ns = [None] os = ["Chevron"] @@ -266,14 +294,36 @@ def transfer_water_levels(session): ns = [None] os = [measuring_agency] rs = ["Driller"] - elif "Glorieta Geoscienc" in measured_by: + elif measured_by == "EnecoTech": + # TODO: verify organization name with AMP + ns = [None] + os = ["EnecoTech"] + rs = ["Organization"] + elif measured_by == "Faith Engineering": + ns = [None] + os = ["Faith Engineering, Inc"] + rs = ["Organization"] + elif measured_by in [ + "GGI", + "GGI for OSE", + "GGI-OSE", + "Glorieta Geoscienc" "Glorieta Geoscience", + ]: ns = [None] os = ["Glorieta Geoscience, Inc"] rs = ["Organization"] + elif measured_by == "Hodgins, GCI": + ns = ["Meghan Hodgins"] + os = ["Glorieta Geoscience, Inc"] + rs = ["Geologist"] elif measured_by == "Golder Ass. For OSE": ns = [None] os = ["Golder Associates, Inc"] rs = ["Organization"] + elif measured_by == "Hathorn Well Service": + ns = [None] + os = ["Hathorn's Well Service"] + rs = ["Organization"] elif measured_by == "Hydroscience Assoc.": ns = [None] os = ["Hydroscience Associates, Inc"] @@ -282,7 +332,14 @@ def transfer_water_levels(session): ns = [None] os = ["IC Tech, Inc"] rs = ["Organization"] - elif "John Shomaker" in measured_by: + elif measured_by in [ + "John Shomaker", + "John Shomaker & Asso", + "John Shomaker Assoc.", + "JS&A", + "JSA", + "JSAI", + ]: ns = [None] os = ["John Shomaker & Associates, Inc"] rs = ["Organization"] @@ -336,6 +393,7 @@ def transfer_water_levels(session): "?", "Consultant", "Consulting Pro.", + "Gamma log unit", "Pump company", "PumpService", "REPORTED", @@ -454,6 +512,134 @@ def transfer_water_levels(session): ns = ["Dennis Cooper"] os = ["NMOSE"] rs = ["Engineer"] + elif measured_by == "EM": + ns = ["Ethan Mamer"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by == "EM, AL": + ns = ["Ethan Mamer", "Angela Lucero"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrologist"] + elif measured_by in ["EM, CM", "EM,CM"]: + ns = ["Ethan Mamer", "Cris Morton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "EM, JB": + ns = ["Ethan Mamer", "Joseph Beman"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Technician"] + elif measured_by == "EM, KP": + # TODO: verify Kitty's role with AMP + ns = ["Ethan Mamer", "Kitty Pokorny"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "EM, LS": + ns = ["Ethan Mamer", "Laila Sturgis"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "EM, MF": + ns = ["Ethan Mamer", "Marissa Fichera"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "EM, SMC": + # TODO: verify Sara's role with AMP + ns = ["Ethan Mamer", "Sara Chudnoff"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Geologist"] + elif measured_by == "EM, TK": + ns = ["Ethan Mamer", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "EM, TN": + ns = ["Ethan Mamer", "Talon Newton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "Gary Goss": + ns = [measured_by] + os = [measuring_agency] + rs = ["Operator"] + elif measured_by == "GCR": + ns = ["Geoff Rawling"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by in ["GCR/ST", "GCRST", "GR/ST"]: + ns = ["Geoff Rawling", "Stacy Timmons"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "GCR/ST/JM": + # TODO: verify Joe's role with AMP + ns = ["Geoff Rawling", "Stacy Timmons", "Joe Marcoline"] + os = ["NMBGMR", "NMBGMR", "NMED"] + rs = ["Hydrogeologist", "Hydrogeologist", "Unknown"] + elif measured_by == "GR": + ns = ["Geoff Rawling"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by == "GR, AL": + ns = ["Geoff Rawling", "Angela Lucero"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrologist"] + elif measured_by == "GR, CE": + ns = ["Geoff Rawling", "Cathy Eisen"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "GR, SC": + ns = ["Geoff Rawling", "Scott Christenson"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Technician"] + elif measured_by in ["GR, TK", "GR/TK"]: + ns = ["Geoff Rawling", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "GR/LL": + ns = ["Geoff Rawling", "Lewis Land"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["JB", "JEB"]: + ns = ["Joseph Beman"] + os = ["NMBGMR"] + rs = ["Technician"] + elif measured_by == "Jim Corbin": + ns = ["Jim Corbin"] + os = ["Corbin Consulting, Inc"] + rs = ["Unknown"] + elif measured_by in ["JM", "Joe Marcoline"]: + ns = ["Joe Marcoline"] + os = ["NMED"] + rs = ["Unknown"] + elif measured_by == "Johnson": + ns = ["Peggy Johnson"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by in ["Johnson - Kuck", "Johnson-Kuck", "Johnson/Kuck"]: + # TODO: get Kuckleman's first name, role, organization from AMP + ns = ["Peggy Johnson", "Kuckleman"] + os = ["NMBGMR", "Unknown"] + rs = ["Hydrogeologist", "Unknown"] + elif measured_by in ["Johnson-Lyman", "Johnson/Lyman"]: + ns = ["Peggy Johnson", "John Lyman"] + os = ["NMBGMR", "Unknown"] + rs = ["Hydrogeologist", "Unknown"] + elif measured_by == "Jose Varela Lopez": + ns = ["Jose Varela Lopez"] + os = ["Puerta del Canon Ranch"] + rs = ["Operator"] + elif measured_by == "K. McLain": + ns = ["Katie McLain"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by == "K. McLain, M. Hein": + ns = ["Katie McLain", "Marina Hein"] + os = ["NMBGMR", "NMT"] + rs = ["Hydrogeologist", "Biologist"] + elif measured_by == "K.Summers": + ns = ["Kelly Summers"] + os = ["NMBGMR"] + rs = ["Hydrologist"] + elif measured_by == "Kelsey McNamara": + ns = [measured_by] + os = ["NMBGMR"] + rs = ["Geologist"] else: logger.warning( From 5d61c2445382b80dad227b9b302eb6c52045e4a0 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 29 Sep 2025 10:18:19 -0600 Subject: [PATCH 14/30] WIP: water levels transfer --- core/lexicon.json | 3 +- transfers/waterlevels_transfer.py | 59 ++++++++++++++++++++++++++++++- 2 files changed, 60 insertions(+), 2 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index e95f85cf5..925e8ae6a 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -380,6 +380,7 @@ {"categories": [{"name": "organization", "description": null}], "term": "Daniel B. Stephens & Associates, Inc", "definition": "Daniel B. Stephens & Associates, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "EnecoTech", "definition": "EnecoTech"}, {"categories": [{"name": "organization", "description": null}], "term": "Faith Engineering, Inc", "definition": "Faith Engineering, Inc"}, + {"categories": [{"name": "organization", "description": null}], "term": "Foster Well Service, Inc", "definition": "Foster Well Service, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Glorieta Geoscience, Inc", "definition": "Glorieta Geoscience, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Golder Associates, Inc", "definition": "Golder Associates, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Hathorn's Well Service, Inc", "definition": "Hathorn's Well Service, Inc"}, @@ -391,7 +392,7 @@ {"categories": [{"name": "organization", "description": null}], "term": "Puerta del Canon Ranch", "definition": "Puerta del Canon Ranch"}, {"categories": [{"name": "organization", "description": null}], "term": "Rodgers & Company, Inc", "definition": "Rodgers & Company, Inc"}, {"categories": [{"name": "organization", "description": null}], "term": "Statewide Drilling, Inc", "definition": "Statewide Drilling, Inc"}, - + {"categories": [{"name": "organization", "description": null}], "term": "Zeigler Geologic Consulting, LLC", "definition": "Zeigler Geologic Consulting, LLC"}, {"categories": [{"name": "collection_method", "description": null}], "term": "manual", "definition": "manual sampling"}, {"categories": [{"name": "collection_method", "description": null}], "term": "continuous", "definition": "continuous sampling"}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 38289a055..3bc3c9ffe 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -220,8 +220,17 @@ def transfer_water_levels(session): "Johnson/Cruz", "Johnson/Robbins", "Kilmer/Jenkins", + "KP, MR", + "KP, MT", + "Kuck", + "Kuckleman", + "Lazarus", + "Leroy Romero", + "Mike Rodgers", ]: - ns = ["NM_Aquifer WaterLevels Unknown"] + # set name to measured_by so that water level is logged to that + # person even if they are not known. this allows future updates + ns = [measured_by] os = ["Unknown"] rs = ["Unknown"] logger.warning( @@ -316,6 +325,10 @@ def transfer_water_levels(session): ns = ["Meghan Hodgins"] os = ["Glorieta Geoscience, Inc"] rs = ["Geologist"] + elif measured_by == "Kreamer, GGI": + ns = ["Kreamer"] + os = ["Glorieta Geoscience, Inc"] + rs = ["Unknown"] elif measured_by == "Golder Ass. For OSE": ns = [None] os = ["Golder Associates, Inc"] @@ -343,6 +356,10 @@ def transfer_water_levels(session): ns = [None] os = ["John Shomaker & Associates, Inc"] rs = ["Organization"] + elif measured_by == "Lee Foster": + ns = ["Lee Foster"] + os = ["Foster Well Service, Inc"] + rs = ["Unknown"] elif measured_by == "Mario Gonzales NMRWA": # TODO: does AMP know this person's role at NMRWA? ns = ["Mario Gonzalez"] @@ -640,6 +657,46 @@ def transfer_water_levels(session): ns = [measured_by] os = ["NMBGMR"] rs = ["Geologist"] + elif measured_by in ["Kitty", "Kitty Pokorny", "KP"]: + ns = ["Kitty Pokorny"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by == ["KP, MF"]: + ns = ["Kitty Pokorny", "Marissa Fichera"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "KP, ST": + ns = ["Kitty Pokorny", "Stacy Timmons"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "KP, TK": + ns = ["Kitty Pokorny", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["KR", "Kylian Robinson"]: + ns = ["Kylian Robinson"] + os = ["NMED"] + rs = ["Hydrogeologist"] + elif measured_by == "LL, TN": + ns = ["Lewis Land", "Talon Newton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "LS": + ns = ["Laila Sturgis"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by == "LS, TK": + ns = ["Laila Sturgis", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "M. Hein": + ns = ["Marina Hein"] + os = ["NMT"] + rs = ["Biologist"] + elif measured_by == "MH, KM": + ns = ["Marina Hein", "Katie McLain"] + os = ["NMT", "NMBGMR"] + rs = ["Biologist", "Hydrogeologist"] else: logger.warning( From 31000687e1b81a029a102896b24b8f2eabcdc318 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 29 Sep 2025 12:32:53 -0600 Subject: [PATCH 15/30] fix: add back lexicons removed from merge conflict resolution --- core/lexicon.json | 39 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 36 insertions(+), 3 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index 9cc4365f7..9a2387dcf 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -65,7 +65,7 @@ {"categories": ["elevation_method"], "term": "Reported", "definition": "Reported"}, {"categories": ["elevation_method"], "term": "Survey-grade Global Navigation Satellite Sys, Lvl1", "definition": "Survey-grade Global Navigation Satellite Sys, Lvl1"}, {"categories": ["elevation_method"], "term": "USGS National Elevation Dataset (NED)", "definition": "USGS National Elevation Dataset (NED)"}, - {"categories": ["elevation_method", "sample_method", "coordinate_method", "current_use", "status", "organization"], "term": "Unknown", "definition": "Unknown"}, + {"categories": ["elevation_method", "sample_method", "coordinate_method", "current_use", "status", "organization", "role"], "term": "Unknown", "definition": "Unknown"}, {"categories": ["construction_method"], "term": "Air-rotary", "definition": "Air-rotary"}, {"categories": ["construction_method"], "term": "Bored or augered", "definition": "Bored or augered"}, {"categories": ["construction_method"], "term": "Cable-tool", "definition": "Cable-tool"}, @@ -348,9 +348,10 @@ {"categories": ["organization"], "term": "NMED", "definition": "New Mexico Environment Department"}, {"categories": ["organization"], "term": "NMOSE", "definition": "New Mexico Office of the State Engineer"}, {"categories": ["organization"], "term": "NMBGMR", "definition": "New Mexico Bureau of Geology and Mineral Resources"}, - {"categories": ["organization"], "term": "Bernalillo Cty", "definition": "Bernalillo County"}, + {"categories": ["organization"], "term": "Bernalillo County", "definition": "Bernalillo County"}, {"categories": ["organization"], "term": "BLM", "definition": "Bureau of Land Management"}, {"categories": ["organization"], "term": "SFC", "definition": "Santa Fe County"}, + {"categories": ["organization"], "term": "CSF", "definition": "City of Santa Fe"}, {"categories": ["organization"], "term": "NESWCD", "definition": "Northeast Soil & Water Conservation District"}, {"categories": ["organization"], "term": "NMISC", "definition": "New Mexico Interstate Stream Commission"}, {"categories": ["organization"], "term": "PVACD", "definition": "Pecos Valley Artesian Conservancy District"}, @@ -361,6 +362,33 @@ {"categories": ["organization"], "term": "USFS", "definition": "United States Forest Service"}, {"categories": ["organization"], "term": "NMT", "definition": "New Mexico Tech"}, {"categories": ["organization"], "term": "NPS", "definition": "National Park Service"}, + {"categories": ["organization"], "term": "NMRWA", "definition": "New Mexico Rural Water Association"}, + {"categories": ["organization"], "term": "Taos SWCD", "definition": "Taos Soil and Water Conservation District"}, + {"categories": ["organization"], "term": "Otero SWCD", "definition": "Otero Soil and Water Conservation District"}, + {"categories": ["organization"], "term": "A&T Pump & Well Service, LLC", "definition": "A&T Pump & Well Service, LLC"}, + {"categories": ["organization"], "term": "A. G. Wassenaar, Inc", "definition": "A. G. Wassenaar, Inc"}, + {"categories": ["organization"], "term": "AMEC", "definition": "AMEC"}, + {"categories": ["organization"], "term": "Balleau Groundwater, Inc", "definition": "Balleau Groundwater, Inc"}, + {"categories": ["organization"], "term": "CDM Smith", "definition": "CDM Smith"}, + {"categories": ["organization"], "term": "CH2M Hill", "definition": "CH2M Hill"}, + {"categories": ["organization"], "term": "Corbin Consulting, Inc", "definition": "Corbin Consulting, Inc"}, + {"categories": ["organization"], "term": "Chevron", "definition": "Chevron"}, + {"categories": ["organization"], "term": "Daniel B. Stephens & Associates, Inc", "definition": "Daniel B. Stephens & Associates, Inc"}, + {"categories": ["organization"], "term": "EnecoTech", "definition": "EnecoTech"}, + {"categories": ["organization"], "term": "Faith Engineering, Inc", "definition": "Faith Engineering, Inc"}, + {"categories": ["organization"], "term": "Foster Well Service, Inc", "definition": "Foster Well Service, Inc"}, + {"categories": ["organization"], "term": "Glorieta Geoscience, Inc", "definition": "Glorieta Geoscience, Inc"}, + {"categories": ["organization"], "term": "Golder Associates, Inc", "definition": "Golder Associates, Inc"}, + {"categories": ["organization"], "term": "Hathorn's Well Service, Inc", "definition": "Hathorn's Well Service, Inc"}, + {"categories": ["organization"], "term": "Hydroscience Associates, Inc", "definition": "Hydroscience Associates, Inc"}, + {"categories": ["organization"], "term": "IC Tech, Inc", "definition": "IC Tech, Inc"}, + {"categories": ["organization"], "term": "John Shomaker & Associates, Inc", "definition": "John Shomaker & Associates, Inc"}, + {"categories": ["organization"], "term": "Minton Engineers", "definition": "Minton Engineers"}, + {"categories": ["organization"], "term": "MJDarrconsult, Inc", "definition": "MJDarrconsult, Inc"}, + {"categories": ["organization"], "term": "Puerta del Canon Ranch", "definition": "Puerta del Canon Ranch"}, + {"categories": ["organization"], "term": "Rodgers & Company, Inc", "definition": "Rodgers & Company, Inc"}, + {"categories": ["organization"], "term": "Statewide Drilling, Inc", "definition": "Statewide Drilling, Inc"}, + {"categories": ["organization"], "term": "Zeigler Geologic Consulting, LLC", "definition": "Zeigler Geologic Consulting, LLC"}, {"categories": ["collection_method"], "term": "manual", "definition": "manual sampling"}, {"categories": ["collection_method"], "term": "continuous", "definition": "continuous sampling"}, {"categories": ["country"], "term": "United States", "definition": "United States of America"}, @@ -417,7 +445,12 @@ {"categories": ["role"], "term": "Hydrologist", "definition": "Hydrologist"}, {"categories": ["role"], "term": "Hydrogeologist", "definition": "Hydrogeologist"}, {"categories": ["role"], "term": "Engineer", "definition": "Engineer"}, - {"categories": ["role"], "term": "Technician", "definition": "Technician"}, + {"categories": ["role"], "term": "Organization", "definition": "A contact that is an organization"}, + {"categories": ["role"], "term": "Specialist", "definition": "Specialist"}, + {"categories": ["role"], "term": "Research Assistant", "definition": "Research Assistant"}, + {"categories": ["role"], "term": "Research Scientist", "definition": "Research Scientist"}, + {"categories": ["role"], "term": "Operator", "definition": "Operator"}, + {"categories": ["role"], "term": "Biologist", "definition": "Biologist"}, {"categories": ["email_type", "phone_type", "address_type", "contact_type"], "term": "Primary", "definition": "primary"}, {"categories": ["contact_type"], "term": "Secondary", "definition": "secondary"}, {"categories": ["email_type", "phone_type", "address_type"], "term": "Work", "definition": "work"}, From 45400c4c1343dd3dcb4341e48cbcd2d91e6bbdbf Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 29 Sep 2025 14:30:30 -0600 Subject: [PATCH 16/30] WIP: water levels transfer --- core/lexicon.json | 4 + transfers/waterlevels_transfer.py | 158 +++++++++++++++++++++++++++--- 2 files changed, 147 insertions(+), 15 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index 9a2387dcf..5882861fd 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -365,6 +365,7 @@ {"categories": ["organization"], "term": "NMRWA", "definition": "New Mexico Rural Water Association"}, {"categories": ["organization"], "term": "Taos SWCD", "definition": "Taos Soil and Water Conservation District"}, {"categories": ["organization"], "term": "Otero SWCD", "definition": "Otero Soil and Water Conservation District"}, + {"categories": ["organization"], "term": "Northeastern SWCD", "definition": "Northeastern Soil and Water Conservation District"}, {"categories": ["organization"], "term": "A&T Pump & Well Service, LLC", "definition": "A&T Pump & Well Service, LLC"}, {"categories": ["organization"], "term": "A. G. Wassenaar, Inc", "definition": "A. G. Wassenaar, Inc"}, {"categories": ["organization"], "term": "AMEC", "definition": "AMEC"}, @@ -383,6 +384,8 @@ {"categories": ["organization"], "term": "Hydroscience Associates, Inc", "definition": "Hydroscience Associates, Inc"}, {"categories": ["organization"], "term": "IC Tech, Inc", "definition": "IC Tech, Inc"}, {"categories": ["organization"], "term": "John Shomaker & Associates, Inc", "definition": "John Shomaker & Associates, Inc"}, + {"categories": ["organization"], "term": "Kuckleman Pump Service", "definition": "Kuckleman Pump Service"}, + {"categories": ["organization"], "term": "Los Golondrinas", "definition": "Los Golondrinas"}, {"categories": ["organization"], "term": "Minton Engineers", "definition": "Minton Engineers"}, {"categories": ["organization"], "term": "MJDarrconsult, Inc", "definition": "MJDarrconsult, Inc"}, {"categories": ["organization"], "term": "Puerta del Canon Ranch", "definition": "Puerta del Canon Ranch"}, @@ -451,6 +454,7 @@ {"categories": ["role"], "term": "Research Scientist", "definition": "Research Scientist"}, {"categories": ["role"], "term": "Operator", "definition": "Operator"}, {"categories": ["role"], "term": "Biologist", "definition": "Biologist"}, + {"categories": ["role"], "term": "Lab Manager", "definition": "Lab Manager"}, {"categories": ["email_type", "phone_type", "address_type", "contact_type"], "term": "Primary", "definition": "primary"}, {"categories": ["contact_type"], "term": "Secondary", "definition": "secondary"}, {"categories": ["email_type", "phone_type", "address_type"], "term": "Work", "definition": "work"}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 3bc3c9ffe..1940a8910 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -174,7 +174,6 @@ def transfer_water_levels(session): "Chaves/Cruz", "Chavez/Cruz", "CM, AK", - "Cook", "Coons", "Cooper", "Corbin", @@ -199,9 +198,6 @@ def transfer_water_levels(session): "Duncan", "EA", "EA/HB", - "Fleming", - "Fleming - Shomaker", - "Fleming/Shomaker", "Frost", "G.Boylan", "GLR, SC", @@ -222,11 +218,15 @@ def transfer_water_levels(session): "Kilmer/Jenkins", "KP, MR", "KP, MT", - "Kuck", - "Kuckleman", "Lazarus", - "Leroy Romero", "Mike Rodgers", + "Mourant", + "MWB Consultant", + "Myers report", + "Rankin", + "Sandia Drillers", + "SC, MR", + "SdC", ]: # set name to measured_by so that water level is logged to that # person even if they are not known. this allows future updates @@ -261,6 +261,10 @@ def transfer_water_levels(session): ns = [None] os = ["Balleau Groundwater, Inc"] rs = ["Organization"] + elif measured_by == "Cook": + ns = ["Cook"] + os = ["Balleau Groundwater, Inc"] + rs = ["Unknown"] elif measured_by == "Bureau": ns = [None] os = ["NMBGMR"] @@ -329,6 +333,10 @@ def transfer_water_levels(session): ns = ["Kreamer"] os = ["Glorieta Geoscience, Inc"] rs = ["Unknown"] + elif measured_by == "Olson, GGI": + ns = ["Olson"] + os = ["Glorieta Geoscience, Inc"] + rs = ["Unknown"] elif measured_by == "Golder Ass. For OSE": ns = [None] os = ["Golder Associates, Inc"] @@ -352,14 +360,30 @@ def transfer_water_levels(session): "JS&A", "JSA", "JSAI", + "Shomaker", ]: ns = [None] os = ["John Shomaker & Associates, Inc"] rs = ["Organization"] + elif measured_by in [ + "Fleming", + "Fleming - Shomaker", + "Fleming/Shomaker", + "Shomaker - Fleming", + "Shomaker - Fleming", + "Shomaker/Fleming", + ]: + ns = ["Fleming"] + os = ["John Shomaker & Associates, Inc"] + rs = ["Unknown"] + elif measured_by in ["Kuck", "Kuckleman"]: + ns = [None] + os = ["Kuckleman Pump Service"] + rs = ["Organization"] elif measured_by == "Lee Foster": - ns = ["Lee Foster"] + ns = [None] os = ["Foster Well Service, Inc"] - rs = ["Unknown"] + rs = ["Organization"] elif measured_by == "Mario Gonzales NMRWA": # TODO: does AMP know this person's role at NMRWA? ns = ["Mario Gonzalez"] @@ -373,6 +397,10 @@ def transfer_water_levels(session): ns = [None] rs = ["MJDarrconsult, Inc"] os = [measuring_agency] + elif measured_by == "NESWCD": + ns = [None] + os = ["Northeastern SWCD"] + rs = ["Organization"] elif measured_by in ["NMOSE?", "OSE"]: ns = [None] os = ["NMOSE"] @@ -382,6 +410,10 @@ def transfer_water_levels(session): ns = ["Doug Rappuhn"] os = ["NMOSE"] rs = ["Hydrologist"] + elif measured_by == "OSE, ST": + ns = [None, "Stacy Timmons"] + os = ["NMOSE", "NMBGMR"] + rs = ["Organization", "Hydrogeologist"] elif measured_by == "PVACD person": ns = [None] os = ["PVACD"] @@ -559,10 +591,9 @@ def transfer_water_levels(session): os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by == "EM, SMC": - # TODO: verify Sara's role with AMP ns = ["Ethan Mamer", "Sara Chudnoff"] os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Geologist"] + rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by == "EM, TK": ns = ["Ethan Mamer", "Trevor Kludt"] os = ["NMBGMR", "NMBGMR"] @@ -579,7 +610,7 @@ def transfer_water_levels(session): ns = ["Geoff Rawling"] os = ["NMBGMR"] rs = ["Hydrogeologist"] - elif measured_by in ["GCR/ST", "GCRST", "GR/ST"]: + elif measured_by in ["GCR/ST", "GCRST", "GR/ST", "Rawling/Wagner"]: ns = ["Geoff Rawling", "Stacy Timmons"] os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] @@ -633,7 +664,7 @@ def transfer_water_levels(session): ns = ["Peggy Johnson", "Kuckleman"] os = ["NMBGMR", "Unknown"] rs = ["Hydrogeologist", "Unknown"] - elif measured_by in ["Johnson-Lyman", "Johnson/Lyman"]: + elif measured_by in ["Johnson-Lyman", "Johnson/Lyman", "PJ/Lyman"]: ns = ["Peggy Johnson", "John Lyman"] os = ["NMBGMR", "Unknown"] rs = ["Hydrogeologist", "Unknown"] @@ -677,6 +708,10 @@ def transfer_water_levels(session): ns = ["Kylian Robinson"] os = ["NMED"] rs = ["Hydrogeologist"] + elif measured_by == "Leroy Romero": + ns = ["Leroy Romero"] + os = ["Los Golondrinas"] + rs = ["Unknown"] elif measured_by == "LL, TN": ns = ["Lewis Land", "Talon Newton"] os = ["NMBGMR", "NMBGMR"] @@ -697,11 +732,104 @@ def transfer_water_levels(session): ns = ["Marina Hein", "Katie McLain"] os = ["NMT", "NMBGMR"] rs = ["Biologist", "Hydrogeologist"] + elif measured_by == "Patricia Rosacker": + ns = ["Patricia Rosacker"] + os = ["CSF"] + rs = ["Lab Manager"] + elif measured_by == "PB, PJ": + ns = ["Paul Bauer", "Peggy Johnson"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Geologist", "Hydrogeologist"] + elif measured_by == "PB, PJ, TK": + ns = ["Paul Bauer", "Peggy Johnson", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR", "NMBGMR"] + rs = ["Geologist", "Hydrogeologist", "Hydrogeologist"] + elif measured_by == "Pepin": + ns = ["Jeff Pepin"] + os = ["USGS"] + rs = ["Hydrologist"] + elif measured_by == "Pepin/Kelley": + ns = ["Jeff Pepin", "Shari Kelley"] + os = ["USGS", "NMBGMR"] + rs = ["Hydrologist", "Geologist"] + elif measured_by == "Mark Person": + ns = [measured_by] + os = ["NMT"] + rs = ["Geologist"] + elif measured_by == "PJ": + ns = ["Peggy Johnson"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by in ["PJ PB", "PJ, PB"]: + ns = ["Peggy Johnson", "Paul Bauer"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Geologist"] + elif measured_by in ["PJ TK PB", "PJ, TK, PB"]: + ns = ["Peggy Johnson", "Trevor Kludt", "Paul Bauer"] + os = ["NMBGMR", "NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist", "Geologist"] + elif measured_by == "RL Borton": + ns = ["R. L. Borton"] + os = ["NMOSE"] + rs = ["Unknown"] + elif measured_by == "RP": + ns = ["RP"] + os = ["NMOSE"] + rs = ["Unknown"] + elif measured_by == "Sara Chudnoff": + ns = ["Sara Chudnoff"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by in ["SC", "SCC", "SD"]: + ns = ["Scott Christenson"] + os = ["NMBGMR"] + rs = ["Technician"] + elif measured_by == "SC, AL": + ns = ["Scott Christenson", "Angela Lucero"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrologist"] + elif measured_by == "SC, CM": + ns = ["Scott Christenson", "Cris Morton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, DL": + ns = ["Scott Christenson", "Dan Lavery"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, EM": + ns = ["Scott Christenson", "Ethan Mamer"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, GR": + ns = ["Scott Christenson", "Geoff Rawling"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, KP": + ns = ["Scott Christenson", "Kitty Pokorny"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, SMC": + ns = ["Scott Christenson", "Sara Chudnoff"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, ST": + ns = ["Scott Christenson", "Stacy Timmons"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, TK": + ns = ["Scott Christenson", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SC, TN": + ns = ["Scott Christenson", "Talon Newton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Technician", "Hydrogeologist"] else: - logger.warning( - f"The following record has not been mapped to a Contact: {row.MeasuredBy} // {row.MeasuringAgency} for PointID {row.PointID}" + logger.critical( + f"Skipping the following record because it has no mappings: {row.MeasuredBy} // {row.MeasuringAgency} for PointID {row.PointID}" ) + continue """ Developer's notes From 70a1071f46ceb78d47f31588ac4d52c99fa71d68 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 29 Sep 2025 16:56:58 -0600 Subject: [PATCH 17/30] WIP: water levels transfer --- core/lexicon.json | 6 ++ transfers/waterlevels_transfer.py | 108 ++++++++++++++++++++++++++++-- 2 files changed, 108 insertions(+), 6 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index ba8332c3d..f5d04471a 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -390,7 +390,12 @@ {"categories": ["organization"], "term": "MJDarrconsult, Inc", "definition": "MJDarrconsult, Inc"}, {"categories": ["organization"], "term": "Puerta del Canon Ranch", "definition": "Puerta del Canon Ranch"}, {"categories": ["organization"], "term": "Rodgers & Company, Inc", "definition": "Rodgers & Company, Inc"}, + {"categories": ["organization"], "term": "San Pedro Creek Estates HOA", "definition": "San Pedro Creek Estates HOA"}, {"categories": ["organization"], "term": "Statewide Drilling, Inc", "definition": "Statewide Drilling, Inc"}, + {"categories": ["organization"], "term": "Tec Drilling Limited", "definition": "Tec Drilling Limited"}, + {"categories": ["organization"], "term": "Tetra Tech, Inc", "definition": "Tetra Tech, Inc"}, + {"categories": ["organization"], "term": "Thompson Drilling, Inc", "definition": "Thompson Drilling, Inc"}, + {"categories": ["organization"], "term": "Witcher & Associates", "definition": "Witcher & Associates"}, {"categories": ["organization"], "term": "Zeigler Geologic Consulting, LLC", "definition": "Zeigler Geologic Consulting, LLC"}, {"categories": ["collection_method"], "term": "manual", "definition": "manual sampling"}, {"categories": ["collection_method"], "term": "continuous", "definition": "continuous sampling"}, @@ -409,6 +414,7 @@ {"categories": ["role"], "term": "Operator", "definition": "Operator"}, {"categories": ["role"], "term": "Biologist", "definition": "Biologist"}, {"categories": ["role"], "term": "Lab Manager", "definition": "Lab Manager"}, + {"categories": ["role"], "term": "Publications Manager", "definition": "Publications Manager"}, {"categories": ["email_type", "phone_type", "address_type", "contact_type"], "term": "Primary", "definition": "primary"}, {"categories": ["contact_type"], "term": "Secondary", "definition": "secondary"}, {"categories": ["email_type", "phone_type", "address_type"], "term": "Work", "definition": "work"}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index e22c79900..48be0ee74 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -227,6 +227,13 @@ def transfer_water_levels(session): "Sandia Drillers", "SC, MR", "SdC", + "SM&Assoc", + "SMA", + "Spiegel", + "Spiegel & Baldwin", + "SPRI", + "Steve", + "T.Decker", ]: # set name to measured_by so that water level is logged to that # person even if they are not known. this allows future updates @@ -422,7 +429,7 @@ def transfer_water_levels(session): ns = [None] os = ["Rodgers & Company, Inc"] rs = ["Organization"] - elif measured_by == "Sandia National labs": + elif measured_by in ["Sandia National labs", "SNL"]: ns = [None] os = ["SNL"] rs = ["Organization"] @@ -434,10 +441,26 @@ def transfer_water_levels(session): ns = ["Frost"] os = ["SFC"] rs = ["Unknown"] + elif measured_by == "SPCE HOA": + ns = [None] + os = ["San Pedro Creek Estates HOA"] + rs = ["Organization"] elif measured_by == "Statewide Drilling": ns = [None] os = ["Statewide Drilling, Inc"] rs = ["Organization"] + elif measured_by == "Tec Drilling": + ns = [None] + os = ["Tec Drilling Limited"] + rs = ["Organization"] + elif measured_by == "TetraTech": + ns = [None] + os = ["Tetra Tech, Inc"] + rs = ["Organization"] + elif measured_by == "Thompson Drilling": + ns = [None] + os = ["Thompson Drilling, Inc"] + rs = ["Organization"] elif measured_by in [ "?", "Consultant", @@ -446,6 +469,7 @@ def transfer_water_levels(session): "Pump company", "PumpService", "REPORTED", + "Theis report", "Unknown", "Unknown; reported", "Water operator", @@ -476,10 +500,6 @@ def transfer_water_levels(session): rs = ["Organization"] # --- People --- - elif measured_by == " Wagner": - ns = ["Stacy Timmons"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] elif measured_by == "AL": ns = ["Angela Lucero"] os = ["NMBGMR"] @@ -776,10 +796,22 @@ def transfer_water_levels(session): ns = ["RP"] os = ["NMOSE"] rs = ["Unknown"] - elif measured_by == "Sara Chudnoff": + elif measured_by in ["Sara Chudnoff", "SMC"]: ns = ["Sara Chudnoff"] os = ["NMBGMR"] rs = ["Hydrogeologist"] + elif measured_by == "SMC, EM": + ns = ["Sara Chudnoff", "Ethan Mamer"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "SMC, SC": + ns = ["Sara Chudnoff", "Scott Christenson"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Technician"] + elif measured_by == "SMC, TK": + ns = ["Sara Chudnoff", "Trevor Kludt"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by in ["SC", "SCC", "SD"]: ns = ["Scott Christenson"] os = ["NMBGMR"] @@ -824,6 +856,70 @@ def transfer_water_levels(session): ns = ["Scott Christenson", "Talon Newton"] os = ["NMBGMR", "NMBGMR"] rs = ["Technician", "Hydrogeologist"] + elif measured_by == "SK": + ns = ["Shari Kelley"] + os = ["NMBGMR"] + rs = ["Geologist"] + elif measured_by == "SK, SC, GR": + ns = ["Shari Kelley", "Scott Christenson", "Geoff Rawling"] + os = ["NMBGMR", "NMBGMR", "NMBGMR"] + rs = ["Geologist", "Technician", "Geologist"] + elif measured_by == "SR": + ns = ["Stephanie Roussel"] + os = ["USGS"] + rs = ["Hydrologist"] + elif measured_by == "SR, EM": + ns = ["Stephanie Roussel", "Ethan Mamer"] + os = ["USGS", "NMBGMR"] + rs = ["Hydrologist", "Hydrogeologist"] + elif measured_by in [" Wagner", "ST", "Stacy Timmons", "Timmons"]: + ns = ["Stacy Timmons"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by == "ST, CE": + ns = ["Stacy Timmons", "Cathy Eisen"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["ST, Joe Marcoline", "ST/JM"]: + ns = ["Stacy Timmons", "Joe Marcoline"] + os = ["NMBGMR", "NMED"] + rs = ["Hydrogeologist", "Unknown"] + elif measured_by == "ST, KP": + ns = ["Stacy Timmons", "Kitty Pokorny"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "ST, SK": + ns = ["Stacy Timmons", "Shari Kelley"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Geologist"] + elif measured_by == "ST, SK, Person": + ns = ["Stacy Timmons", "Shari Kelley", "Mark Person"] + os = ["NMBGMR", "NMBGMR", "NMT"] + rs = ["Hydrogeologist", "Geologist", "Geologist"] + elif measured_by == "ST, SMC": + ns = ["Stacy Timmons", "Sara Chudnoff"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["ST/BF", "ST/BFK"]: + ns = ["Stacy Timmons", "Brigitte Felix"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Publications Manager"] + elif measured_by == "ST/BTN": + ns = ["Stacy Timmons", "Talon Newton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["ST/GCR", "ST/GR"]: + ns = ["Stacy Timmons", "Geoff Rawling"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "ST/JW": + ns = ["Stacy Timmons", "Jim Witcher"] + os = ["NMBGMR", "With & Associates"] + rs = ["Hydrogeologist", "Geologist"] + elif measured_by == "ST/LL": + ns = ["Stacy Timmons", "Lewis Land"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] else: logger.critical( From 0b1cc24b3a739244c7c254d9ee8a40d4a3cbdf96 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 09:22:24 -0600 Subject: [PATCH 18/30] WIP: water levels transfer --- core/lexicon.json | 2 +- transfers/waterlevels_transfer.py | 95 +++++++++++++++++++++++++++++-- 2 files changed, 91 insertions(+), 6 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index f5d04471a..1ae39d7b7 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -352,7 +352,7 @@ {"categories": ["organization"], "term": "BLM", "definition": "Bureau of Land Management"}, {"categories": ["organization"], "term": "SFC", "definition": "Santa Fe County"}, {"categories": ["organization"], "term": "CSF", "definition": "City of Santa Fe"}, - {"categories": ["organization"], "term": "NESWCD", "definition": "Northeast Soil & Water Conservation District"}, + {"categories": ["organization"], "term": "NESWCD", "definition": "Northeastern Soil & Water Conservation District"}, {"categories": ["organization"], "term": "NMISC", "definition": "New Mexico Interstate Stream Commission"}, {"categories": ["organization"], "term": "PVACD", "definition": "Pecos Valley Artesian Conservancy District"}, {"categories": ["organization"], "term": "TSWCD", "definition": "Taos Soil & Water Conservation District"}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 48be0ee74..df1e41a4a 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -234,6 +234,11 @@ def transfer_water_levels(session): "SPRI", "Steve", "T.Decker", + "Topol", + "URS", + "UTM", + "VeneKlasen", + "Vista del Oro", ]: # set name to measured_by so that water level is logged to that # person even if they are not known. this allows future updates @@ -250,12 +255,13 @@ def transfer_water_levels(session): os = ["A&T Pump & Well Service, LLC"] rs = ["Organization"] elif "AGW" in measured_by: + os = ["A. G. Wassenaar, Inc"] if "Turner" in measured_by: ns = ["Turner"] + rs = ["Unknown"] else: ns = [None] - os = ["A. G. Wassenaar, Inc"] - rs = ["Organization"] + rs = ["Organization"] elif measured_by == "AMEC": ns = [None] os = ["AMEC Earth & Environmental"] @@ -310,6 +316,13 @@ def transfer_water_levels(session): os = ["Daniel B. Stephens & Associates, Inc"] # TODO: see if AMP knows this person's name and role rs = ["Unknown"] + elif measured_by in ["Tribble, Cruz", "Tribble/Cruz"]: + ns = ["Tribble", "Cruz"] + os = [ + "Daniel B. Stephens & Associates, Inc", + "Daniel B. Stephens & Associates, Inc", + ] + rs = ["Unknown", "Unknown"] elif measured_by == "Driller": ns = [None] os = [measuring_agency] @@ -480,6 +493,14 @@ def transfer_water_levels(session): ns = [None] os = [measuring_agency] rs = ["Unknown"] + elif measured_by == "USGA": + ns = [None] + os = ["USGS"] + rs = ["Organization"] + elif measured_by == "USGS/NESWCD": + ns = [None, None] + os = ["USGS", "Northeastern SWCD"] + rs = ["Organization", "Organization"] elif measured_by in [ "Arcadis", "NMBGMR", @@ -700,7 +721,7 @@ def transfer_water_levels(session): ns = ["Katie McLain", "Marina Hein"] os = ["NMBGMR", "NMT"] rs = ["Hydrogeologist", "Biologist"] - elif measured_by == "K.Summers": + elif measured_by in ["K.Summers", "WK Summers"]: ns = ["Kelly Summers"] os = ["NMBGMR"] rs = ["Hydrologist"] @@ -872,7 +893,7 @@ def transfer_water_levels(session): ns = ["Stephanie Roussel", "Ethan Mamer"] os = ["USGS", "NMBGMR"] rs = ["Hydrologist", "Hydrogeologist"] - elif measured_by in [" Wagner", "ST", "Stacy Timmons", "Timmons"]: + elif measured_by in [" Wagner", "ST", "Stacy Timmons", "Timmons", "Wagner"]: ns = ["Stacy Timmons"] os = ["NMBGMR"] rs = ["Hydrogeologist"] @@ -909,7 +930,7 @@ def transfer_water_levels(session): os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by in ["ST/GCR", "ST/GR"]: - ns = ["Stacy Timmons", "Geoff Rawling"] + ns = ["Stacy Timmons", "Geoff Rawling", "Wagner/Rawling"] os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by == "ST/JW": @@ -920,6 +941,70 @@ def transfer_water_levels(session): ns = ["Stacy Timmons", "Lewis Land"] os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["TK", "Trevor Kludt"]: + ns = ["Trevor Kludt"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by in ["TK BF", "TK, BF", "TK/BF"]: + ns = ["Trevor Kludt", "Brigitte Felix"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Publications Manager"] + elif measured_by in ["tk cm", "TK, CM"]: + ns = ["Trevor Kludt", "Cris Morton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["TK KR", "TK, KR"]: + ns = ["Trevor Kludt", "Kylian Robinson"] + os = ["NMBGMR", "NMED"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "TK, AL": + ns = ["Trevor Kludt", "Angela Lucero"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrologist"] + elif measured_by in ["TK, CE", "TK,CE"]: + ns = ["Trevor Kludt", "Cathy Eisen"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "TK, EM": + ns = ["Trevor Kludt", "Ethan Mamer"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["TK, GR", "TK, GCR", "TK/GR", "TK/RG"]: + ns = ["Trevor Kludt", "Geoff Rawling"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "TK, KrPe": + ns = ["Trevor Kludt", "Kirsten Pearthree"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Research Scientist"] + elif measured_by == "TK, PB, PJ": + ns = ["Trevor Kludt", "Paul Bauer", "Peggy Johnson"] + os = ["NMBGMR", "NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Geologist", "Hydrogeologist"] + elif measured_by == "TK, SC": + ns = ["Trevor Kludt", "Scott Christenson"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Technician"] + elif measured_by in ["TK, ST, CE", "TK, ST; CE"]: + ns = ["Trevor Kludt", "Stacy Timmons", "Cathy Eisen"] + os = ["NMBGMR", "NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist", "Hydrogeologist"] + elif measured_by == "TK, TN": + ns = ["Trevor Kludt", "Talon Newton"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "TN": + ns = ["Talon Newton"] + os = ["NMBGMR"] + rs = ["Hydrogeologist"] + elif measured_by == "TN, LL": + ns = ["Talon Newton", "Lewis Land"] + os = ["NMBGMR", "NMBGMR"] + rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by in ["Wasiolek", "Wasiolek rpt 1983"]: + ns = ["Maryann Wasiolek"] + os = ["Hydroscience Associates, Inc"] + rs = ["Hydrogeologist"] else: logger.critical( From b3b25f38e2cd402fe5469e060b792ff7563a6918 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 10:50:04 -0600 Subject: [PATCH 19/30] WIP: water levels transfer --- core/lexicon.json | 1 + transfers/waterlevels_transfer.py | 40 ++++++++++++++++--------------- 2 files changed, 22 insertions(+), 19 deletions(-) diff --git a/core/lexicon.json b/core/lexicon.json index 1ae39d7b7..c17f24aa7 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -417,6 +417,7 @@ {"categories": ["role"], "term": "Publications Manager", "definition": "Publications Manager"}, {"categories": ["email_type", "phone_type", "address_type", "contact_type"], "term": "Primary", "definition": "primary"}, {"categories": ["contact_type"], "term": "Secondary", "definition": "secondary"}, + {"categories": ["contact_type"], "term": "Field Event Participant", "definition": "A contact who has participated in a field event"}, {"categories": ["email_type", "phone_type", "address_type"], "term": "Work", "definition": "work"}, {"categories": ["email_type", "address_type"], "term": "Personal", "definition": "personal"}, {"categories": ["address_type"], "term": "Mailing", "definition": "mailing"}, diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index df1e41a4a..a3b5898ad 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -25,7 +25,7 @@ Observation, FieldEvent, FieldActivity, - # FieldEventContactAssociation, + FieldEventContactAssociation, Contact, ) from transfers.util import ( @@ -1029,8 +1029,8 @@ def transfer_water_levels(session): contact = Contact( name=name, - role="sampler", - contact_type="NM_Aquifer Import", + role=role, + contact_type="Field Event Participant", organization=organization, nma_pk_waterlevels=row.GlobalID, ) @@ -1047,13 +1047,18 @@ def transfer_water_levels(session): participants in the field event """ if i == 0: - # leader - # sampler - pass + field_event_contact = FieldEventContactAssociation( + field_event=field_event, + contact=contact, + field_contact_role="Leader", + ) + sampler = field_event_contact else: - # participant - # not sampler - pass + field_event_contact = FieldEventContactAssociation( + field_event=field_event, + contact=contact, + field_contact_role="Participant", + ) else: contact = thing.contacts[0] @@ -1069,7 +1074,7 @@ def transfer_water_levels(session): # todo: use create schema to validate data sample = Sample( field_activity=field_activity, - # sampler_name=sampler_name, + field_event_contact=sampler, sample_date=dt_utc, sample_matrix="water", sample_name=str( @@ -1082,10 +1087,6 @@ def transfer_water_levels(session): ) session.add(sample) - # TODO: update for auto-collectors in the Sensor table, like e-probes - # update the deployment table here - sensor_id = None - if not pd.isna(row.LevelStatus): level_status = lexicon_mapper.map_value( f"LU_LevelStatus:{row.LevelStatus}" @@ -1095,15 +1096,16 @@ def transfer_water_levels(session): # TODO: use create schema to validate data observation = Observation( - sensor_id=sensor_id, - sample=sample, nma_pk_waterlevels=row.GlobalID, - value=row.DepthToWater, - measuring_point_height=row.MPHeight, + sample=sample, + sensor_id=None, + analysis_method_id=None, + observation_datetime=dt_utc, observed_property="groundwater level", + value=row.DepthToWater, unit="ft", + measuring_point_height=row.MPHeight, level_status=level_status, - observation_datetime=dt_utc, ) session.add(observation) From 86efffbd7cbff37037fadd52044d5faf0842f6cc Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 10:52:02 -0600 Subject: [PATCH 20/30] fix: move lexicon_mapper to transfers/util.py to prevent circular imports --- services/lexicon_mapper.py | 77 -------------------------------------- transfers/util.py | 68 +++++++++++++++++++++++++++++++-- 2 files changed, 64 insertions(+), 81 deletions(-) delete mode 100644 services/lexicon_mapper.py diff --git a/services/lexicon_mapper.py b/services/lexicon_mapper.py deleted file mode 100644 index 56f684ea9..000000000 --- a/services/lexicon_mapper.py +++ /dev/null @@ -1,77 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from transfers.util import read_csv - - -class LexiconMapper: - def __init__(self): - self._mappers = None - - def map_value(self, value): - return self._make_lu_to_lexicon_mapper().get(value, value) - - def _make_lu_to_lexicon_mapper(self): - if self._mappers: - return self._mappers - - lu_tables = [ - # "LU_AltitudeDatum", # the code is the value, so no need for mapping - "LU_AltitudeMethod", # CODE/MEANING - "LU_CollectionMethod", # CODE/MEANING - "LU_ConstructionMethod", # CODE/MEANING - "LU_CoordinateAccuracy", # CODE/MEANING - # "LU_CoordinateDatum", # the code is the value, so no need for mapping - "LU_CoordinateMethod", # CODE/MEANING - "LU_CurrentUse", # CODE/MEANING - "LU_DataQuality", # CODE/MEANING - "LU_DataSource", # CODE/MEANING - "LU_Depth_CompletionSource", # CODE/MEANING - "LU_Discharge_ChemistrySource", # CODE/MEANING - # "LU_FieldNoteTypes", # not being used in the transfers since there are no records - # "LU_Formations", # needs to be cleaned before it can be used - "LU_LevelStatus", # CODE/MEANING - # "LU_Lithology", # needs to be cleaned before it can be used - "LU_MajorAnalyte", # CODE/MEANING - "LU_MeasurementMethod", # CODE/MEANING - # "LU_MeasuringAgency", # the abreviation is what is used in the new schema - "LU_MinorTraceAnalyte", # CODE/MEANING - "LU_MonitoringStatus", # CODE/MEANING - "LU_SampleType", # CODE/MEANING - "LU_SiteType", # CODE/MEANING - "LU_Status", # CODE/MEANING - ] - - mappers = {} - - for lu_table in lu_tables: - table = read_csv(lu_table) - - for i, row in table.iterrows(): - if lu_table == "LU_Formations": - code = row.Code - meaning = row.Meaning - else: - code = row.CODE - meaning = row.MEANING - - mappers.update({f"{lu_table}:{code}": meaning}) - self._mappers = mappers - return mappers - - -lexicon_mapper = LexiconMapper() - -# ============= EOF ============================================= diff --git a/transfers/util.py b/transfers/util.py index d7770a807..1e877f5f7 100644 --- a/transfers/util.py +++ b/transfers/util.py @@ -29,13 +29,14 @@ from constants import SRID_WGS84, SRID_UTM_ZONE_13N from db import Thing, Location from services.gcs_helper import get_storage_bucket -from services.lexicon_mapper import lexicon_mapper + +# from services.lexicon_mapper import lexicon_mapper from services.util import ( transform_srid, get_epqs_elevation_from_point, - get_state_from_point, - get_county_from_point, - get_quad_name_from_point, + # get_state_from_point, + # get_county_from_point, + # get_quad_name_from_point, ) from transfers.logger import logger @@ -312,4 +313,63 @@ def wrapper(*args, **kwargs): return wrapper +class LexiconMapper: + def __init__(self): + self._mappers = None + + def map_value(self, value): + return self._make_lu_to_lexicon_mapper().get(value, value) + + def _make_lu_to_lexicon_mapper(self): + if self._mappers: + return self._mappers + + lu_tables = [ + # "LU_AltitudeDatum", # the code is the value, so no need for mapping + "LU_AltitudeMethod", # CODE/MEANING + "LU_CollectionMethod", # CODE/MEANING + "LU_ConstructionMethod", # CODE/MEANING + "LU_CoordinateAccuracy", # CODE/MEANING + # "LU_CoordinateDatum", # the code is the value, so no need for mapping + "LU_CoordinateMethod", # CODE/MEANING + "LU_CurrentUse", # CODE/MEANING + "LU_DataQuality", # CODE/MEANING + "LU_DataSource", # CODE/MEANING + "LU_Depth_CompletionSource", # CODE/MEANING + "LU_Discharge_ChemistrySource", # CODE/MEANING + # "LU_FieldNoteTypes", # not being used in the transfers since there are no records + # "LU_Formations", # needs to be cleaned before it can be used + "LU_LevelStatus", # CODE/MEANING + # "LU_Lithology", # needs to be cleaned before it can be used + "LU_MajorAnalyte", # CODE/MEANING + "LU_MeasurementMethod", # CODE/MEANING + # "LU_MeasuringAgency", # the abreviation is what is used in the new schema + "LU_MinorTraceAnalyte", # CODE/MEANING + "LU_MonitoringStatus", # CODE/MEANING + "LU_SampleType", # CODE/MEANING + "LU_SiteType", # CODE/MEANING + "LU_Status", # CODE/MEANING + ] + + mappers = {} + + for lu_table in lu_tables: + table = read_csv(lu_table) + + for i, row in table.iterrows(): + if lu_table == "LU_Formations": + code = row.Code + meaning = row.Meaning + else: + code = row.CODE + meaning = row.MEANING + + mappers.update({f"{lu_table}:{code}": meaning}) + self._mappers = mappers + return mappers + + +lexicon_mapper = LexiconMapper() + + # ============= EOF ============================================= From 481960306c08d1ad04615d0d81e7cfa9dd4b5fbe Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 10:53:02 -0600 Subject: [PATCH 21/30] refactor: transfer wls at end to use owners if needed --- transfers/transfer.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/transfers/transfer.py b/transfers/transfer.py index 4675969d9..56977e9bd 100644 --- a/transfers/transfer.py +++ b/transfers/transfer.py @@ -14,7 +14,6 @@ # limitations under the License. # =============================================================================== import os -import time from dotenv import load_dotenv @@ -25,19 +24,13 @@ from db import Base from db.engine import session_ctx -from transfers.asset_transfer import transfer_assets from transfers.group_transfer import transfer_groups from transfers.link_ids_transfer import transfer_link_ids, transfer_link_ids_welldata from transfers.contact_transfer import transfer_contacts from transfers.sensor_transfer import init_sensor from transfers.waterlevels_transfer import transfer_water_levels from transfers.well_transfer import transfer_wells, transfer_wellscreens -from transfers.thing_transfer import ( - transfer_springs, - transfer_perennial_stream, - transfer_ephemeral_stream, - transfer_met, -) + from transfers.util import timeit, timeit_direct from transfers.logger import logger, save_log_to_bucket @@ -106,9 +99,6 @@ def transfer_all(sess, limit=100): message("TRANSFERRING CONTACTS") timeit_direct(transfer_contacts, sess) - message("TRANSFERRING WATER LEVELS") - timeit_direct(transfer_water_levels, sess) - """ Developer's notes @@ -126,6 +116,9 @@ def transfer_all(sess, limit=100): message("TRANSFERRING GROUPS") timeit_direct(transfer_groups, sess) + message("TRANSFERRING WATER LEVELS") + timeit_direct(transfer_water_levels, sess) + # message("TRANSFERRING ASSETS") # timeit_direct(transfer_assets, sess) From cafa593a90e1f79bb511d7a6f6fd6a2649f8b41b Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 11:39:26 -0600 Subject: [PATCH 22/30] WIP: water levels transfer --- core/lexicon.json | 1 + transfer_2025-09-30T11h12m26s.log | 750 ++++++++++++++++++++++++++++++ transfer_2025-09-30T11h20m36s.log | 750 ++++++++++++++++++++++++++++++ transfer_2025-09-30T11h33m04s.log | 750 ++++++++++++++++++++++++++++++ transfers/util.py | 8 +- transfers/waterlevels_transfer.py | 30 +- 6 files changed, 2284 insertions(+), 5 deletions(-) create mode 100644 transfer_2025-09-30T11h12m26s.log create mode 100644 transfer_2025-09-30T11h20m36s.log create mode 100644 transfer_2025-09-30T11h33m04s.log diff --git a/core/lexicon.json b/core/lexicon.json index c17f24aa7..db05e9061 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -409,6 +409,7 @@ {"categories": ["role"], "term": "Engineer", "definition": "Engineer"}, {"categories": ["role"], "term": "Organization", "definition": "A contact that is an organization"}, {"categories": ["role"], "term": "Specialist", "definition": "Specialist"}, + {"categories": ["role"], "term": "Technician", "definition": "Technician"}, {"categories": ["role"], "term": "Research Assistant", "definition": "Research Assistant"}, {"categories": ["role"], "term": "Research Scientist", "definition": "Research Scientist"}, {"categories": ["role"], "term": "Operator", "definition": "Operator"}, diff --git a/transfer_2025-09-30T11h12m26s.log b/transfer_2025-09-30T11h12m26s.log new file mode 100644 index 000000000..df32e59fc --- /dev/null +++ b/transfer_2025-09-30T11h12m26s.log @@ -0,0 +1,750 @@ +2025-09-30 11:12:26,784 [INFO ] +2025-09-30 11:12:26,784 [INFO ] ********** START-------------------------------------- ********** +2025-09-30 11:12:26,785 [INFO ] ********** STARTING TRANSFER ********** +2025-09-30 11:12:26,785 [INFO ] Erasing existing data and initializing lexicon and sensors +2025-09-30 11:12:26,785 [INFO ] Erasing existing data +2025-09-30 11:12:27,152 [INFO ] Recreating tables +2025-09-30 11:12:27,456 [INFO ] erase took 0.670932 seconds +2025-09-30 11:12:27,457 [INFO ] Initializing lexicon +2025-09-30 11:12:34,019 [INFO ] lexicon took 6.561986 seconds +2025-09-30 11:12:34,019 [INFO ] Initializing sensors +2025-09-30 11:12:34,029 [INFO ] sensor took 0.009682 seconds +2025-09-30 11:12:34,029 [INFO ] +2025-09-30 11:12:34,029 [INFO ] ********** TRANSFERRING WELLS ********** +2025-09-30 11:12:45,073 [INFO ] Valid WellData Datasources: +2025-09-30 11:12:45,073 [INFO ] (Author?), 1998, Geohydrology of River Bend Subdivision Taos County, New Mexico, Glorieta Geoscience, Inc. Appendix A. (Full report filed w/TV-121). +2025-09-30 11:12:45,073 [INFO ] 1) Author?, 1995, Town of Taos San Juan/Chama Diversion Proj., Phase 2, Vol. 1, Production Well & Observation Well Installation, Testing, and Determination of Aquifer Coefficients, GGI. 2) Water Level +2025-09-30 11:12:45,074 [INFO ] 1) Bernalillo County, Sara Chudnoff; 2) San Pedro Creek Estates HOA +2025-09-30 11:12:45,074 [INFO ] 1) BLM - Part of the Capitan Aquifer Observation-Well Network +2025-09-30 11:12:45,074 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 3) Sandia Report SAND2018-12018 NM Permian Basin +2025-09-30 11:12:45,074 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:12:45,075 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources +2025-09-30 11:12:45,075 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources 2) Pre-Design Groundwater Investigation at the Tailing Facil. ARCADIS +2025-09-30 11:12:45,075 [INFO ] 1) Drakos, P., Riesterer, J., Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, GGI (Filed w/TV-171). 2) Water Level Monitoring Prgm. +2025-09-30 11:12:45,075 [INFO ] 1) GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology; 2) USGS +2025-09-30 11:12:45,075 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) 3) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:12:45,075 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:12:45,076 [INFO ] 1) Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:12:45,076 [INFO ] 1) Sandia National Labs/ BLM Wells, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:12:45,076 [INFO ] 1) Turner, B., 1996, Water Availability for the El Mirador Subdvn, Taos Cty, NM, Turner Environ. Consult., Appd 2&3 (filed w/TV-229). 2) Vista del Valle report (filed w/TV-153). 3) Drakos, P. 2005, Ge +2025-09-30 11:12:45,076 [INFO ] 1) USGS - WL; 2) Brandvold - WQ +2025-09-30 11:12:45,076 [INFO ] 1) USGS - WLs 2) Brandvold -WQ +2025-09-30 11:12:45,077 [INFO ] 1) USGS - WLs 2) Brandvold -WQ, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia National Labs SAND2018-12018 NM Permian Basin +2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) David Chace of Hydro Resolutions +2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) San Pedro Creek Estates HOA +2025-09-30 11:12:45,078 [INFO ] 1) USGS 2) Sandia National Labs/ BLM Well, 3) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:12:45,078 [INFO ] 1) USGS 2) Sandia National Labs/BLM Well +2025-09-30 11:12:45,078 [INFO ] 1) USGS and 2) Data from Lynn Brandvold with NMBGMR chemistry lab, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia Report SAND2018-12018 NM Permian Basin +2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR +2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) Sandia National Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Lab Report SAND2018-12018 Water Resource Assessment in the NM Permian Basin. +2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) GW3: Geol. & Groundwater Res. of Eddy Cty. (1952) Hendrickson & Jones, NMBGMR, 4) SNL SAND2021-1869 +2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:12:45,079 [INFO ] 1) Well depth and screen info. from spreadsheet from mayor of Questa. 2) Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis. +2025-09-30 11:12:45,080 [INFO ] AGW Consultants, 12/85, Geohydro of R.San Marcos Property; Balleau GWA, 1999; field check +2025-09-30 11:12:45,080 [INFO ] AGW Consultants, 12/85, Geohydrology of Rancho San Marcos +2025-09-30 11:12:45,080 [INFO ] AGW Consultants, May 1984, Hydrogeology of the Santa Fe Downs Resort Area Near Santa Fe, Santa Fe County, NM +2025-09-30 11:12:45,080 [INFO ] AGWC, Inc., 1983, Hydrogeology of the Great Cloud Zen Center, Oct 1983 +2025-09-30 11:12:45,080 [INFO ] Also see: Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. (Filed w/TV-103). +2025-09-30 11:12:45,080 [INFO ] American Ground Water Consultants, 1983, Hydrogeology of the Villa Marika Property, October 1983. +2025-09-30 11:12:45,080 [INFO ] AMP visited this well on 5/25/2022 but we didn't do a well inventory. +2025-09-30 11:12:45,080 [INFO ] ARCADIS Project B0046795.0019, Early Design Actions-Pre-Design Tailing Facility Groundwater Invest. Results from Monitoring Wells MW-43, MW-44 and MW-45 (May 1, 2015). +2025-09-30 11:12:45,081 [INFO ] ARCADIS well/lithologic log +2025-09-30 11:12:45,081 [INFO ] Author (?), 1998, Geohydrology of River Bend Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. Also in NMGS Gdbk 55 pg 396. +2025-09-30 11:12:45,081 [INFO ] Balleau Groundwater, 2001, CDEX1 Completion Report +2025-09-30 11:12:45,081 [INFO ] Balleau Groundwater, 2002, CDPROD1 Completion Report, 2/02 +2025-09-30 11:12:45,081 [INFO ] Balleau Groundwater, Inc., Oct 2007, Injection Demonstration Well -- Well Completion Report +2025-09-30 11:12:45,082 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well A -- Well Completion Report +2025-09-30 11:12:45,082 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well B -- Well Completion Report +2025-09-30 11:12:45,082 [INFO ] Balleau Groundwater, Inc., written communication, 11/27/2007 +2025-09-30 11:12:45,082 [INFO ] Balleau GW, 2002, CDPROD Completion Report; well log +2025-09-30 11:12:45,082 [INFO ] Balleau GWA, 1999; Balleau GWA +2025-09-30 11:12:45,082 [INFO ] Balleau GWA, 1999; field check +2025-09-30 11:12:45,082 [INFO ] Balleau GWA, 1999; field check; Jenkins, 1977, Geohydro Investigation of Turquoise Trail Subdivision +2025-09-30 11:12:45,082 [INFO ] Bjorklund, L.J. (1957) Reconnaissance of Groundwater Conditions in the Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:12:45,082 [INFO ] Black & Veatch Consulting Engineers, 1978, Construction and Testing Report Buckman Well No. 2; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 +2025-09-30 11:12:45,083 [INFO ] Black & Veatch Consulting Engrs, 1978, Construction and Testing Rept Buckman Well No. 1; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:12:45,083 [INFO ] Bob Hubbard +2025-09-30 11:12:45,083 [INFO ] Bureau scientists performed a pump test on this well. +2025-09-30 11:12:45,083 [INFO ] C. Borchert, written comm.; WATERS +2025-09-30 11:12:45,083 [INFO ] Carrol Wood, well owner. +2025-09-30 11:12:45,083 [INFO ] Cathie. +2025-09-30 11:12:45,083 [INFO ] CB00107524CCA +2025-09-30 11:12:45,084 [INFO ] CDM completion log to NMED SW Bureau +2025-09-30 11:12:45,084 [INFO ] CDM well completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau +2025-09-30 11:12:45,084 [INFO ] CH2M Hill report to NMED UST Bureau +2025-09-30 11:12:45,084 [INFO ] CH2M Hill water level measurements at WWTP (entered into db). +2025-09-30 11:12:45,084 [INFO ] Charles Heaton, Sinagua Consultants, 1999, Well Hydrology Report Elmer Garcia Property, Aug 1999; County Records; well log; field check +2025-09-30 11:12:45,084 [INFO ] Charles Walker +2025-09-30 11:12:45,084 [INFO ] Chemistry data from Lynn Brandvold with NMBGMR chemistry lab. NMBGMR visited the site after chem. data input. +2025-09-30 11:12:45,085 [INFO ] Chemistry from Matt Sophy +2025-09-30 11:12:45,085 [INFO ] Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:12:45,085 [INFO ] Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR +2025-09-30 11:12:45,085 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; CDM, Jan 2001 +2025-09-30 11:12:45,085 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:12:45,085 [INFO ] City of Santa Fe; OSE records; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:12:45,085 [INFO ] Claudia Borchert, 2002, MS Thesis +2025-09-30 11:12:45,086 [INFO ] Compiled by Susan VonGonten, NMED UST Bureau +2025-09-30 11:12:45,086 [INFO ] Consulting Professionals, Inc, Hydrogeologic Rept La Tierra Subdn, Phase 4, Santa Fe Cnty, Dec1978 +2025-09-30 11:12:45,086 [INFO ] Consulting Professionals, Inc., VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75; well log +2025-09-30 11:12:45,086 [INFO ] Cooper, 1991, Geohydro Rept for Country Boarding Kennel, 5/1991 +2025-09-30 11:12:45,086 [INFO ] Cooper, 1995, Garcia Ranch report; Wilson, 1978, SFC water plan Table 1-28; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis. +2025-09-30 11:12:45,086 [INFO ] Cooper, 1995, rept to Garcia Ranch; Kuckleman, 2003 +2025-09-30 11:12:45,086 [INFO ] Cooper, D. R., 1995, Geohydrology Report for Cottonwood Ranch Subdn, Santa Fe Cty, NM, April 1995 +2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., 1998, Geohydrology for WK Jones, Santa Fe Cnty, Oct 1998 +2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrologic Report for Rancho De Los Cuervos, Santa Fe Cnty, Sept1986; Berman Tract +2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Report for Frank M Gallegos & Andrew M Leyba, Santa Fe Cnty, Oct, 1999 +2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Report for Friendly Construction, Inc., Santa Fe Cnty, July 1994 +2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Report for Tano Vista Grande, Santa Fe Cnty, NM, Nov 1996 +2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Rept for Marvin Pollock & Bettina Lancaster, Santa Fe Cnty, May 1994 +2025-09-30 11:12:45,087 [INFO ] Cooper, D.R., Geohydrology Rept for El Prado Subdn, Santa Fe Cnty, Sept 1994 +2025-09-30 11:12:45,087 [INFO ] Cooper, D.R., Santa Fe Design Assoc, Geohydrology Rept for Rancho Oso Loco, Santa Fe Cnty, 1985 +2025-09-30 11:12:45,087 [INFO ] Cooper, Dennis R., Geohydrology for Rancho De Los Ninos, Santa Fe Cnty, NM, April 1999; Rick Borrego +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for Bob Shipp, Santa Fe County, NM, June 1995 +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for Heartstone Development LLC, Dec 2001 +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for James B. Alley Jr., Santa Fe Cnty, NM, March 1995 +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for Lawrence Tuchman, Santa Fe Cnty, Oct 1994; Frost & Assoc., Santa Fe County WQ Monitoring, June 1996 +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report For Los Suenos, Santa Fe County, NM, April 1994 +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Rept for Jeffrey Jacobs & Thad Bowman, Santa Fe Cnty, Jan 1996 +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., July 1995, Analysis of water levels in wells on Garcia Ranch, unpub consult rept +2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., July 1995, Unpub report to Garcia Ranch; well log; WATERS; USGS field notes +2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, 1990, Geohydrology Report for San Juan Complex Partnership Ltd., Sept 1990; Field check by Johnson; well log; SFO files +2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, 1993, Geohydrology Rept for Neighbors, Inc., Santa Fe Cnty, Dec 1993; well log Joe Briscoe +2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, 2000, Geohydro Rept for Roybal Subdivision, Santa Fe Cnty, NM, Oct 2000; field check +2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, Geohydrol Rept for Hacienda Del Cerezo, Santa Fe Cnty, NM, Jan 1994; well logs +2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, Geohydrology Rept for B. Howard & J.Morris, Santa Fe Cnty, NM, Dec 1994 +2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis,1991, Geohydrology Rept for Sheila Cooper; field check by Johnson +2025-09-30 11:12:45,089 [INFO ] Cooper, Geohydro Report for Land Ventures, LLC, 6/2001; field check by Johnson; well log +2025-09-30 11:12:45,089 [INFO ] Cooper, Geohydrology Rept for Welsh Family Ltd Partnership, Santa Fe Cnty, March 1995 +2025-09-30 11:12:45,089 [INFO ] Corbin Consulting, Inc., 2005, Geohydrology Report (RG-27728-S) Longanecker Property. March 8, 2005 +2025-09-30 11:12:45,090 [INFO ] Corbin Consulting, Inc., 2005, Geo-Hydrology Report McMillan Subdivision, June 6, 2005 +2025-09-30 11:12:45,090 [INFO ] Corbin, J., 2004, Constant Property Geohydrology Report, Corbin Consulting Inc. June 3, 2004. Field checked. +2025-09-30 11:12:45,090 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005 (EB-618) +2025-09-30 11:12:45,090 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005; (EB-618) +2025-09-30 11:12:45,090 [INFO ] Corbin, James, 2005. +2025-09-30 11:12:45,090 [INFO ] County records; WATERS; drilling log +2025-09-30 11:12:45,090 [INFO ] County records; well log +2025-09-30 11:12:45,090 [INFO ] CT890 also at same site, cinfusing records not sure which well is correct, this one has a log +2025-09-30 11:12:45,091 [INFO ] Cuttings from NMBG. Bill White has cuttings. Geophysics: gamma ray, neutron, 3-arm-caliper, resistivitity, single pt resistance, SP, temperature profile +2025-09-30 11:12:45,091 [INFO ] Dames & Moore, Inc., 1995, Geohydroloy Report Komis Estates for Southwest Surveying Co., Inc., Dec. 1995; J. Corbin personal communication, 2005 +2025-09-30 11:12:45,091 [INFO ] Daniel B. Stephens & Associates report on Campbell Ranch subdivision wells +2025-09-30 11:12:45,091 [INFO ] Daniel B. Stevens & Associates consultant report (AMP\data\datasets\Campbell Ranch Bernalillo County) +2025-09-30 11:12:45,091 [INFO ] Darr, M.J., 2006, Geohydrologic Investigation Report: Proposed "Ocotillo" Subdivision, Taos County, NM. MJDarrconsult, Inc / Hydroscience Assoc. Inc, 2006, Analysis of Aquifer Test Run Using RG-87080 +2025-09-30 11:12:45,091 [INFO ] Darr, M.J., 2008, Geohydrologic Investigation Report: Proposed Los Llanos Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. +2025-09-30 11:12:45,091 [INFO ] Darr, Michael J., 2007, Geohydrologic Investigation Report: Proposed "Golf Country" Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. +2025-09-30 11:12:45,091 [INFO ] Data from Groundwater Report 2: Geology & Groundwater Resources of San Miguel County, NM. (1951) NMBGMR by R.L. Griggs and G.E. Hendrickson. +2025-09-30 11:12:45,092 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab. +2025-09-30 11:12:45,092 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab., OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:12:45,092 [INFO ] Data from owner well testing via NMBGMR water lab. +2025-09-30 11:12:45,092 [INFO ] David Chace of Hydro Resolutions +2025-09-30 11:12:45,092 [INFO ] David Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 +2025-09-30 11:12:45,092 [INFO ] David N Jenkins, Geohydrolgoy of the Las Dos, Phase II Area, Santa Fe County, NM, October 1982 +2025-09-30 11:12:45,092 [INFO ] David N Jenkins, Geohydrologic Conditions at the San Juan Residences, Santa Fe Cnty, April 1982 +2025-09-30 11:12:45,092 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 +2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; +2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; Steinberger log of R1 test hole, K.Summers files +2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; WK Summers project files +2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979 +2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; Mourant; Spiegel & Baldwin, p 241 +2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; WATERS +2025-09-30 11:12:45,093 [INFO ] David N. Jenkins, Geohydrologic Conditions at the Thorpe Condominiums, Santa Fe Cnty, Nov 1982 +2025-09-30 11:12:45,093 [INFO ] David Updegraff & William Lyons, 1978, Geohydrology of the Hyde Park Estates Unit 3 Subdiv'n, Aug 1978 +2025-09-30 11:12:45,094 [INFO ] DBStephens report to NMED UST Bureau +2025-09-30 11:12:45,094 [INFO ] depth made up by GCR based on nearby wells, no actual data +2025-09-30 11:12:45,094 [INFO ] depth made up by GCR, no actual data, assume similar to well K-14 (UC 30) +2025-09-30 11:12:45,094 [INFO ] Discussion of Geology, Hydrogeology, and Water Quality of the Tailings Area, Molycorp Facility, Taos County, NM, 1995, South Pass Resources, Inc. +2025-09-30 11:12:45,094 [INFO ] Drakos, P. & Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. Also, Water Level Monitoring Prgm. 2002-2 +2025-09-30 11:12:45,094 [INFO ] Drakos, P. and Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level +2025-09-30 11:12:45,094 [INFO ] Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. +2025-09-30 11:12:45,094 [INFO ] Drakos, P., et al., 2004, Hydrologic Characteristics of Basin-Fill Aquifers in the Southern San Luis Basin, NM, NMGS Guidebook 55, pg. 391. +2025-09-30 11:12:45,095 [INFO ] Drakos, P., Hodgins, M., 2000, Drilling & Testing Report, Bureau of Reclamation 2000-Ft. Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. 2) Water Level Monitoring Prgm. 2002-2007, GGI +2025-09-30 11:12:45,095 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. & Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Ft. Deep Nested Piezometer/Expl. Well (BOR-2) & 2100-Ft. Deep Production Well (BOR-3), Paseo del Canon We +2025-09-30 11:12:45,095 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. and Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR-2) & 2100-Feet Deep Production Well (BOR-3), Paseo de +2025-09-30 11:12:45,095 [INFO ] Drakos, P., Riesterer, J., and Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level Monitor +2025-09-30 11:12:45,095 [INFO ] Driller's log; OSE network WLs +2025-09-30 11:12:45,095 [INFO ] dubiousOSE match, depth and location are off +2025-09-30 11:12:45,095 [INFO ] Duncan, 2004. +2025-09-30 11:12:45,095 [INFO ] Duncan, 2004; field check by Johnson 12-22-05 +2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; Frost, 1999, ElDorado Area Water & Sanitation District Project files +2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study +2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study. +2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; JSAI, 2001, App. #6 +2025-09-30 11:12:45,096 [INFO ] Exploratory & Shallow Well Drilling Rio Grande Watershed Study-Phase 1 San Acacia Surface Water/Groundwater Investigation (Dec. 5, 2003) S.S. Papadopulos & Associates for US Army Corps of Engineer +2025-09-30 11:12:45,096 [INFO ] Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94 +2025-09-30 11:12:45,096 [INFO ] Field check by Johnson +2025-09-30 11:12:45,096 [INFO ] Field check by Johnson, Cruz, Frost; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review +2025-09-30 11:12:45,096 [INFO ] Field check by Johnson; Cooper, 1995, report to Garcia Ranch; Borton field notes +2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 2/14/2002 +2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 7/2/98 +2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; owner info +2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; WATERS +2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; WATERS; Mourant +2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; WATERS; sample site for Anderholm, 1994 USGS WRI Report 94-4078 +2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; well log +2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well log; owner +2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well log; SFO files +2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well record +2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well/owner records +2025-09-30 11:12:45,098 [INFO ] Field check by Lyman +2025-09-30 11:12:45,098 [INFO ] Field check with Lyman and BLM realtor Hal Knox; plat map +2025-09-30 11:12:45,098 [INFO ] Field check, WATERS +2025-09-30 11:12:45,098 [INFO ] Field check; owner +2025-09-30 11:12:45,099 [INFO ] Field check; owner; well log +2025-09-30 11:12:45,099 [INFO ] Field check; WATERS +2025-09-30 11:12:45,099 [INFO ] Field check; WATERS. OSE Well Record. +2025-09-30 11:12:45,099 [INFO ] Field check; WATERS.OSE Well Record. +2025-09-30 11:12:45,099 [INFO ] Field check; well log +2025-09-30 11:12:45,099 [INFO ] Field check; well logg +2025-09-30 11:12:45,099 [INFO ] Field check; well record +2025-09-30 11:12:45,099 [INFO ] Field checked +2025-09-30 11:12:45,100 [INFO ] Field checked, WATERS +2025-09-30 11:12:45,100 [INFO ] Field checked, Well owners recollection of well info +2025-09-30 11:12:45,100 [INFO ] Field checked. WATERS. OSE Well Record. +2025-09-30 11:12:45,100 [INFO ] Field checked; WATERS +2025-09-30 11:12:45,100 [INFO ] Field checked; WATERS. OSE Well Record. +2025-09-30 11:12:45,100 [INFO ] Field checks; WATERS; well record. +2025-09-30 11:12:45,100 [INFO ] Finch & Petronis (JS&A), Sept. 2006, Hydrogeologic Report for the Galisteo Basin Preserve, Santa Fe County, NM, for Commonweal Conservancy, unpub. consultant report +2025-09-30 11:12:45,100 [INFO ] Finch, S.T., Jr., 2001, Hydrogeologic Evaluation of T-255 Et. Al., Near Carrizozo, New Mexico, John Shomaker & Associates, Inc. +2025-09-30 11:12:45,101 [INFO ] Finch, Steven T., and Melis, Erwin A., October 2008, Hydrogeologic evaluation of ground-water supply for the Spaceport America Site near Upham, NM, John Shomaker & Associates. +2025-09-30 11:12:45,101 [INFO ] Fleming, WM, Geohydrology Report for the Matthews Property, Santa Fe County, July 26, 1991 +2025-09-30 11:12:45,101 [INFO ] Foreman +2025-09-30 11:12:45,101 [INFO ] Frost MWB notes, 1994 +2025-09-30 11:12:45,101 [INFO ] Frost MWB Survey notes +2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe Cnty Ground Water Levels, 1995-96 Results; GWSI; USGS log books; well record +2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996 +2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; field check +2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Lewis database; NMED DWB (1999) via Jemez y Sangre Database (2000) +2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Mourant +2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnso +2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnson +2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; well record +2025-09-30 11:12:45,102 [INFO ] Frost, 1999; WATERS +2025-09-30 11:12:45,102 [INFO ] Frost, MWB Survey notes; D.Koning log review +2025-09-30 11:12:45,102 [INFO ] Full EPA ID #TB-B011-150811-21 +2025-09-30 11:12:45,102 [INFO ] Full EPA ID #TB-B023-150814-021 +2025-09-30 11:12:45,103 [INFO ] Full EPA ID #TD-D001-150812-21 +2025-09-30 11:12:45,103 [INFO ] Full EPA ID #TD-D003-150812-21 +2025-09-30 11:12:45,103 [INFO ] Garrabrant, L.A., 1993, Water resources of Taos County, NM: USGS WRIR 93-4107. +2025-09-30 11:12:45,103 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Cuttings archived in our core shed. +2025-09-30 11:12:45,103 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Pump test from driller (JSAI). Cuttings/chip boards archived in our core shed. +2025-09-30 11:12:45,103 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons +2025-09-30 11:12:45,103 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons; map +2025-09-30 11:12:45,103 [INFO ] Geohydrology Assoc., Inc. lithologic log to NMED SW Bureau; field check by Johnson +2025-09-30 11:12:45,104 [INFO ] Geohydrology Assoc., Inc., 1988, Hydrogeologic Investigation of Cottonwood Estates, 2//88; WATERS +2025-09-30 11:12:45,104 [INFO ] Geophysics: dual induction guard, dual spaced neutron,microlog, high-resol temp log. WQ: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. +2025-09-30 11:12:45,104 [INFO ] GGI +2025-09-30 11:12:45,104 [INFO ] GGI report (has WQ sample). Requested from P. Drakos; have not received response. +2025-09-30 11:12:45,104 [INFO ] GGI report for NMED UST Bureau +2025-09-30 11:12:45,104 [INFO ] GGI report to NMED UST Bureau +2025-09-30 11:12:45,104 [INFO ] GGI reports: 1) 2001 report on RP-2500 in Town of Taos, 2) Water Level Monitoring +2025-09-30 11:12:45,104 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, NM,3/19/92; Sangre de Cristo Estates rept +2025-09-30 11:12:45,104 [INFO ] GGI, 100-Yr Water Availability Santa Fe Metro Center, 12/01; AND La Cienega de Santa Fe Proj, 10/91 +2025-09-30 11:12:45,105 [INFO ] GGI, 1988, Geohydrology of the Picture Rock Development Co. Property, Santa Fe, May, 1988. +2025-09-30 11:12:45,105 [INFO ] GGI, 1989, Geohydrology of the Baird Joint Venture Property, Taos County, NM, Glorieta Geoscience, Inc. +2025-09-30 11:12:45,105 [INFO ] GGI, 1989, Reconnaissance Geohydrology of the Lumpkins Property, Santa Fe County, NM, August 1989 +2025-09-30 11:12:45,105 [INFO ] GGI, 1990, Geohydrology of the Bajo Del Cielo Subdivision, Santa Fe County, NM. Dec. 1990 +2025-09-30 11:12:45,105 [INFO ] GGI, 1990, Geohydrology of the Beaver and Henry Properties, Santa Fe Cnty, Aug 1990 +2025-09-30 11:12:45,105 [INFO ] GGI, 1991, Geohydrology of the Walker Property, Santa Fe, May, 1991. +2025-09-30 11:12:45,105 [INFO ] GGI, 1995, Geohydrology of the Santa Fe Opera Tract Prop, Santa Fe Cnty, 3/95; G.Ellis; well log +2025-09-30 11:12:45,105 [INFO ] GGI, 1995, Geohydrology of the Vereda Serena Property, Santa Fe, October, 1995. +2025-09-30 11:12:45,106 [INFO ] GGI, 1995, Production well and observation well installation, testing, and determination of aquifer coefficients: unpub consultant report for Town of Taos, March 1995 +2025-09-30 11:12:45,106 [INFO ] GGI, 1998, Ground Water Conditions in the Vicinity of the Gonzales Tract San Marcos Arroyo Santa Fe County, NM, Dec. 1998 +2025-09-30 11:12:45,106 [INFO ] GGI, 2001, Geohydrologic report for the Village at Eldorado, July, 2001. +2025-09-30 11:12:45,106 [INFO ] GGI, 2001, Vista del Valle Subdivision Report, Taos County, New Mexico +2025-09-30 11:12:45,106 [INFO ] GGI, 2002, Addendum To: Reconnaissance Geohydrologic Characterization of Tesuque Ridge, 8/28/2002 +2025-09-30 11:12:45,106 [INFO ] GGI, 2002, Reconnaissance Geohydrologic Characterization of Tesuque Ridge Subdivn, 7/17/02 +2025-09-30 11:12:45,106 [INFO ] GGI, 2003, Geohydrologic Report for the Luna Rosa LLC Equestrian Center Property, July 2003. +2025-09-30 11:12:45,106 [INFO ] GGI, 2003, Reconnaissance Geohydrology report of the Clements Property, Santa Fe, April, 2003. +2025-09-30 11:12:45,107 [INFO ] GGI, 2003, Reconnaissance Water Availability Assessment of the Santa Fe Waldorf School - High School +2025-09-30 11:12:45,107 [INFO ] GGI, 2004, Geohydrology of the Estancia Subdivision, Santa Fe County, December, 2004 +2025-09-30 11:12:45,107 [INFO ] GGI, 2004, Reconnaissance Geohydrology Report for the Beaty Property, Santa Fe Cty, Dec. 22, 2004. +2025-09-30 11:12:45,107 [INFO ] GGI, Chapter VI Geohydrology of the La Cienega de Santa Fe Project, Oct 1991; GGI, 100-Yr Water Availability, Downs at Santa Fe, March 2001 for Pojoaque Pueblo Development Corp +2025-09-30 11:12:45,107 [INFO ] GGI, Geohydro of Naiche Property, 12/92; field check by Johnson; well recd +2025-09-30 11:12:45,107 [INFO ] GGI, Geohydrologic report for the Rancho San Lucas Subdivision, Feb 2002 +2025-09-30 11:12:45,107 [INFO ] GGI, Geohydrology of La Canada Subdivision, Santa Fe County, NM, July 1985 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of Pop's Convenience Store, Santa Fe County, NM, Sept 29, 1997 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Brenner Property, Santa Fe County, NM, Aug 1990 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Bryant Prop, Santa Fe Cnty, May 1995; GGI, San Ysidro de Tesuque, May 1990 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Bryant Property, Santa Fe County, NM, May 1995; GGI, 1989 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Circle Drive Compound Prop, Santa Fe Cnty, May 1991 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Hansen Property, Santa Fe County, NM, June 1990 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Insight Investments Property, Santa Fe Cnty, NM, 2/20/90 +2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Lane Property, Santa Fe Cnty, NM, 4/29/92 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the McElvain/Patania Property, 6/92 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990; GGI, Geohydrology of the Santa Fe Arroyo Hondo Vistas Subdivision, SFe County, Aug. 1989 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Migel Property, Santa Fe Cnty, 2/90; GGI, Geohydro of McMahon Prop 10/90 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Mountain Vista Subdivision, Santa Fe County, July 10, 2002 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Myers Property, Santa Fe Cnty, July 1992 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Naiche Property, Santa Fe County, NM, Dec 1992 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Prince Property, 8/91; McElvain-Patania Prop, 6/92 +2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Santa Fe Animal Shelter Site, Santa Fe County, NM, May 15, 2002 +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Santa Fe Opera Tr, Santa Fe Cnty, 3/95; GGI, San Ysidro de Tesuque, 5/90 +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Shulman Property, Santa Fe Cnty, April 1990 +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Vrtiak Property, Santa Fe Cnty, June, 1991 +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the West Alameda Proj, Santa Fe Cnty, NM, Jan 1989 +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, March 19, 1992 +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct 14, 1994; GGI, Bryant Prop; WATERS +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct, 1994; GGI, Sangre de Cr Est, Jan 1989 +2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology Rept for Rancho San Lucas, Santa Fe Cnty, NM, Feb 2002; Geophysical logs +2025-09-30 11:12:45,111 [INFO ] GGI, January 2005 Alexsis Geohydrology report (by Meghan Hodgins). +2025-09-30 11:12:45,111 [INFO ] GGI, Reconnaissance Geohydrology Report, Leibman Property, Santa Fe County, NM. March 23, 1994 +2025-09-30 11:12:45,111 [INFO ] GGI, Reconnaissance Geohydrology Report, Neufeld Property, Santa Fe Cnty, Nov 1988 +2025-09-30 11:12:45,111 [INFO ] Glorieta Geoscience Inc. +2025-09-30 11:12:45,111 [INFO ] Glorieta Geoscience, Inc., 2006, Geohydrology and Water Availability for Phase 1, Santa Fe Canyon Ranch Subdivision, Santa Fe County, NM, March 22, 2006. +2025-09-30 11:12:45,111 [INFO ] GW-1: Geology & Ground-Water Resources of the Eastern Part of Colfax Cty, NM (1948) Griggs, Roy L., NMBGMR +2025-09-30 11:12:45,111 [INFO ] GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology +2025-09-30 11:12:45,111 [INFO ] GW-4: Geology & Groundwater Res. of NE Socorro Cty, NM (1955) Spiegel, Zane, NM Bureau of Geology +2025-09-30 11:12:45,112 [INFO ] GW5: Geology and Ground-Water Resources of Torrance County, NM (1957) R.E. Smith, NM Bureau of Geology +2025-09-30 11:12:45,112 [INFO ] GW9: Groundwater Resources & Geology of Quay County, NM (1966) Charles Berkstresser, Jr. & Walter A. Mourant, NM Bureau of Geology +2025-09-30 11:12:45,112 [INFO ] GWSI +2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; field check by Johnson +2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; field check by Johnson; D.Koning log review +2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; OFR 89-37; field check by Johnson; D.Koning log review +2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; WATERS +2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; WATERS; Cooper, 1995; field check by Johnson +2025-09-30 11:12:45,113 [INFO ] GWSI/USGS well sheet; WATERS; field check by Johnson +2025-09-30 11:12:45,113 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson +2025-09-30 11:12:45,113 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson. +2025-09-30 11:12:45,113 [INFO ] GWSI; D.Koning log review +2025-09-30 11:12:45,113 [INFO ] GWSI; D.Koning log review; D.Koning log review +2025-09-30 11:12:45,113 [INFO ] GWSI; field check by Johnson +2025-09-30 11:12:45,113 [INFO ] GWSI; field check by Johnson; D.Koning log review +2025-09-30 11:12:45,113 [INFO ] GWSI; field check Johnson +2025-09-30 11:12:45,113 [INFO ] GWSI; Mourant; well record; field check by Johnson +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log books; field check by Johnson +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; field check by Johnson; field check by Lyman and SFC Utilities +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; well log; field check by Johnson +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson; field check by Lyman and SFC Utilities +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS logbooks; field check by Johnson +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS logbooks; Frost, 1996, Santa Fe County GWLs, 1995-96 Results, 1/96; K.Summers notes from 11/16/70 aquifer test; Frost, 1999, written comm. +2025-09-30 11:12:45,114 [INFO ] GWSI; USGS well sheet; field check by Johnson +2025-09-30 11:12:45,115 [INFO ] GWSI; USGS well sheet; well log; Johnson, 2003; VeneKlasen, 2/86, Geohydro Rept Arroyo Hondo West +2025-09-30 11:12:45,115 [INFO ] GWSI; USGS well sheets; field check by Johnson +2025-09-30 11:12:45,115 [INFO ] GWSI; water right declaration; field check by Johnson +2025-09-30 11:12:45,115 [INFO ] GWSI; water right declaration; field check Johnson; Aqua Drilling well log. WQ from Longmire +2025-09-30 11:12:45,115 [INFO ] GWSI; WATERS +2025-09-30 11:12:45,115 [INFO ] GWSI; well log; field check by Johnson +2025-09-30 11:12:45,115 [INFO ] GWSI; well record; field check by Johnson +2025-09-30 11:12:45,115 [INFO ] Hall, J., 2010, Blackstone Ranch Well RG-82913 48-hr Pumping Test, Taos, NM, GGI. +2025-09-30 11:12:45,116 [INFO ] Heaton (Sinagua Consultants), Well Hydro Report Capitol Ford Body Shop, Jan 1999 +2025-09-30 11:12:45,116 [INFO ] Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:12:45,116 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601 +2025-09-30 11:12:45,116 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8 +2025-09-30 11:12:45,116 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:12:45,116 [INFO ] HR-1: Geology & Ground-Water Resources of Central & Western Dona Ana County, NM (1971) King, W.E., Hawley, J.W., Taylor, A.M. and Wilson, R.P. New Mexico Bureau of Geology +2025-09-30 11:12:45,116 [INFO ] HR5: Groundwater in the Sandia and Northern Manzano Mtns, NM (1980) Frank B. Titus, NM Bureau of Geology +2025-09-30 11:12:45,116 [INFO ] Huff, G.F. (1996) Analysis of Ground-water data for selected wells near Holloman AFB, NM, 1950-1995. USGS WRIR-96-4116. +2025-09-30 11:12:45,116 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, 1988. +2025-09-30 11:12:45,117 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, March 17, 1988. +2025-09-30 11:12:45,117 [INFO ] Hydrologic and hydrogeologic analysis for the Guadalupe Mtn. ground-water discharge plan. June 1984, Water Resources Associates, Inc. +2025-09-30 11:12:45,117 [INFO ] Hydroscience Associates, Inc., 2006, Analysis of Aquifer Test Run Using Well RG-87082, Taos County, New Mexico. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:12:45,117 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:12:45,117 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:12:45,117 [INFO ] Information as personal communication from GGI +2025-09-30 11:12:45,117 [INFO ] Inventoried previously on 4/21/2015 as part of Clovis-Portales project +2025-09-30 11:12:45,117 [INFO ] Inventoried previously on 6/2/2015 as part of Clovis-Portales project +2025-09-30 11:12:45,118 [INFO ] J. Corbin, 2007 written communication +2025-09-30 11:12:45,118 [INFO ] J. Corbin, 2007, written communication +2025-09-30 11:12:45,118 [INFO ] J.Frost, 1999; WATERS +2025-09-30 11:12:45,118 [INFO ] Jemez y Sangre (2000); NMED DWB Info Sheet; WATERS +2025-09-30 11:12:45,118 [INFO ] Jenkins, 1979, Geohydrology of the Vista Subdivn, 12/79; C.A. Coonce & Assoc., 1977, Montoya Subdivn Water Availability Study for Cipriano Martinez, 12/77 +2025-09-30 11:12:45,118 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate +2025-09-30 11:12:45,118 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate. also Jenkins, Dec 1979, Geohydrology of the Vista Subdivision +2025-09-30 11:12:45,118 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978 +2025-09-30 11:12:45,118 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978. OSE Well Record. +2025-09-30 11:12:45,119 [INFO ] Jenkins, David,- Geohydrologic Investigation of the Turquoise Trail Subdivision, SF Cnty, July 1977 +2025-09-30 11:12:45,119 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn +2025-09-30 11:12:45,119 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn; Corbin Consulting, Inc., Mar 8, 2005, Geohydrology Report Longanecker Property +2025-09-30 11:12:45,119 [INFO ] JHA, May 2004, Well Report Buckman Wells No. 10-13, City of Santa Fe +2025-09-30 11:12:45,119 [INFO ] John Shomaker & Assoc., April 1995, Well report Sangre de Cristo Water Company Buckman Well No. 3a; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09, written comm. +2025-09-30 11:12:45,119 [INFO ] John Shomaker & Assoc, 1999, Well Report: Drilling, Construction, & Testing Hickox Well No. 2, 5/99; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning review +2025-09-30 11:12:45,119 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR +2025-09-30 11:12:45,119 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR. +2025-09-30 11:12:45,120 [INFO ] JSA completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau +2025-09-30 11:12:45,120 [INFO ] JSAI Well report for Proposed Desalination Well Field, City of Alamogordo, NM. June 2006. +2025-09-30 11:12:45,120 [INFO ] Kendall Taylor +2025-09-30 11:12:45,120 [INFO ] Kendall Taylor and drill log +2025-09-30 11:12:45,120 [INFO ] Kendall Taylor; OSE well log +2025-09-30 11:12:45,120 [INFO ] L. Sherson @ USGS determined that all but one water level taken by contractors for OSE at 334819108084801 were really taken from this location 334819108084601. Level on 9/25/2008 was at *4801 NM-15416 +2025-09-30 11:12:45,120 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:12:45,120 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). Part of OSE network, so thought it would have been in their system already. +2025-09-30 11:12:45,120 [INFO ] Lewis database of city wells; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:12:45,121 [INFO ] Lewis database, 2001; Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94; Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98 +2025-09-30 11:12:45,121 [INFO ] Lithlog personal communication w/GGI. +2025-09-30 11:12:45,121 [INFO ] local individuals: Layne Preslar, Bob Hubbard +2025-09-30 11:12:45,121 [INFO ] Longmire, Patrick, July 1985, Hydrogeochemical Study Along the Santa Fe River; field check +2025-09-30 11:12:45,121 [INFO ] Longmire, Patrick, July 1985. A Hydrogeochemical Study Along the Valley of the Santa Fe River +2025-09-30 11:12:45,121 [INFO ] Lou Wilkerson +2025-09-30 11:12:45,121 [INFO ] Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018 +2025-09-30 11:12:45,121 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. +2025-09-30 11:12:45,122 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. References additional well tests by M.J. Darr. +2025-09-30 11:12:45,122 [INFO ] Mark Defibaugh +2025-09-30 11:12:45,122 [INFO ] Martinez Surveying Co., [Hydrogeologic Report for] Miller Subdivision, Jan 1984 +2025-09-30 11:12:45,122 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multi +2025-09-30 11:12:45,122 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multip +2025-09-30 11:12:45,122 [INFO ] McLean, J.S. (1970) Saline Ground-Water Resources of the Tularosa Basin, NM. Office of Saline Water, R&D Progress Rpt 561 +2025-09-30 11:12:45,122 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:12:45,122 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 (1980 water level) +2025-09-30 11:12:45,123 [INFO ] MJ Darr (July 2006) Pump Test of WL-0007. +2025-09-30 11:12:45,123 [INFO ] Mourant; GWSI; field check by Johnson; USGS well schedules +2025-09-30 11:12:45,123 [INFO ] Mourant; GWSI; field check by Johnson; well log. +2025-09-30 11:12:45,123 [INFO ] MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources +2025-09-30 11:12:45,123 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:12:45,123 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron/Socorro/Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:12:45,123 [INFO ] NA03200901BBB +2025-09-30 11:12:45,123 [INFO ] NA03200912ACC +2025-09-30 11:12:45,124 [INFO ] NA03201066BBB +2025-09-30 11:12:45,124 [INFO ] NA03300814CCC +2025-09-30 11:12:45,124 [INFO ] NA03300914CCC +2025-09-30 11:12:45,124 [INFO ] NA03300921CCC +2025-09-30 11:12:45,124 [INFO ] NA03300922ACC +2025-09-30 11:12:45,124 [INFO ] NA03300933CAB +2025-09-30 11:12:45,124 [INFO ] NA03300933CAB2 +2025-09-30 11:12:45,124 [INFO ] NA03300935DBB +2025-09-30 11:12:45,125 [INFO ] NA03300936DBB +2025-09-30 11:12:45,125 [INFO ] NA03301014DDD +2025-09-30 11:12:45,125 [INFO ] NA03301019CCD +2025-09-30 11:12:45,125 [INFO ] NA03301020CCB +2025-09-30 11:12:45,125 [INFO ] NMBG +2025-09-30 11:12:45,125 [INFO ] NMBGMR +2025-09-30 11:12:45,125 [INFO ] NMBGMR & USGS +2025-09-30 11:12:45,125 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; Camp Dresser & McKee, Jan. 2000, +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); OSE 2005 WL field sheets; WATERS +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS. OSE Well Record. +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; J. Corbin, written communication, 2007 +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project files; JSAI, 2001,App. #6 +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; JSAI (2001) App. #6 +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; Minton log and pump test; JS&A, 2001 well log and water levels +2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; Summer's project files; Minton log; Frost, 1996, Review of El Dorado area water production and GW resource, June '96; JSAI, 2001, App. #6 +2025-09-30 11:12:45,126 [INFO ] NMED Solid Waste Bureau monitoring reports. +2025-09-30 11:12:45,127 [INFO ] NMED Spring Survey and Monitor Well Survey +2025-09-30 11:12:45,127 [INFO ] NMED SW Bureau data report, URS Corp.; written communications from NMED SolidWaste Bureau +2025-09-30 11:12:45,127 [INFO ] NMED SWP Atlas online +2025-09-30 11:12:45,127 [INFO ] NMOSE POD only +2025-09-30 11:12:45,127 [INFO ] NMOSE Well log +2025-09-30 11:12:45,127 [INFO ] No well inventory form for this site. Just coordinates, photo and well log. +2025-09-30 11:12:45,127 [INFO ] NRCS Well development document (Excel spreadsheet) +2025-09-30 11:12:45,127 [INFO ] OCD AP-100 report by Conestoga-Rovers & Associates +2025-09-30 11:12:45,128 [INFO ] OCD AP-101 Report by Arcadis U.S. Inc. +2025-09-30 11:12:45,128 [INFO ] OCD AP-104 Report by Conestoga-Rovers and Associates +2025-09-30 11:12:45,128 [INFO ] OCD AP-105 Report by GHD +2025-09-30 11:12:45,128 [INFO ] OCD AP-107 Report by Arcadis U.S. Inc +2025-09-30 11:12:45,128 [INFO ] OCD AP-112 Report by Larson & Associates, Inc. +2025-09-30 11:12:45,128 [INFO ] OCD AP-114 Report by Tasman Geosciences +2025-09-30 11:12:45,128 [INFO ] OCD AP-115 Report by Conestoga-Rovers and Associates +2025-09-30 11:12:45,129 [INFO ] OCD AP-118 Report by GHD +2025-09-30 11:12:45,129 [INFO ] OCD AP-120 Report by GHD Services Inc. +2025-09-30 11:12:45,129 [INFO ] OCD AP-56 Report by GHD +2025-09-30 11:12:45,129 [INFO ] OCD AP-62 Report by R.T. Hicks Consultants, Ltd +2025-09-30 11:12:45,129 [INFO ] OCD AP-71 Report by Rice Operating Company +2025-09-30 11:12:45,129 [INFO ] OCD AP-73 Report by Enviro Clean Cardinal LLC +2025-09-30 11:12:45,129 [INFO ] OCD AP-75 Report by Rice Environmental Consulting & Safety, LLC +2025-09-30 11:12:45,129 [INFO ] OCD AP-87 Report by by Tetra Tech +2025-09-30 11:12:45,130 [INFO ] OCD AP-88 Report by Tetra Tech +2025-09-30 11:12:45,130 [INFO ] OCD AP-91 Report by Talon/LPE +2025-09-30 11:12:45,130 [INFO ] OCD AP-94 Report by Tetra Tech +2025-09-30 11:12:45,130 [INFO ] OCD AP-95 report by Tetra Tech +2025-09-30 11:12:45,130 [INFO ] OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:12:45,130 [INFO ] OFR-51: Hydrogeology of the San Agustin Plains, NM (1973) Blodgett, Daniel D. and Titus, Frank B., NMBGMR +2025-09-30 11:12:45,130 [INFO ] Onwer +2025-09-30 11:12:45,130 [INFO ] Original data and chemistry from Lynn Brandvold with NMBGMR chemistry lab. We visited site in July 2015 took GPS location and found well record. +2025-09-30 11:12:45,131 [INFO ] OSE +2025-09-30 11:12:45,131 [INFO ] OSE and Foreman. +2025-09-30 11:12:45,131 [INFO ] OSE database. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:12:45,131 [INFO ] OSE field notes +2025-09-30 11:12:45,131 [INFO ] OSE field sheet +2025-09-30 11:12:45,131 [INFO ] OSE macth doubtful, usgs depth is much different, 311 vs 375 +2025-09-30 11:12:45,131 [INFO ] OSE POD record +2025-09-30 11:12:45,131 [INFO ] OSE POD record. +2025-09-30 11:12:45,132 [INFO ] OSE Record and owner recollection +2025-09-30 11:12:45,132 [INFO ] OSE records +2025-09-30 11:12:45,132 [INFO ] OSE records and owner recollection. +2025-09-30 11:12:45,132 [INFO ] OSE records and well owner records. +2025-09-30 11:12:45,132 [INFO ] OSE records online. +2025-09-30 11:12:45,132 [INFO ] OSE Records, some info from well owner +2025-09-30 11:12:45,132 [INFO ] OSE Records, well owner provided info. +2025-09-30 11:12:45,132 [INFO ] OSE Records, well owner recollection. +2025-09-30 11:12:45,132 [INFO ] OSE Records. +2025-09-30 11:12:45,133 [INFO ] OSE Records. Gary Goss at TWSD. +2025-09-30 11:12:45,133 [INFO ] OSE records. PN031 may not be it. Well is very old. +2025-09-30 11:12:45,133 [INFO ] OSE WATERS site +2025-09-30 11:12:45,133 [INFO ] OSE website +2025-09-30 11:12:45,133 [INFO ] OSE website info, no well record. Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:12:45,133 [INFO ] OSE website, no well record. +2025-09-30 11:12:45,133 [INFO ] OSE website, no well record. Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:12:45,133 [INFO ] OSE website, well record available at OSE office. +2025-09-30 11:12:45,134 [INFO ] OSE website, well record maybe available at OSE office. +2025-09-30 11:12:45,134 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 +2025-09-30 11:12:45,134 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09 +2025-09-30 11:12:45,134 [INFO ] OSE well log. Some data from USGS. Overlapping site data. +2025-09-30 11:12:45,134 [INFO ] OSE Well record +2025-09-30 11:12:45,134 [INFO ] OSE well record and owner +2025-09-30 11:12:45,134 [INFO ] OSE well record and owner info +2025-09-30 11:12:45,134 [INFO ] OSE well record and site visit +2025-09-30 11:12:45,135 [INFO ] OSE Well Record and well owner +2025-09-30 11:12:45,135 [INFO ] OSE well record. +2025-09-30 11:12:45,135 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:12:45,135 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project file and Sandia Drilling well log +2025-09-30 11:12:45,135 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:12:45,135 [INFO ] Owner +2025-09-30 11:12:45,135 [INFO ] Owner - well dirlled in 60s. +2025-09-30 11:12:45,135 [INFO ] owner - well drilled by father, using septic auger. +2025-09-30 11:12:45,135 [INFO ] Owner - well drilled in 50's. owner has some records. +2025-09-30 11:12:45,136 [INFO ] Owner and OSE record +2025-09-30 11:12:45,136 [INFO ] Owner and OSE site. +2025-09-30 11:12:45,136 [INFO ] Owner and OSE well record. +2025-09-30 11:12:45,136 [INFO ] Owner and well record. +2025-09-30 11:12:45,136 [INFO ] Owner field check; WATERS +2025-09-30 11:12:45,136 [INFO ] Owner recollection +2025-09-30 11:12:45,136 [INFO ] Owner recollection and limited OSE records. +2025-09-30 11:12:45,136 [INFO ] Owner recollection and OSE POD record. +2025-09-30 11:12:45,137 [INFO ] Owner recollection of well depth and water level +2025-09-30 11:12:45,137 [INFO ] Owner recollection. +2025-09-30 11:12:45,137 [INFO ] Owner recollection; OSE Records +2025-09-30 11:12:45,137 [INFO ] Owner. +2025-09-30 11:12:45,137 [INFO ] Owner. OSE well records +2025-09-30 11:12:45,137 [INFO ] P. Drakos, et al., 2004, Chemical & Isotopic Constraints on Source-Waters and Connectivity of Basin-Fill Aquifers in the Southern San Luis Basin, NM. NMGS Guidebook 55, pg 405. +2025-09-30 11:12:45,137 [INFO ] PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM +2025-09-30 11:12:45,137 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID # S264) +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S037) +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S040) +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S101) +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S146) +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S164) +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S220) +2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S265) +2025-09-30 11:12:45,139 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. +2025-09-30 11:12:45,139 [INFO ] Plummer, LN, Bexfield, LM, et al., 2004 Geochem. Characterization of Grd-water Flow in the Santa Fe Grp Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. +2025-09-30 11:12:45,139 [INFO ] Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis +2025-09-30 11:12:45,139 [INFO ] Pretty certain C011 is Burns EPA sample. +2025-09-30 11:12:45,139 [INFO ] Prindle-Hinds well completion log to NMED SW Bureau +2025-09-30 11:12:45,139 [INFO ] Pump test performed as noted in Meyers report. USGS WRI 94-4125 +2025-09-30 11:12:45,139 [INFO ] Ranch foreman. +2025-09-30 11:12:45,139 [INFO ] Rankin, Dale, 2005, Personal Communication USGS Well Drilling Reports +2025-09-30 11:12:45,139 [INFO ] Reardon et al. (2021) Addendum to Water Res. Assessment NM Permian Basin SAND2021-1869 +2025-09-30 11:12:45,140 [INFO ] Reardon, et al. (2021) Addendum to Water Res. Assessment in NM Permian Basin. SAND2021-1869. +2025-09-30 11:12:45,140 [INFO ] RGDSSP12 +2025-09-30 11:12:45,140 [INFO ] Romero +2025-09-30 11:12:45,140 [INFO ] San Pedro Creek Estates HOA +2025-09-30 11:12:45,140 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files +2025-09-30 11:12:45,140 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files; DKoning cutting review +2025-09-30 11:12:45,140 [INFO ] Sandia National Labs/ BLM Wells +2025-09-30 11:12:45,141 [INFO ] Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:12:45,141 [INFO ] Sangre de Cristo/OSE, WATERS, Borchert report, Watson and Rappuhn/Shomaker & Assoc., 4/99, WellReport: Drilling, Construction and Testing, City of Santa Fe Northwest Area Test Well; D.Koning review +2025-09-30 11:12:45,141 [INFO ] Santa Fe County records; well log; field check +2025-09-30 11:12:45,141 [INFO ] Santa Fe County Utilities field notes; +2025-09-30 11:12:45,141 [INFO ] SECOR report to NMED UST Bureau +2025-09-30 11:12:45,141 [INFO ] Shoemaker & Fleming, MWB Survey, 1990; Mourant, 1980 +2025-09-30 11:12:45,141 [INFO ] Shomaker & Associates, 2004, Well Report Buckman Wells No. 10-13 City of Santa Fe, New Mexico, May 2004; C. Borchert, written communication, 3/23/09 +2025-09-30 11:12:45,141 [INFO ] Shomaker & Associates, April 2003, Well Report: Drilling, Construction, and Testing of SF Buckman 9; C. Borchert, written communication, 3/23/09 +2025-09-30 11:12:45,142 [INFO ] Site check; well record +2025-09-30 11:12:45,142 [INFO ] Site visit by Johnson during drilling; drillers report; J. Corbin, written communication, 2007 +2025-09-30 11:12:45,142 [INFO ] Slinglerland & Borton, Geohydro of Avanti Business Park, 8/85 (App F to GGI, Santa Fe Metro, 12/01); lithologic log by GGI, review by D.Koning +2025-09-30 11:12:45,142 [INFO ] SNL report for manual water level and water quality +2025-09-30 11:12:45,142 [INFO ] Some chemistry from EPA via NM Health Dept. +2025-09-30 11:12:45,142 [INFO ] Some data from USGS. Overlapping site data. +2025-09-30 11:12:45,142 [INFO ] Some data from USGS. Overlapping site data. Aquifer type from USGS. +2025-09-30 11:12:45,142 [INFO ] Some data from USGS. Overlapping site data. Formation pick from USGS. +2025-09-30 11:12:45,143 [INFO ] Some limited WQ measurements at well and nearby stream. Filed. Not entered. +2025-09-30 11:12:45,143 [INFO ] Some water levels from USGS +2025-09-30 11:12:45,143 [INFO ] Some WL's from Lee Foster Well Services +2025-09-30 11:12:45,143 [INFO ] Some WLs from USGS & Dames and Moore (4/11/1986). Some WQ from Vail Engineering (Sept. 1993). +2025-09-30 11:12:45,143 [INFO ] Souder-Miller & Assoc., 1995, Unpublished Consultant's Report, Fig 2, well completion diagram +2025-09-30 11:12:45,143 [INFO ] Source data for some chemistry for this location is from the US EPA. +2025-09-30 11:12:45,143 [INFO ] Source data for this location is from the US EPA & NMED water quality. +2025-09-30 11:12:45,143 [INFO ] Source data for this location is from the US EPA. +2025-09-30 11:12:45,144 [INFO ] T.Decker, written comm., 2000 (letter to B.McLean "Testing - EUI Well #15", 2/25/2000); +2025-09-30 11:12:45,144 [INFO ] Taos Soil & Water Concervation District +2025-09-30 11:12:45,144 [INFO ] Taos Soil & Water Conservation District +2025-09-30 11:12:45,144 [INFO ] Taos Soil & Water Conservation District water sample study. +2025-09-30 11:12:45,144 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM +2025-09-30 11:12:45,144 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM; field check by Johnson +2025-09-30 11:12:45,144 [INFO ] Theis, C.V., Taylor, Jr., G.C., and Murray, C.R. (1941) Thermal Waters of the Hot Springs Artesian Basin Sierra County, New Mexico. U.S. Geological Survey in cooperation with State Engineer of New Mex +2025-09-30 11:12:45,145 [INFO ] TSWCD +2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Apdx. 2 & 3. (Data from Drakos, GGI, 1996) Report filed w/TV-229. Al +2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Appendices 1, 3, 4 +2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, pg. 7, Table 1. +2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivison, Taos County, New Mexico, Turner Environmental Consultants, Pg. 18, Table 1, and Appendices 2,3. (Data from Jenkins in 1982). Ful +2025-09-30 11:12:45,145 [INFO ] undeclared well. +2025-09-30 11:12:45,145 [INFO ] URS Corp. for Chevron +2025-09-30 11:12:45,145 [INFO ] USFS - Espanola Ranger District - Range Improvement records. +2025-09-30 11:12:45,146 [INFO ] USGS & Garrabrant, L.A. (1993) Water Resources of Taos County, NM USGS WRIR 93-4107 (chemistry sample). This well matched to Garrabrant well via notes from Tony Benson's Sunshine notebooks. +2025-09-30 11:12:45,146 [INFO ] USGS & Myers, Everheart, Wilson (1994) Geohydrol. Of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, WRI 94-4125 +2025-09-30 11:12:45,146 [INFO ] USGS & NMED SWP Atlas online +2025-09-30 11:12:45,146 [INFO ] USGS & Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:12:45,146 [INFO ] USGS & Texas Water Development Board +2025-09-30 11:12:45,146 [INFO ] USGS & Winograd, I.J. (1959) Ground-water Conditions & Geology of Sunshine Valley & Western Taos Cty, NM, NMSEO, Tech. Report #12. & Garrabrant, L.A. (1993) USGS WRIR 93-4107 +2025-09-30 11:12:45,146 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:12:45,147 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:12:45,147 [INFO ] USGS and Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:12:45,147 [INFO ] USGS Chem Analysis Sheet from R.L. Borton Files. 1970; WATERS; C.Borchert, 3/23/09, written communication +2025-09-30 11:12:45,147 [INFO ] USGS Drillers reports +2025-09-30 11:12:45,147 [INFO ] USGS drillers reports; D.Koning cuttings review +2025-09-30 11:12:45,147 [INFO ] USGS drilling reports; D.Koning cutting review +2025-09-30 11:12:45,147 [INFO ] USGS Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:12:45,147 [INFO ] USGS, chemistry from Lynn Brandvold with NMBGMR chemistry lab, OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:12:45,148 [INFO ] USGS. POD log not available. +2025-09-30 11:12:45,148 [INFO ] USGS. Well screens/WQ from Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:12:45,148 [INFO ] USGS/OSE water-level data sheets; WATERS +2025-09-30 11:12:45,148 [INFO ] USGS; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:12:45,148 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, New Mexico, NM OSE Technical Report 8. +2025-09-30 11:12:45,148 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, NM, OSE Technical Report 8. +2025-09-30 11:12:45,149 [INFO ] USGS; Screens from NPS water level and well documentation +2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc, 1984, Remuda Ridge Warehouse, Santa Fe County, NM, October 1984 +2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc, Inc., 1982, Geohydrology Rept, Pecos Trail Subdn, Santa Fe Cnty, Aug 1982 +2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc., 1984, Geohydrology Report, Hondo Trails Subdn, Santa Fe Cnty, Dec 1984 +2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc., Inc., 1986, Geohydrology Report, Talbot Subdivision, May 1986 +2025-09-30 11:12:45,149 [INFO ] VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75 +2025-09-30 11:12:45,150 [INFO ] Veneklasen, 1977, Geohydro Lanphere -- Rio Villa Subdivision, AguaFria Rd, 5/77 +2025-09-30 11:12:45,150 [INFO ] Veneklasen, 1977, Hydrogeologic Report La Tierra Subdivn, Phase III, May 1977, Consulting Prof Inc +2025-09-30 11:12:45,150 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977 +2025-09-30 11:12:45,150 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977; field check Cruz/Frost +2025-09-30 11:12:45,150 [INFO ] Veneklasen, 1980, Geohydro of Santiago Subdivision, 10/80 +2025-09-30 11:12:45,150 [INFO ] VeneKlasen, 6/75, Hydrogeo Rept La Tierra; field check by Johnson +2025-09-30 11:12:45,150 [INFO ] VeneKlasen, Hydrogeologic Report for La Tierra Subdivision 6/75; well log; field check Johnson +2025-09-30 11:12:45,151 [INFO ] Water chemistry from TSWCD. Fairly sure this is COS-11, eventhough there is a descrepency between well log depth and well depth on chemistry sheet. +2025-09-30 11:12:45,151 [INFO ] Water Quality: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. +2025-09-30 11:12:45,151 [INFO ] WATERS; field check +2025-09-30 11:12:45,151 [INFO ] WATERS; Lewis database, 2001; VeneKlasen, 1975, Hydrogeologic Report LaTierra, 6/75; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review; C.Borchert, 3/23/09, written comm +2025-09-30 11:12:45,151 [INFO ] WATERS; WK Summers project files; JSAI, 2001, App. #6; J. Frost project files (1999) +2025-09-30 11:12:45,151 [INFO ] Watson/Shomaker & Assoc., 5/97, Well Report, Drilling, Construction, and Testing, City of Santa Fe, Torreon Well No. 2, for PNM Water Services Santa Fe, NM; CDM, Jan 2000, Water Supply Analysis +2025-09-30 11:12:45,151 [INFO ] Well owner. +2025-09-30 11:12:45,152 [INFO ] Well also in PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM +2025-09-30 11:12:45,152 [INFO ] well depth from Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:12:45,152 [INFO ] Well in Meyers report: Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:12:45,152 [INFO ] Well info from inside well cap, presumably from driller? +2025-09-30 11:12:45,152 [INFO ] Well Log +2025-09-30 11:12:45,152 [INFO ] Well log and completion diagrams +2025-09-30 11:12:45,152 [INFO ] Well log and field check by Johnson; not previously in GWSI +2025-09-30 11:12:45,152 [INFO ] Well log and well completion diagrams +2025-09-30 11:12:45,152 [INFO ] Well log and well completion diagrams. WQ data from P. Longmire Santa Fe River 1985 Report +2025-09-30 11:12:45,153 [INFO ] Well log/record by GGI; field check by Johnson +2025-09-30 11:12:45,153 [INFO ] Well log; field check +2025-09-30 11:12:45,153 [INFO ] Well log; field check by Johnson +2025-09-30 11:12:45,153 [INFO ] well log; field check by Johnson; owner +2025-09-30 11:12:45,153 [INFO ] well log; Johnson field check +2025-09-30 11:12:45,153 [INFO ] Well Log; JSAI, 2001, App. #6 +2025-09-30 11:12:45,153 [INFO ] Well owner +2025-09-30 11:12:45,153 [INFO ] Well owner and old well record. +2025-09-30 11:12:45,154 [INFO ] Well owner and OSE site info. +2025-09-30 11:12:45,154 [INFO ] Well owner, and well record. +2025-09-30 11:12:45,154 [INFO ] Well owner. +2025-09-30 11:12:45,154 [INFO ] Well record. +2025-09-30 11:12:45,154 [INFO ] Well record; field check +2025-09-30 11:12:45,154 [INFO ] Well record; field check by Cruz/Frost +2025-09-30 11:12:45,154 [INFO ] well record; field check by Johnson +2025-09-30 11:12:45,154 [INFO ] Well record; field check by Johnson; owner +2025-09-30 11:12:45,154 [INFO ] Well record; field check by Lyman +2025-09-30 11:12:45,155 [INFO ] Well record; field check by Lyman; SWL measured by GGI/reported by Cooper, 2000, Rept for Roybal +2025-09-30 11:12:45,155 [INFO ] Well record; field check with SFC Utilities (Leonard Quintana 490-0065) +2025-09-30 11:12:45,155 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:12:45,155 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:12:45,155 [INFO ] WK Summers project files; WATERS; Water Industries, Inc., 1982, Testing of Eldorado Well #1, Jan. 1982; water levels from W-1 and EUI#1; JSAI, 2001, App. #6 +2025-09-30 11:12:45,155 [INFO ] WL from USGS; chemistry and other data from Lynn Brandvold with NMBGMR chemistry lab & OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:12:45,155 [INFO ] WQ also from MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources. +2025-09-30 11:12:45,155 [INFO ] WQ from Taos Soil & Water Conservation District +2025-09-30 11:12:45,156 [INFO ] Z. Spiegel, 1972, Interpretation and application of an aquifer performance test on well RG-20228 at Pojoaque Terrace trailer court site HC McDonald Property, Santa Fe County, NM, 9/14/72 +2025-09-30 11:13:01,665 [INFO ] Reached limit of 10 rows. Stopping migration. +2025-09-30 11:13:01,677 [INFO ] transfer_wells took 27.647673 seconds +2025-09-30 11:13:02,705 [INFO ] transfer_wellscreens took 1.027705 seconds +2025-09-30 11:13:02,705 [INFO ] +2025-09-30 11:13:02,706 [INFO ] ********** TRANSFERRING CONTACTS ********** +2025-09-30 11:13:06,296 [INFO ] Processing PointID: 221 EB-663 +2025-09-30 11:13:06,310 [WARNING ] first 'Thompson, Warren' Skipping physical address. Validation error: 1 validation error for CreateAddress +postal_code + Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] + For further information visit https://errors.pydantic.dev/2.11/v/string_type +2025-09-30 11:13:06,319 [CRITICAL] Skipping first contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} +[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] +[parameters: ('Warren Thompson', 'Los Atrevidos, Inc.', 'Owner', 'Primary', None, None, None, None, None, None, None, 'private')] +(Background on this error at: https://sqlalche.me/e/20/f405) +2025-09-30 11:13:06,329 [CRITICAL] Skipping second contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} +[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] +[parameters: ("Warren's son", 'Los Atrevidos, Inc.', 'Owner', 'Secondary', None, None, None, None, None, None, None, 'private')] +(Background on this error at: https://sqlalche.me/e/20/f405) +2025-09-30 11:13:06,332 [INFO ] Processing PointID: 441 EB-057 +2025-09-30 11:13:06,342 [INFO ] added first contact for PointID EB-057 +2025-09-30 11:13:06,343 [CRITICAL] Skipping second contact for PointID EB-057 due to validation error: 1 validation error for CreateContact + Value error, Either name or organization must be provided. [type=value_error, input_value={'thing_id': 8, 'release_...ails': [], 'phones': []}, input_type=dict] + For further information visit https://errors.pydantic.dev/2.11/v/value_error +2025-09-30 11:13:06,343 [INFO ] transfer_contacts took 3.63708 seconds +2025-09-30 11:13:06,343 [INFO ] +2025-09-30 11:13:06,343 [INFO ] ********** TRANSFERRING LINK IDS ********** +2025-09-30 11:13:08,328 [INFO ] Processing PointID: DE-0219, Thing ID: 1, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:13:08,334 [INFO ] Processing PointID: EB-057, Thing ID: 8, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:13:08,340 [INFO ] Processing PointID: BW-0131, Thing ID: 5, AlternateSiteID=11S9E22.441, AlternateSiteID2=None +2025-09-30 11:13:08,341 [INFO ] adding link id: BW-0131 +2025-09-30 11:13:08,360 [INFO ] Processing PointID: EB-663, Thing ID: 9, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:13:08,366 [INFO ] Processing PointID: TO-0225, Thing ID: 3, AlternateSiteID=6N8E11.42, AlternateSiteID2=None +2025-09-30 11:13:08,366 [INFO ] adding link id: TO-0225 +2025-09-30 11:13:08,379 [INFO ] Processing PointID: UC-0100, Thing ID: 6, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:13:08,384 [INFO ] Processing PointID: QY-0274, Thing ID: 4, AlternateSiteID=11.31.19.333, AlternateSiteID2=None +2025-09-30 11:13:08,385 [INFO ] adding link id: QY-0274 +2025-09-30 11:13:08,398 [INFO ] Processing PointID: PC-037, Thing ID: 10, AlternateSiteID=PW-060, AlternateSiteID2=None +2025-09-30 11:13:08,399 [INFO ] adding link id: PC-037 +2025-09-30 11:13:08,408 [INFO ] Processing PointID: NM-26878, Thing ID: 2, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:13:08,414 [INFO ] Processing PointID: QY-0181, Thing ID: 7, AlternateSiteID=11.30.14.143b, AlternateSiteID2=None +2025-09-30 11:13:08,414 [INFO ] adding link id: QY-0181 +2025-09-30 11:13:08,422 [INFO ] transfer_link_ids took 2.07784 seconds +2025-09-30 11:13:09,998 [WARNING ] Both OSEWellID and OSEWelltagID are null for DE-0219 +2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for NM-26878 +2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for TO-0225 +2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0274 +2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for BW-0131 +2025-09-30 11:13:10,002 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for UC-0100 +2025-09-30 11:13:10,003 [WARNING ] OSEWellTagID is null for UC-0100 +2025-09-30 11:13:10,004 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0181 +2025-09-30 11:13:10,009 [WARNING ] OSEWellTagID is null for EB-057 +2025-09-30 11:13:10,028 [WARNING ] OSEWellTagID is null for EB-663 +2025-09-30 11:13:10,037 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for PC-037 +2025-09-30 11:13:10,037 [WARNING ] OSEWellTagID is null for PC-037 +2025-09-30 11:13:10,039 [INFO ] transfer_link_ids_welldata took 1.617317 seconds +2025-09-30 11:13:10,039 [INFO ] +2025-09-30 11:13:10,040 [INFO ] ********** TRANSFERRING GROUPS ********** +2025-09-30 11:13:10,997 [INFO ] Adding 2 things to group La Cienega, prefix EB +2025-09-30 11:13:11,030 [INFO ] Adding 2 things to group Espanola Basin, prefix EB +2025-09-30 11:13:11,064 [INFO ] Adding 1 things to group Union County, prefix UC +2025-09-30 11:13:11,170 [INFO ] Adding 1 things to group New Mexico, prefix NM +2025-09-30 11:13:11,255 [INFO ] Adding 2 things to group Quay County, prefix QY +2025-09-30 11:13:11,278 [INFO ] Adding 1 things to group Brackish Water, prefix BW +2025-09-30 11:13:11,327 [INFO ] Adding 1 things to group Torrance County, prefix TO +2025-09-30 11:13:11,386 [INFO ] Adding 1 things to group Placitas, prefix PC +2025-09-30 11:13:11,482 [INFO ] Adding 1 things to group Delaware Basin, prefix DE +2025-09-30 11:13:11,497 [INFO ] Adding 1 things to group ABCWUA, prefix NM +2025-09-30 11:13:11,536 [INFO ] transfer_groups took 1.49604 seconds +2025-09-30 11:13:11,536 [INFO ] +2025-09-30 11:13:11,536 [INFO ] ********** TRANSFERRING WATER LEVELS ********** +2025-09-30 11:13:15,354 [INFO ] Valid Measuring Agencies: +2025-09-30 11:13:15,354 [INFO ] NMBGMR +2025-09-30 11:13:15,354 [INFO ] NMT +2025-09-30 11:13:15,355 [INFO ] NPS +2025-09-30 11:13:15,355 [INFO ] SNL +2025-09-30 11:13:15,355 [INFO ] TSWCD +2025-09-30 11:13:15,355 [INFO ] USFS +2025-09-30 11:13:15,359 [INFO ] Processing PointID: EB-663 +2025-09-30 11:13:15,368 [INFO ] Created field event: . +2025-09-30 11:13:15,373 [INFO ] Created field activity: . +2025-09-30 11:13:15,377 [INFO ] Created contact: +2025-09-30 11:13:15,383 [INFO ] Created field event contact: +2025-09-30 11:13:15,384 [INFO ] Created sample: +2025-09-30 11:13:15,384 [INFO ] Created observation: +2025-09-30 11:13:15,417 [INFO ] Created field event: . +2025-09-30 11:13:15,420 [INFO ] Created field activity: . +2025-09-30 11:13:15,424 [INFO ] Created field event contact: +2025-09-30 11:13:15,425 [INFO ] Created sample: +2025-09-30 11:13:15,425 [INFO ] Created observation: +2025-09-30 11:13:15,441 [INFO ] transfer_water_levels took 3.90455 seconds +2025-09-30 11:13:15,441 [INFO ] transfer_all took 48.656553 seconds +2025-09-30 11:13:16,477 [INFO ] Uploaded log to gs://ocotillo/transfer_logs/transfer_2025-09-30T11h12m26s.log +2025-09-30 11:13:16,477 [INFO ] +2025-09-30 11:13:16,477 [INFO ] ********** END-------------------------------------- ********** diff --git a/transfer_2025-09-30T11h20m36s.log b/transfer_2025-09-30T11h20m36s.log new file mode 100644 index 000000000..9207bd06f --- /dev/null +++ b/transfer_2025-09-30T11h20m36s.log @@ -0,0 +1,750 @@ +2025-09-30 11:20:36,132 [INFO ] +2025-09-30 11:20:36,132 [INFO ] ********** START-------------------------------------- ********** +2025-09-30 11:20:36,132 [INFO ] ********** STARTING TRANSFER ********** +2025-09-30 11:20:36,133 [INFO ] Erasing existing data and initializing lexicon and sensors +2025-09-30 11:20:36,133 [INFO ] Erasing existing data +2025-09-30 11:20:36,488 [INFO ] Recreating tables +2025-09-30 11:20:36,860 [INFO ] erase took 0.726654 seconds +2025-09-30 11:20:36,860 [INFO ] Initializing lexicon +2025-09-30 11:20:42,637 [INFO ] lexicon took 5.777187 seconds +2025-09-30 11:20:42,637 [INFO ] Initializing sensors +2025-09-30 11:20:42,646 [INFO ] sensor took 0.008465 seconds +2025-09-30 11:20:42,646 [INFO ] +2025-09-30 11:20:42,646 [INFO ] ********** TRANSFERRING WELLS ********** +2025-09-30 11:20:46,708 [INFO ] Valid WellData Datasources: +2025-09-30 11:20:46,708 [INFO ] (Author?), 1998, Geohydrology of River Bend Subdivision Taos County, New Mexico, Glorieta Geoscience, Inc. Appendix A. (Full report filed w/TV-121). +2025-09-30 11:20:46,708 [INFO ] 1) Author?, 1995, Town of Taos San Juan/Chama Diversion Proj., Phase 2, Vol. 1, Production Well & Observation Well Installation, Testing, and Determination of Aquifer Coefficients, GGI. 2) Water Level +2025-09-30 11:20:46,709 [INFO ] 1) Bernalillo County, Sara Chudnoff; 2) San Pedro Creek Estates HOA +2025-09-30 11:20:46,709 [INFO ] 1) BLM - Part of the Capitan Aquifer Observation-Well Network +2025-09-30 11:20:46,709 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 3) Sandia Report SAND2018-12018 NM Permian Basin +2025-09-30 11:20:46,709 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:20:46,709 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources +2025-09-30 11:20:46,709 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources 2) Pre-Design Groundwater Investigation at the Tailing Facil. ARCADIS +2025-09-30 11:20:46,710 [INFO ] 1) Drakos, P., Riesterer, J., Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, GGI (Filed w/TV-171). 2) Water Level Monitoring Prgm. +2025-09-30 11:20:46,710 [INFO ] 1) GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology; 2) USGS +2025-09-30 11:20:46,710 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) 3) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:20:46,710 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:20:46,711 [INFO ] 1) Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:20:46,711 [INFO ] 1) Sandia National Labs/ BLM Wells, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:20:46,711 [INFO ] 1) Turner, B., 1996, Water Availability for the El Mirador Subdvn, Taos Cty, NM, Turner Environ. Consult., Appd 2&3 (filed w/TV-229). 2) Vista del Valle report (filed w/TV-153). 3) Drakos, P. 2005, Ge +2025-09-30 11:20:46,711 [INFO ] 1) USGS - WL; 2) Brandvold - WQ +2025-09-30 11:20:46,711 [INFO ] 1) USGS - WLs 2) Brandvold -WQ +2025-09-30 11:20:46,711 [INFO ] 1) USGS - WLs 2) Brandvold -WQ, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia National Labs SAND2018-12018 NM Permian Basin +2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) David Chace of Hydro Resolutions +2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) San Pedro Creek Estates HOA +2025-09-30 11:20:46,713 [INFO ] 1) USGS 2) Sandia National Labs/ BLM Well, 3) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:20:46,713 [INFO ] 1) USGS 2) Sandia National Labs/BLM Well +2025-09-30 11:20:46,713 [INFO ] 1) USGS and 2) Data from Lynn Brandvold with NMBGMR chemistry lab, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:20:46,713 [INFO ] 1) USGS, 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia Report SAND2018-12018 NM Permian Basin +2025-09-30 11:20:46,713 [INFO ] 1) USGS, 2) Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR +2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia National Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Lab Report SAND2018-12018 Water Resource Assessment in the NM Permian Basin. +2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) GW3: Geol. & Groundwater Res. of Eddy Cty. (1952) Hendrickson & Jones, NMBGMR, 4) SNL SAND2021-1869 +2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:20:46,715 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:20:46,715 [INFO ] 1) Well depth and screen info. from spreadsheet from mayor of Questa. 2) Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis. +2025-09-30 11:20:46,715 [INFO ] AGW Consultants, 12/85, Geohydro of R.San Marcos Property; Balleau GWA, 1999; field check +2025-09-30 11:20:46,715 [INFO ] AGW Consultants, 12/85, Geohydrology of Rancho San Marcos +2025-09-30 11:20:46,715 [INFO ] AGW Consultants, May 1984, Hydrogeology of the Santa Fe Downs Resort Area Near Santa Fe, Santa Fe County, NM +2025-09-30 11:20:46,715 [INFO ] AGWC, Inc., 1983, Hydrogeology of the Great Cloud Zen Center, Oct 1983 +2025-09-30 11:20:46,715 [INFO ] Also see: Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. (Filed w/TV-103). +2025-09-30 11:20:46,716 [INFO ] American Ground Water Consultants, 1983, Hydrogeology of the Villa Marika Property, October 1983. +2025-09-30 11:20:46,716 [INFO ] AMP visited this well on 5/25/2022 but we didn't do a well inventory. +2025-09-30 11:20:46,716 [INFO ] ARCADIS Project B0046795.0019, Early Design Actions-Pre-Design Tailing Facility Groundwater Invest. Results from Monitoring Wells MW-43, MW-44 and MW-45 (May 1, 2015). +2025-09-30 11:20:46,716 [INFO ] ARCADIS well/lithologic log +2025-09-30 11:20:46,716 [INFO ] Author (?), 1998, Geohydrology of River Bend Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. Also in NMGS Gdbk 55 pg 396. +2025-09-30 11:20:46,716 [INFO ] Balleau Groundwater, 2001, CDEX1 Completion Report +2025-09-30 11:20:46,716 [INFO ] Balleau Groundwater, 2002, CDPROD1 Completion Report, 2/02 +2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., Oct 2007, Injection Demonstration Well -- Well Completion Report +2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well A -- Well Completion Report +2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well B -- Well Completion Report +2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., written communication, 11/27/2007 +2025-09-30 11:20:46,717 [INFO ] Balleau GW, 2002, CDPROD Completion Report; well log +2025-09-30 11:20:46,717 [INFO ] Balleau GWA, 1999; Balleau GWA +2025-09-30 11:20:46,718 [INFO ] Balleau GWA, 1999; field check +2025-09-30 11:20:46,718 [INFO ] Balleau GWA, 1999; field check; Jenkins, 1977, Geohydro Investigation of Turquoise Trail Subdivision +2025-09-30 11:20:46,718 [INFO ] Bjorklund, L.J. (1957) Reconnaissance of Groundwater Conditions in the Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:20:46,718 [INFO ] Black & Veatch Consulting Engineers, 1978, Construction and Testing Report Buckman Well No. 2; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 +2025-09-30 11:20:46,718 [INFO ] Black & Veatch Consulting Engrs, 1978, Construction and Testing Rept Buckman Well No. 1; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:20:46,718 [INFO ] Bob Hubbard +2025-09-30 11:20:46,718 [INFO ] Bureau scientists performed a pump test on this well. +2025-09-30 11:20:46,718 [INFO ] C. Borchert, written comm.; WATERS +2025-09-30 11:20:46,719 [INFO ] Carrol Wood, well owner. +2025-09-30 11:20:46,719 [INFO ] Cathie. +2025-09-30 11:20:46,719 [INFO ] CB00107524CCA +2025-09-30 11:20:46,719 [INFO ] CDM completion log to NMED SW Bureau +2025-09-30 11:20:46,719 [INFO ] CDM well completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau +2025-09-30 11:20:46,719 [INFO ] CH2M Hill report to NMED UST Bureau +2025-09-30 11:20:46,719 [INFO ] CH2M Hill water level measurements at WWTP (entered into db). +2025-09-30 11:20:46,720 [INFO ] Charles Heaton, Sinagua Consultants, 1999, Well Hydrology Report Elmer Garcia Property, Aug 1999; County Records; well log; field check +2025-09-30 11:20:46,720 [INFO ] Charles Walker +2025-09-30 11:20:46,720 [INFO ] Chemistry data from Lynn Brandvold with NMBGMR chemistry lab. NMBGMR visited the site after chem. data input. +2025-09-30 11:20:46,720 [INFO ] Chemistry from Matt Sophy +2025-09-30 11:20:46,720 [INFO ] Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:20:46,720 [INFO ] Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR +2025-09-30 11:20:46,720 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; CDM, Jan 2001 +2025-09-30 11:20:46,720 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:20:46,721 [INFO ] City of Santa Fe; OSE records; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:20:46,721 [INFO ] Claudia Borchert, 2002, MS Thesis +2025-09-30 11:20:46,721 [INFO ] Compiled by Susan VonGonten, NMED UST Bureau +2025-09-30 11:20:46,721 [INFO ] Consulting Professionals, Inc, Hydrogeologic Rept La Tierra Subdn, Phase 4, Santa Fe Cnty, Dec1978 +2025-09-30 11:20:46,721 [INFO ] Consulting Professionals, Inc., VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75; well log +2025-09-30 11:20:46,721 [INFO ] Cooper, 1991, Geohydro Rept for Country Boarding Kennel, 5/1991 +2025-09-30 11:20:46,721 [INFO ] Cooper, 1995, Garcia Ranch report; Wilson, 1978, SFC water plan Table 1-28; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis. +2025-09-30 11:20:46,722 [INFO ] Cooper, 1995, rept to Garcia Ranch; Kuckleman, 2003 +2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., 1995, Geohydrology Report for Cottonwood Ranch Subdn, Santa Fe Cty, NM, April 1995 +2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., 1998, Geohydrology for WK Jones, Santa Fe Cnty, Oct 1998 +2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrologic Report for Rancho De Los Cuervos, Santa Fe Cnty, Sept1986; Berman Tract +2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrology Report for Frank M Gallegos & Andrew M Leyba, Santa Fe Cnty, Oct, 1999 +2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrology Report for Friendly Construction, Inc., Santa Fe Cnty, July 1994 +2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrology Report for Tano Vista Grande, Santa Fe Cnty, NM, Nov 1996 +2025-09-30 11:20:46,723 [INFO ] Cooper, D. R., Geohydrology Rept for Marvin Pollock & Bettina Lancaster, Santa Fe Cnty, May 1994 +2025-09-30 11:20:46,723 [INFO ] Cooper, D.R., Geohydrology Rept for El Prado Subdn, Santa Fe Cnty, Sept 1994 +2025-09-30 11:20:46,723 [INFO ] Cooper, D.R., Santa Fe Design Assoc, Geohydrology Rept for Rancho Oso Loco, Santa Fe Cnty, 1985 +2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology for Rancho De Los Ninos, Santa Fe Cnty, NM, April 1999; Rick Borrego +2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology Report for Bob Shipp, Santa Fe County, NM, June 1995 +2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology Report for Heartstone Development LLC, Dec 2001 +2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology Report for James B. Alley Jr., Santa Fe Cnty, NM, March 1995 +2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., Geohydrology Report for Lawrence Tuchman, Santa Fe Cnty, Oct 1994; Frost & Assoc., Santa Fe County WQ Monitoring, June 1996 +2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., Geohydrology Report For Los Suenos, Santa Fe County, NM, April 1994 +2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., Geohydrology Rept for Jeffrey Jacobs & Thad Bowman, Santa Fe Cnty, Jan 1996 +2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., July 1995, Analysis of water levels in wells on Garcia Ranch, unpub consult rept +2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., July 1995, Unpub report to Garcia Ranch; well log; WATERS; USGS field notes +2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis, 1990, Geohydrology Report for San Juan Complex Partnership Ltd., Sept 1990; Field check by Johnson; well log; SFO files +2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis, 1993, Geohydrology Rept for Neighbors, Inc., Santa Fe Cnty, Dec 1993; well log Joe Briscoe +2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis, 2000, Geohydro Rept for Roybal Subdivision, Santa Fe Cnty, NM, Oct 2000; field check +2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis, Geohydrol Rept for Hacienda Del Cerezo, Santa Fe Cnty, NM, Jan 1994; well logs +2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis, Geohydrology Rept for B. Howard & J.Morris, Santa Fe Cnty, NM, Dec 1994 +2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis,1991, Geohydrology Rept for Sheila Cooper; field check by Johnson +2025-09-30 11:20:46,725 [INFO ] Cooper, Geohydro Report for Land Ventures, LLC, 6/2001; field check by Johnson; well log +2025-09-30 11:20:46,725 [INFO ] Cooper, Geohydrology Rept for Welsh Family Ltd Partnership, Santa Fe Cnty, March 1995 +2025-09-30 11:20:46,726 [INFO ] Corbin Consulting, Inc., 2005, Geohydrology Report (RG-27728-S) Longanecker Property. March 8, 2005 +2025-09-30 11:20:46,726 [INFO ] Corbin Consulting, Inc., 2005, Geo-Hydrology Report McMillan Subdivision, June 6, 2005 +2025-09-30 11:20:46,726 [INFO ] Corbin, J., 2004, Constant Property Geohydrology Report, Corbin Consulting Inc. June 3, 2004. Field checked. +2025-09-30 11:20:46,726 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005 (EB-618) +2025-09-30 11:20:46,727 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005; (EB-618) +2025-09-30 11:20:46,727 [INFO ] Corbin, James, 2005. +2025-09-30 11:20:46,727 [INFO ] County records; WATERS; drilling log +2025-09-30 11:20:46,727 [INFO ] County records; well log +2025-09-30 11:20:46,727 [INFO ] CT890 also at same site, cinfusing records not sure which well is correct, this one has a log +2025-09-30 11:20:46,727 [INFO ] Cuttings from NMBG. Bill White has cuttings. Geophysics: gamma ray, neutron, 3-arm-caliper, resistivitity, single pt resistance, SP, temperature profile +2025-09-30 11:20:46,728 [INFO ] Dames & Moore, Inc., 1995, Geohydroloy Report Komis Estates for Southwest Surveying Co., Inc., Dec. 1995; J. Corbin personal communication, 2005 +2025-09-30 11:20:46,728 [INFO ] Daniel B. Stephens & Associates report on Campbell Ranch subdivision wells +2025-09-30 11:20:46,728 [INFO ] Daniel B. Stevens & Associates consultant report (AMP\data\datasets\Campbell Ranch Bernalillo County) +2025-09-30 11:20:46,728 [INFO ] Darr, M.J., 2006, Geohydrologic Investigation Report: Proposed "Ocotillo" Subdivision, Taos County, NM. MJDarrconsult, Inc / Hydroscience Assoc. Inc, 2006, Analysis of Aquifer Test Run Using RG-87080 +2025-09-30 11:20:46,728 [INFO ] Darr, M.J., 2008, Geohydrologic Investigation Report: Proposed Los Llanos Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. +2025-09-30 11:20:46,729 [INFO ] Darr, Michael J., 2007, Geohydrologic Investigation Report: Proposed "Golf Country" Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. +2025-09-30 11:20:46,729 [INFO ] Data from Groundwater Report 2: Geology & Groundwater Resources of San Miguel County, NM. (1951) NMBGMR by R.L. Griggs and G.E. Hendrickson. +2025-09-30 11:20:46,729 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab. +2025-09-30 11:20:46,729 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab., OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:20:46,729 [INFO ] Data from owner well testing via NMBGMR water lab. +2025-09-30 11:20:46,729 [INFO ] David Chace of Hydro Resolutions +2025-09-30 11:20:46,730 [INFO ] David Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 +2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrolgoy of the Las Dos, Phase II Area, Santa Fe County, NM, October 1982 +2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrologic Conditions at the San Juan Residences, Santa Fe Cnty, April 1982 +2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 +2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; +2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; Steinberger log of R1 test hole, K.Summers files +2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; WK Summers project files +2025-09-30 11:20:46,731 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979 +2025-09-30 11:20:46,731 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; Mourant; Spiegel & Baldwin, p 241 +2025-09-30 11:20:46,731 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; WATERS +2025-09-30 11:20:46,731 [INFO ] David N. Jenkins, Geohydrologic Conditions at the Thorpe Condominiums, Santa Fe Cnty, Nov 1982 +2025-09-30 11:20:46,731 [INFO ] David Updegraff & William Lyons, 1978, Geohydrology of the Hyde Park Estates Unit 3 Subdiv'n, Aug 1978 +2025-09-30 11:20:46,731 [INFO ] DBStephens report to NMED UST Bureau +2025-09-30 11:20:46,731 [INFO ] depth made up by GCR based on nearby wells, no actual data +2025-09-30 11:20:46,732 [INFO ] depth made up by GCR, no actual data, assume similar to well K-14 (UC 30) +2025-09-30 11:20:46,732 [INFO ] Discussion of Geology, Hydrogeology, and Water Quality of the Tailings Area, Molycorp Facility, Taos County, NM, 1995, South Pass Resources, Inc. +2025-09-30 11:20:46,732 [INFO ] Drakos, P. & Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. Also, Water Level Monitoring Prgm. 2002-2 +2025-09-30 11:20:46,732 [INFO ] Drakos, P. and Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level +2025-09-30 11:20:46,732 [INFO ] Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. +2025-09-30 11:20:46,732 [INFO ] Drakos, P., et al., 2004, Hydrologic Characteristics of Basin-Fill Aquifers in the Southern San Luis Basin, NM, NMGS Guidebook 55, pg. 391. +2025-09-30 11:20:46,733 [INFO ] Drakos, P., Hodgins, M., 2000, Drilling & Testing Report, Bureau of Reclamation 2000-Ft. Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. 2) Water Level Monitoring Prgm. 2002-2007, GGI +2025-09-30 11:20:46,733 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. & Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Ft. Deep Nested Piezometer/Expl. Well (BOR-2) & 2100-Ft. Deep Production Well (BOR-3), Paseo del Canon We +2025-09-30 11:20:46,733 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. and Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR-2) & 2100-Feet Deep Production Well (BOR-3), Paseo de +2025-09-30 11:20:46,733 [INFO ] Drakos, P., Riesterer, J., and Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level Monitor +2025-09-30 11:20:46,733 [INFO ] Driller's log; OSE network WLs +2025-09-30 11:20:46,733 [INFO ] dubiousOSE match, depth and location are off +2025-09-30 11:20:46,733 [INFO ] Duncan, 2004. +2025-09-30 11:20:46,733 [INFO ] Duncan, 2004; field check by Johnson 12-22-05 +2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; Frost, 1999, ElDorado Area Water & Sanitation District Project files +2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study +2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study. +2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; JSAI, 2001, App. #6 +2025-09-30 11:20:46,734 [INFO ] Exploratory & Shallow Well Drilling Rio Grande Watershed Study-Phase 1 San Acacia Surface Water/Groundwater Investigation (Dec. 5, 2003) S.S. Papadopulos & Associates for US Army Corps of Engineer +2025-09-30 11:20:46,734 [INFO ] Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94 +2025-09-30 11:20:46,734 [INFO ] Field check by Johnson +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson, Cruz, Frost; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; Cooper, 1995, report to Garcia Ranch; Borton field notes +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 2/14/2002 +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 7/2/98 +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; owner info +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; WATERS +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; WATERS; Mourant +2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; WATERS; sample site for Anderholm, 1994 USGS WRI Report 94-4078 +2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well log +2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well log; owner +2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well log; SFO files +2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well record +2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well/owner records +2025-09-30 11:20:46,736 [INFO ] Field check by Lyman +2025-09-30 11:20:46,736 [INFO ] Field check with Lyman and BLM realtor Hal Knox; plat map +2025-09-30 11:20:46,736 [INFO ] Field check, WATERS +2025-09-30 11:20:46,737 [INFO ] Field check; owner +2025-09-30 11:20:46,737 [INFO ] Field check; owner; well log +2025-09-30 11:20:46,737 [INFO ] Field check; WATERS +2025-09-30 11:20:46,737 [INFO ] Field check; WATERS. OSE Well Record. +2025-09-30 11:20:46,737 [INFO ] Field check; WATERS.OSE Well Record. +2025-09-30 11:20:46,737 [INFO ] Field check; well log +2025-09-30 11:20:46,737 [INFO ] Field check; well logg +2025-09-30 11:20:46,737 [INFO ] Field check; well record +2025-09-30 11:20:46,738 [INFO ] Field checked +2025-09-30 11:20:46,738 [INFO ] Field checked, WATERS +2025-09-30 11:20:46,738 [INFO ] Field checked, Well owners recollection of well info +2025-09-30 11:20:46,738 [INFO ] Field checked. WATERS. OSE Well Record. +2025-09-30 11:20:46,738 [INFO ] Field checked; WATERS +2025-09-30 11:20:46,738 [INFO ] Field checked; WATERS. OSE Well Record. +2025-09-30 11:20:46,738 [INFO ] Field checks; WATERS; well record. +2025-09-30 11:20:46,739 [INFO ] Finch & Petronis (JS&A), Sept. 2006, Hydrogeologic Report for the Galisteo Basin Preserve, Santa Fe County, NM, for Commonweal Conservancy, unpub. consultant report +2025-09-30 11:20:46,739 [INFO ] Finch, S.T., Jr., 2001, Hydrogeologic Evaluation of T-255 Et. Al., Near Carrizozo, New Mexico, John Shomaker & Associates, Inc. +2025-09-30 11:20:46,739 [INFO ] Finch, Steven T., and Melis, Erwin A., October 2008, Hydrogeologic evaluation of ground-water supply for the Spaceport America Site near Upham, NM, John Shomaker & Associates. +2025-09-30 11:20:46,739 [INFO ] Fleming, WM, Geohydrology Report for the Matthews Property, Santa Fe County, July 26, 1991 +2025-09-30 11:20:46,739 [INFO ] Foreman +2025-09-30 11:20:46,739 [INFO ] Frost MWB notes, 1994 +2025-09-30 11:20:46,740 [INFO ] Frost MWB Survey notes +2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe Cnty Ground Water Levels, 1995-96 Results; GWSI; USGS log books; well record +2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996 +2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; field check +2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Lewis database; NMED DWB (1999) via Jemez y Sangre Database (2000) +2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Mourant +2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnso +2025-09-30 11:20:46,741 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnson +2025-09-30 11:20:46,741 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; well record +2025-09-30 11:20:46,741 [INFO ] Frost, 1999; WATERS +2025-09-30 11:20:46,741 [INFO ] Frost, MWB Survey notes; D.Koning log review +2025-09-30 11:20:46,741 [INFO ] Full EPA ID #TB-B011-150811-21 +2025-09-30 11:20:46,741 [INFO ] Full EPA ID #TB-B023-150814-021 +2025-09-30 11:20:46,741 [INFO ] Full EPA ID #TD-D001-150812-21 +2025-09-30 11:20:46,742 [INFO ] Full EPA ID #TD-D003-150812-21 +2025-09-30 11:20:46,742 [INFO ] Garrabrant, L.A., 1993, Water resources of Taos County, NM: USGS WRIR 93-4107. +2025-09-30 11:20:46,742 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Cuttings archived in our core shed. +2025-09-30 11:20:46,742 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Pump test from driller (JSAI). Cuttings/chip boards archived in our core shed. +2025-09-30 11:20:46,742 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons +2025-09-30 11:20:46,742 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons; map +2025-09-30 11:20:46,742 [INFO ] Geohydrology Assoc., Inc. lithologic log to NMED SW Bureau; field check by Johnson +2025-09-30 11:20:46,743 [INFO ] Geohydrology Assoc., Inc., 1988, Hydrogeologic Investigation of Cottonwood Estates, 2//88; WATERS +2025-09-30 11:20:46,743 [INFO ] Geophysics: dual induction guard, dual spaced neutron,microlog, high-resol temp log. WQ: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. +2025-09-30 11:20:46,743 [INFO ] GGI +2025-09-30 11:20:46,743 [INFO ] GGI report (has WQ sample). Requested from P. Drakos; have not received response. +2025-09-30 11:20:46,743 [INFO ] GGI report for NMED UST Bureau +2025-09-30 11:20:46,743 [INFO ] GGI report to NMED UST Bureau +2025-09-30 11:20:46,744 [INFO ] GGI reports: 1) 2001 report on RP-2500 in Town of Taos, 2) Water Level Monitoring +2025-09-30 11:20:46,744 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, NM,3/19/92; Sangre de Cristo Estates rept +2025-09-30 11:20:46,744 [INFO ] GGI, 100-Yr Water Availability Santa Fe Metro Center, 12/01; AND La Cienega de Santa Fe Proj, 10/91 +2025-09-30 11:20:46,744 [INFO ] GGI, 1988, Geohydrology of the Picture Rock Development Co. Property, Santa Fe, May, 1988. +2025-09-30 11:20:46,744 [INFO ] GGI, 1989, Geohydrology of the Baird Joint Venture Property, Taos County, NM, Glorieta Geoscience, Inc. +2025-09-30 11:20:46,744 [INFO ] GGI, 1989, Reconnaissance Geohydrology of the Lumpkins Property, Santa Fe County, NM, August 1989 +2025-09-30 11:20:46,744 [INFO ] GGI, 1990, Geohydrology of the Bajo Del Cielo Subdivision, Santa Fe County, NM. Dec. 1990 +2025-09-30 11:20:46,745 [INFO ] GGI, 1990, Geohydrology of the Beaver and Henry Properties, Santa Fe Cnty, Aug 1990 +2025-09-30 11:20:46,745 [INFO ] GGI, 1991, Geohydrology of the Walker Property, Santa Fe, May, 1991. +2025-09-30 11:20:46,745 [INFO ] GGI, 1995, Geohydrology of the Santa Fe Opera Tract Prop, Santa Fe Cnty, 3/95; G.Ellis; well log +2025-09-30 11:20:46,745 [INFO ] GGI, 1995, Geohydrology of the Vereda Serena Property, Santa Fe, October, 1995. +2025-09-30 11:20:46,745 [INFO ] GGI, 1995, Production well and observation well installation, testing, and determination of aquifer coefficients: unpub consultant report for Town of Taos, March 1995 +2025-09-30 11:20:46,745 [INFO ] GGI, 1998, Ground Water Conditions in the Vicinity of the Gonzales Tract San Marcos Arroyo Santa Fe County, NM, Dec. 1998 +2025-09-30 11:20:46,745 [INFO ] GGI, 2001, Geohydrologic report for the Village at Eldorado, July, 2001. +2025-09-30 11:20:46,746 [INFO ] GGI, 2001, Vista del Valle Subdivision Report, Taos County, New Mexico +2025-09-30 11:20:46,746 [INFO ] GGI, 2002, Addendum To: Reconnaissance Geohydrologic Characterization of Tesuque Ridge, 8/28/2002 +2025-09-30 11:20:46,746 [INFO ] GGI, 2002, Reconnaissance Geohydrologic Characterization of Tesuque Ridge Subdivn, 7/17/02 +2025-09-30 11:20:46,746 [INFO ] GGI, 2003, Geohydrologic Report for the Luna Rosa LLC Equestrian Center Property, July 2003. +2025-09-30 11:20:46,746 [INFO ] GGI, 2003, Reconnaissance Geohydrology report of the Clements Property, Santa Fe, April, 2003. +2025-09-30 11:20:46,746 [INFO ] GGI, 2003, Reconnaissance Water Availability Assessment of the Santa Fe Waldorf School - High School +2025-09-30 11:20:46,746 [INFO ] GGI, 2004, Geohydrology of the Estancia Subdivision, Santa Fe County, December, 2004 +2025-09-30 11:20:46,746 [INFO ] GGI, 2004, Reconnaissance Geohydrology Report for the Beaty Property, Santa Fe Cty, Dec. 22, 2004. +2025-09-30 11:20:46,747 [INFO ] GGI, Chapter VI Geohydrology of the La Cienega de Santa Fe Project, Oct 1991; GGI, 100-Yr Water Availability, Downs at Santa Fe, March 2001 for Pojoaque Pueblo Development Corp +2025-09-30 11:20:46,747 [INFO ] GGI, Geohydro of Naiche Property, 12/92; field check by Johnson; well recd +2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrologic report for the Rancho San Lucas Subdivision, Feb 2002 +2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of La Canada Subdivision, Santa Fe County, NM, July 1985 +2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of Pop's Convenience Store, Santa Fe County, NM, Sept 29, 1997 +2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of the Brenner Property, Santa Fe County, NM, Aug 1990 +2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of the Bryant Prop, Santa Fe Cnty, May 1995; GGI, San Ysidro de Tesuque, May 1990 +2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Bryant Property, Santa Fe County, NM, May 1995; GGI, 1989 +2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Circle Drive Compound Prop, Santa Fe Cnty, May 1991 +2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Hansen Property, Santa Fe County, NM, June 1990 +2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Insight Investments Property, Santa Fe Cnty, NM, 2/20/90 +2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Lane Property, Santa Fe Cnty, NM, 4/29/92 +2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the McElvain/Patania Property, 6/92 +2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990 +2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990; GGI, Geohydrology of the Santa Fe Arroyo Hondo Vistas Subdivision, SFe County, Aug. 1989 +2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Migel Property, Santa Fe Cnty, 2/90; GGI, Geohydro of McMahon Prop 10/90 +2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Mountain Vista Subdivision, Santa Fe County, July 10, 2002 +2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Myers Property, Santa Fe Cnty, July 1992 +2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Naiche Property, Santa Fe County, NM, Dec 1992 +2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Prince Property, 8/91; McElvain-Patania Prop, 6/92 +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Santa Fe Animal Shelter Site, Santa Fe County, NM, May 15, 2002 +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Santa Fe Opera Tr, Santa Fe Cnty, 3/95; GGI, San Ysidro de Tesuque, 5/90 +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Shulman Property, Santa Fe Cnty, April 1990 +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Vrtiak Property, Santa Fe Cnty, June, 1991 +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the West Alameda Proj, Santa Fe Cnty, NM, Jan 1989 +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, March 19, 1992 +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct 14, 1994; GGI, Bryant Prop; WATERS +2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct, 1994; GGI, Sangre de Cr Est, Jan 1989 +2025-09-30 11:20:46,751 [INFO ] GGI, Geohydrology Rept for Rancho San Lucas, Santa Fe Cnty, NM, Feb 2002; Geophysical logs +2025-09-30 11:20:46,751 [INFO ] GGI, January 2005 Alexsis Geohydrology report (by Meghan Hodgins). +2025-09-30 11:20:46,751 [INFO ] GGI, Reconnaissance Geohydrology Report, Leibman Property, Santa Fe County, NM. March 23, 1994 +2025-09-30 11:20:46,751 [INFO ] GGI, Reconnaissance Geohydrology Report, Neufeld Property, Santa Fe Cnty, Nov 1988 +2025-09-30 11:20:46,751 [INFO ] Glorieta Geoscience Inc. +2025-09-30 11:20:46,751 [INFO ] Glorieta Geoscience, Inc., 2006, Geohydrology and Water Availability for Phase 1, Santa Fe Canyon Ranch Subdivision, Santa Fe County, NM, March 22, 2006. +2025-09-30 11:20:46,751 [INFO ] GW-1: Geology & Ground-Water Resources of the Eastern Part of Colfax Cty, NM (1948) Griggs, Roy L., NMBGMR +2025-09-30 11:20:46,751 [INFO ] GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology +2025-09-30 11:20:46,752 [INFO ] GW-4: Geology & Groundwater Res. of NE Socorro Cty, NM (1955) Spiegel, Zane, NM Bureau of Geology +2025-09-30 11:20:46,752 [INFO ] GW5: Geology and Ground-Water Resources of Torrance County, NM (1957) R.E. Smith, NM Bureau of Geology +2025-09-30 11:20:46,752 [INFO ] GW9: Groundwater Resources & Geology of Quay County, NM (1966) Charles Berkstresser, Jr. & Walter A. Mourant, NM Bureau of Geology +2025-09-30 11:20:46,752 [INFO ] GWSI +2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; field check by Johnson +2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; field check by Johnson; D.Koning log review +2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; OFR 89-37; field check by Johnson; D.Koning log review +2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; WATERS +2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; WATERS; Cooper, 1995; field check by Johnson +2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; WATERS; field check by Johnson +2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson +2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson. +2025-09-30 11:20:46,753 [INFO ] GWSI; D.Koning log review +2025-09-30 11:20:46,753 [INFO ] GWSI; D.Koning log review; D.Koning log review +2025-09-30 11:20:46,753 [INFO ] GWSI; field check by Johnson +2025-09-30 11:20:46,754 [INFO ] GWSI; field check by Johnson; D.Koning log review +2025-09-30 11:20:46,754 [INFO ] GWSI; field check Johnson +2025-09-30 11:20:46,754 [INFO ] GWSI; Mourant; well record; field check by Johnson +2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log books; field check by Johnson +2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log sheets; field check by Johnson; field check by Lyman and SFC Utilities +2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log sheets; well log; field check by Johnson +2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson +2025-09-30 11:20:46,755 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson; field check by Lyman and SFC Utilities +2025-09-30 11:20:46,755 [INFO ] GWSI; USGS logbooks; field check by Johnson +2025-09-30 11:20:46,755 [INFO ] GWSI; USGS logbooks; Frost, 1996, Santa Fe County GWLs, 1995-96 Results, 1/96; K.Summers notes from 11/16/70 aquifer test; Frost, 1999, written comm. +2025-09-30 11:20:46,755 [INFO ] GWSI; USGS well sheet; field check by Johnson +2025-09-30 11:20:46,755 [INFO ] GWSI; USGS well sheet; well log; Johnson, 2003; VeneKlasen, 2/86, Geohydro Rept Arroyo Hondo West +2025-09-30 11:20:46,755 [INFO ] GWSI; USGS well sheets; field check by Johnson +2025-09-30 11:20:46,756 [INFO ] GWSI; water right declaration; field check by Johnson +2025-09-30 11:20:46,756 [INFO ] GWSI; water right declaration; field check Johnson; Aqua Drilling well log. WQ from Longmire +2025-09-30 11:20:46,756 [INFO ] GWSI; WATERS +2025-09-30 11:20:46,756 [INFO ] GWSI; well log; field check by Johnson +2025-09-30 11:20:46,756 [INFO ] GWSI; well record; field check by Johnson +2025-09-30 11:20:46,756 [INFO ] Hall, J., 2010, Blackstone Ranch Well RG-82913 48-hr Pumping Test, Taos, NM, GGI. +2025-09-30 11:20:46,756 [INFO ] Heaton (Sinagua Consultants), Well Hydro Report Capitol Ford Body Shop, Jan 1999 +2025-09-30 11:20:46,756 [INFO ] Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:20:46,757 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601 +2025-09-30 11:20:46,757 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8 +2025-09-30 11:20:46,757 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:20:46,757 [INFO ] HR-1: Geology & Ground-Water Resources of Central & Western Dona Ana County, NM (1971) King, W.E., Hawley, J.W., Taylor, A.M. and Wilson, R.P. New Mexico Bureau of Geology +2025-09-30 11:20:46,757 [INFO ] HR5: Groundwater in the Sandia and Northern Manzano Mtns, NM (1980) Frank B. Titus, NM Bureau of Geology +2025-09-30 11:20:46,757 [INFO ] Huff, G.F. (1996) Analysis of Ground-water data for selected wells near Holloman AFB, NM, 1950-1995. USGS WRIR-96-4116. +2025-09-30 11:20:46,758 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, 1988. +2025-09-30 11:20:46,758 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, March 17, 1988. +2025-09-30 11:20:46,758 [INFO ] Hydrologic and hydrogeologic analysis for the Guadalupe Mtn. ground-water discharge plan. June 1984, Water Resources Associates, Inc. +2025-09-30 11:20:46,758 [INFO ] Hydroscience Associates, Inc., 2006, Analysis of Aquifer Test Run Using Well RG-87082, Taos County, New Mexico. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:20:46,758 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:20:46,758 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:20:46,758 [INFO ] Information as personal communication from GGI +2025-09-30 11:20:46,758 [INFO ] Inventoried previously on 4/21/2015 as part of Clovis-Portales project +2025-09-30 11:20:46,759 [INFO ] Inventoried previously on 6/2/2015 as part of Clovis-Portales project +2025-09-30 11:20:46,759 [INFO ] J. Corbin, 2007 written communication +2025-09-30 11:20:46,759 [INFO ] J. Corbin, 2007, written communication +2025-09-30 11:20:46,759 [INFO ] J.Frost, 1999; WATERS +2025-09-30 11:20:46,759 [INFO ] Jemez y Sangre (2000); NMED DWB Info Sheet; WATERS +2025-09-30 11:20:46,759 [INFO ] Jenkins, 1979, Geohydrology of the Vista Subdivn, 12/79; C.A. Coonce & Assoc., 1977, Montoya Subdivn Water Availability Study for Cipriano Martinez, 12/77 +2025-09-30 11:20:46,759 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate +2025-09-30 11:20:46,759 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate. also Jenkins, Dec 1979, Geohydrology of the Vista Subdivision +2025-09-30 11:20:46,760 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978 +2025-09-30 11:20:46,760 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978. OSE Well Record. +2025-09-30 11:20:46,760 [INFO ] Jenkins, David,- Geohydrologic Investigation of the Turquoise Trail Subdivision, SF Cnty, July 1977 +2025-09-30 11:20:46,760 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn +2025-09-30 11:20:46,760 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn; Corbin Consulting, Inc., Mar 8, 2005, Geohydrology Report Longanecker Property +2025-09-30 11:20:46,760 [INFO ] JHA, May 2004, Well Report Buckman Wells No. 10-13, City of Santa Fe +2025-09-30 11:20:46,760 [INFO ] John Shomaker & Assoc., April 1995, Well report Sangre de Cristo Water Company Buckman Well No. 3a; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09, written comm. +2025-09-30 11:20:46,761 [INFO ] John Shomaker & Assoc, 1999, Well Report: Drilling, Construction, & Testing Hickox Well No. 2, 5/99; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning review +2025-09-30 11:20:46,761 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR +2025-09-30 11:20:46,761 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR. +2025-09-30 11:20:46,761 [INFO ] JSA completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau +2025-09-30 11:20:46,761 [INFO ] JSAI Well report for Proposed Desalination Well Field, City of Alamogordo, NM. June 2006. +2025-09-30 11:20:46,761 [INFO ] Kendall Taylor +2025-09-30 11:20:46,761 [INFO ] Kendall Taylor and drill log +2025-09-30 11:20:46,762 [INFO ] Kendall Taylor; OSE well log +2025-09-30 11:20:46,762 [INFO ] L. Sherson @ USGS determined that all but one water level taken by contractors for OSE at 334819108084801 were really taken from this location 334819108084601. Level on 9/25/2008 was at *4801 NM-15416 +2025-09-30 11:20:46,762 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:20:46,762 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). Part of OSE network, so thought it would have been in their system already. +2025-09-30 11:20:46,762 [INFO ] Lewis database of city wells; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:20:46,762 [INFO ] Lewis database, 2001; Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94; Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98 +2025-09-30 11:20:46,762 [INFO ] Lithlog personal communication w/GGI. +2025-09-30 11:20:46,763 [INFO ] local individuals: Layne Preslar, Bob Hubbard +2025-09-30 11:20:46,763 [INFO ] Longmire, Patrick, July 1985, Hydrogeochemical Study Along the Santa Fe River; field check +2025-09-30 11:20:46,763 [INFO ] Longmire, Patrick, July 1985. A Hydrogeochemical Study Along the Valley of the Santa Fe River +2025-09-30 11:20:46,763 [INFO ] Lou Wilkerson +2025-09-30 11:20:46,763 [INFO ] Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018 +2025-09-30 11:20:46,763 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. +2025-09-30 11:20:46,763 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. References additional well tests by M.J. Darr. +2025-09-30 11:20:46,763 [INFO ] Mark Defibaugh +2025-09-30 11:20:46,764 [INFO ] Martinez Surveying Co., [Hydrogeologic Report for] Miller Subdivision, Jan 1984 +2025-09-30 11:20:46,764 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multi +2025-09-30 11:20:46,764 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multip +2025-09-30 11:20:46,764 [INFO ] McLean, J.S. (1970) Saline Ground-Water Resources of the Tularosa Basin, NM. Office of Saline Water, R&D Progress Rpt 561 +2025-09-30 11:20:46,764 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:20:46,764 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 (1980 water level) +2025-09-30 11:20:46,764 [INFO ] MJ Darr (July 2006) Pump Test of WL-0007. +2025-09-30 11:20:46,765 [INFO ] Mourant; GWSI; field check by Johnson; USGS well schedules +2025-09-30 11:20:46,765 [INFO ] Mourant; GWSI; field check by Johnson; well log. +2025-09-30 11:20:46,765 [INFO ] MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources +2025-09-30 11:20:46,765 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:20:46,765 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron/Socorro/Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:20:46,765 [INFO ] NA03200901BBB +2025-09-30 11:20:46,765 [INFO ] NA03200912ACC +2025-09-30 11:20:46,766 [INFO ] NA03201066BBB +2025-09-30 11:20:46,766 [INFO ] NA03300814CCC +2025-09-30 11:20:46,766 [INFO ] NA03300914CCC +2025-09-30 11:20:46,766 [INFO ] NA03300921CCC +2025-09-30 11:20:46,766 [INFO ] NA03300922ACC +2025-09-30 11:20:46,766 [INFO ] NA03300933CAB +2025-09-30 11:20:46,766 [INFO ] NA03300933CAB2 +2025-09-30 11:20:46,767 [INFO ] NA03300935DBB +2025-09-30 11:20:46,767 [INFO ] NA03300936DBB +2025-09-30 11:20:46,767 [INFO ] NA03301014DDD +2025-09-30 11:20:46,767 [INFO ] NA03301019CCD +2025-09-30 11:20:46,767 [INFO ] NA03301020CCB +2025-09-30 11:20:46,767 [INFO ] NMBG +2025-09-30 11:20:46,767 [INFO ] NMBGMR +2025-09-30 11:20:46,767 [INFO ] NMBGMR & USGS +2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; Camp Dresser & McKee, Jan. 2000, +2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); OSE 2005 WL field sheets; WATERS +2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS. OSE Well Record. +2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; J. Corbin, written communication, 2007 +2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project files; JSAI, 2001,App. #6 +2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; JSAI (2001) App. #6 +2025-09-30 11:20:46,769 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; Minton log and pump test; JS&A, 2001 well log and water levels +2025-09-30 11:20:46,769 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; Summer's project files; Minton log; Frost, 1996, Review of El Dorado area water production and GW resource, June '96; JSAI, 2001, App. #6 +2025-09-30 11:20:46,769 [INFO ] NMED Solid Waste Bureau monitoring reports. +2025-09-30 11:20:46,769 [INFO ] NMED Spring Survey and Monitor Well Survey +2025-09-30 11:20:46,769 [INFO ] NMED SW Bureau data report, URS Corp.; written communications from NMED SolidWaste Bureau +2025-09-30 11:20:46,769 [INFO ] NMED SWP Atlas online +2025-09-30 11:20:46,770 [INFO ] NMOSE POD only +2025-09-30 11:20:46,770 [INFO ] NMOSE Well log +2025-09-30 11:20:46,770 [INFO ] No well inventory form for this site. Just coordinates, photo and well log. +2025-09-30 11:20:46,770 [INFO ] NRCS Well development document (Excel spreadsheet) +2025-09-30 11:20:46,770 [INFO ] OCD AP-100 report by Conestoga-Rovers & Associates +2025-09-30 11:20:46,770 [INFO ] OCD AP-101 Report by Arcadis U.S. Inc. +2025-09-30 11:20:46,770 [INFO ] OCD AP-104 Report by Conestoga-Rovers and Associates +2025-09-30 11:20:46,771 [INFO ] OCD AP-105 Report by GHD +2025-09-30 11:20:46,771 [INFO ] OCD AP-107 Report by Arcadis U.S. Inc +2025-09-30 11:20:46,771 [INFO ] OCD AP-112 Report by Larson & Associates, Inc. +2025-09-30 11:20:46,771 [INFO ] OCD AP-114 Report by Tasman Geosciences +2025-09-30 11:20:46,771 [INFO ] OCD AP-115 Report by Conestoga-Rovers and Associates +2025-09-30 11:20:46,771 [INFO ] OCD AP-118 Report by GHD +2025-09-30 11:20:46,771 [INFO ] OCD AP-120 Report by GHD Services Inc. +2025-09-30 11:20:46,772 [INFO ] OCD AP-56 Report by GHD +2025-09-30 11:20:46,772 [INFO ] OCD AP-62 Report by R.T. Hicks Consultants, Ltd +2025-09-30 11:20:46,772 [INFO ] OCD AP-71 Report by Rice Operating Company +2025-09-30 11:20:46,772 [INFO ] OCD AP-73 Report by Enviro Clean Cardinal LLC +2025-09-30 11:20:46,772 [INFO ] OCD AP-75 Report by Rice Environmental Consulting & Safety, LLC +2025-09-30 11:20:46,772 [INFO ] OCD AP-87 Report by by Tetra Tech +2025-09-30 11:20:46,772 [INFO ] OCD AP-88 Report by Tetra Tech +2025-09-30 11:20:46,773 [INFO ] OCD AP-91 Report by Talon/LPE +2025-09-30 11:20:46,773 [INFO ] OCD AP-94 Report by Tetra Tech +2025-09-30 11:20:46,773 [INFO ] OCD AP-95 report by Tetra Tech +2025-09-30 11:20:46,773 [INFO ] OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:20:46,773 [INFO ] OFR-51: Hydrogeology of the San Agustin Plains, NM (1973) Blodgett, Daniel D. and Titus, Frank B., NMBGMR +2025-09-30 11:20:46,773 [INFO ] Onwer +2025-09-30 11:20:46,773 [INFO ] Original data and chemistry from Lynn Brandvold with NMBGMR chemistry lab. We visited site in July 2015 took GPS location and found well record. +2025-09-30 11:20:46,774 [INFO ] OSE +2025-09-30 11:20:46,774 [INFO ] OSE and Foreman. +2025-09-30 11:20:46,774 [INFO ] OSE database. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:20:46,774 [INFO ] OSE field notes +2025-09-30 11:20:46,774 [INFO ] OSE field sheet +2025-09-30 11:20:46,774 [INFO ] OSE macth doubtful, usgs depth is much different, 311 vs 375 +2025-09-30 11:20:46,775 [INFO ] OSE POD record +2025-09-30 11:20:46,775 [INFO ] OSE POD record. +2025-09-30 11:20:46,775 [INFO ] OSE Record and owner recollection +2025-09-30 11:20:46,775 [INFO ] OSE records +2025-09-30 11:20:46,775 [INFO ] OSE records and owner recollection. +2025-09-30 11:20:46,775 [INFO ] OSE records and well owner records. +2025-09-30 11:20:46,775 [INFO ] OSE records online. +2025-09-30 11:20:46,775 [INFO ] OSE Records, some info from well owner +2025-09-30 11:20:46,776 [INFO ] OSE Records, well owner provided info. +2025-09-30 11:20:46,776 [INFO ] OSE Records, well owner recollection. +2025-09-30 11:20:46,776 [INFO ] OSE Records. +2025-09-30 11:20:46,776 [INFO ] OSE Records. Gary Goss at TWSD. +2025-09-30 11:20:46,776 [INFO ] OSE records. PN031 may not be it. Well is very old. +2025-09-30 11:20:46,776 [INFO ] OSE WATERS site +2025-09-30 11:20:46,776 [INFO ] OSE website +2025-09-30 11:20:46,777 [INFO ] OSE website info, no well record. Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:20:46,777 [INFO ] OSE website, no well record. +2025-09-30 11:20:46,777 [INFO ] OSE website, no well record. Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:20:46,777 [INFO ] OSE website, well record available at OSE office. +2025-09-30 11:20:46,777 [INFO ] OSE website, well record maybe available at OSE office. +2025-09-30 11:20:46,777 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 +2025-09-30 11:20:46,777 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09 +2025-09-30 11:20:46,777 [INFO ] OSE well log. Some data from USGS. Overlapping site data. +2025-09-30 11:20:46,778 [INFO ] OSE Well record +2025-09-30 11:20:46,778 [INFO ] OSE well record and owner +2025-09-30 11:20:46,778 [INFO ] OSE well record and owner info +2025-09-30 11:20:46,778 [INFO ] OSE well record and site visit +2025-09-30 11:20:46,778 [INFO ] OSE Well Record and well owner +2025-09-30 11:20:46,778 [INFO ] OSE well record. +2025-09-30 11:20:46,779 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:20:46,779 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project file and Sandia Drilling well log +2025-09-30 11:20:46,779 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:20:46,779 [INFO ] Owner +2025-09-30 11:20:46,779 [INFO ] Owner - well dirlled in 60s. +2025-09-30 11:20:46,779 [INFO ] owner - well drilled by father, using septic auger. +2025-09-30 11:20:46,779 [INFO ] Owner - well drilled in 50's. owner has some records. +2025-09-30 11:20:46,780 [INFO ] Owner and OSE record +2025-09-30 11:20:46,780 [INFO ] Owner and OSE site. +2025-09-30 11:20:46,780 [INFO ] Owner and OSE well record. +2025-09-30 11:20:46,780 [INFO ] Owner and well record. +2025-09-30 11:20:46,780 [INFO ] Owner field check; WATERS +2025-09-30 11:20:46,780 [INFO ] Owner recollection +2025-09-30 11:20:46,780 [INFO ] Owner recollection and limited OSE records. +2025-09-30 11:20:46,781 [INFO ] Owner recollection and OSE POD record. +2025-09-30 11:20:46,781 [INFO ] Owner recollection of well depth and water level +2025-09-30 11:20:46,781 [INFO ] Owner recollection. +2025-09-30 11:20:46,781 [INFO ] Owner recollection; OSE Records +2025-09-30 11:20:46,781 [INFO ] Owner. +2025-09-30 11:20:46,781 [INFO ] Owner. OSE well records +2025-09-30 11:20:46,781 [INFO ] P. Drakos, et al., 2004, Chemical & Isotopic Constraints on Source-Waters and Connectivity of Basin-Fill Aquifers in the Southern San Luis Basin, NM. NMGS Guidebook 55, pg 405. +2025-09-30 11:20:46,782 [INFO ] PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM +2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID # S264) +2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S037) +2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S040) +2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S101) +2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S146) +2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S164) +2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S220) +2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S265) +2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. +2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al., 2004 Geochem. Characterization of Grd-water Flow in the Santa Fe Grp Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. +2025-09-30 11:20:46,783 [INFO ] Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis +2025-09-30 11:20:46,783 [INFO ] Pretty certain C011 is Burns EPA sample. +2025-09-30 11:20:46,784 [INFO ] Prindle-Hinds well completion log to NMED SW Bureau +2025-09-30 11:20:46,784 [INFO ] Pump test performed as noted in Meyers report. USGS WRI 94-4125 +2025-09-30 11:20:46,784 [INFO ] Ranch foreman. +2025-09-30 11:20:46,784 [INFO ] Rankin, Dale, 2005, Personal Communication USGS Well Drilling Reports +2025-09-30 11:20:46,784 [INFO ] Reardon et al. (2021) Addendum to Water Res. Assessment NM Permian Basin SAND2021-1869 +2025-09-30 11:20:46,784 [INFO ] Reardon, et al. (2021) Addendum to Water Res. Assessment in NM Permian Basin. SAND2021-1869. +2025-09-30 11:20:46,784 [INFO ] RGDSSP12 +2025-09-30 11:20:46,785 [INFO ] Romero +2025-09-30 11:20:46,785 [INFO ] San Pedro Creek Estates HOA +2025-09-30 11:20:46,785 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files +2025-09-30 11:20:46,785 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files; DKoning cutting review +2025-09-30 11:20:46,785 [INFO ] Sandia National Labs/ BLM Wells +2025-09-30 11:20:46,785 [INFO ] Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:20:46,785 [INFO ] Sangre de Cristo/OSE, WATERS, Borchert report, Watson and Rappuhn/Shomaker & Assoc., 4/99, WellReport: Drilling, Construction and Testing, City of Santa Fe Northwest Area Test Well; D.Koning review +2025-09-30 11:20:46,785 [INFO ] Santa Fe County records; well log; field check +2025-09-30 11:20:46,786 [INFO ] Santa Fe County Utilities field notes; +2025-09-30 11:20:46,786 [INFO ] SECOR report to NMED UST Bureau +2025-09-30 11:20:46,786 [INFO ] Shoemaker & Fleming, MWB Survey, 1990; Mourant, 1980 +2025-09-30 11:20:46,786 [INFO ] Shomaker & Associates, 2004, Well Report Buckman Wells No. 10-13 City of Santa Fe, New Mexico, May 2004; C. Borchert, written communication, 3/23/09 +2025-09-30 11:20:46,786 [INFO ] Shomaker & Associates, April 2003, Well Report: Drilling, Construction, and Testing of SF Buckman 9; C. Borchert, written communication, 3/23/09 +2025-09-30 11:20:46,786 [INFO ] Site check; well record +2025-09-30 11:20:46,786 [INFO ] Site visit by Johnson during drilling; drillers report; J. Corbin, written communication, 2007 +2025-09-30 11:20:46,786 [INFO ] Slinglerland & Borton, Geohydro of Avanti Business Park, 8/85 (App F to GGI, Santa Fe Metro, 12/01); lithologic log by GGI, review by D.Koning +2025-09-30 11:20:46,787 [INFO ] SNL report for manual water level and water quality +2025-09-30 11:20:46,787 [INFO ] Some chemistry from EPA via NM Health Dept. +2025-09-30 11:20:46,787 [INFO ] Some data from USGS. Overlapping site data. +2025-09-30 11:20:46,787 [INFO ] Some data from USGS. Overlapping site data. Aquifer type from USGS. +2025-09-30 11:20:46,787 [INFO ] Some data from USGS. Overlapping site data. Formation pick from USGS. +2025-09-30 11:20:46,787 [INFO ] Some limited WQ measurements at well and nearby stream. Filed. Not entered. +2025-09-30 11:20:46,788 [INFO ] Some water levels from USGS +2025-09-30 11:20:46,788 [INFO ] Some WL's from Lee Foster Well Services +2025-09-30 11:20:46,788 [INFO ] Some WLs from USGS & Dames and Moore (4/11/1986). Some WQ from Vail Engineering (Sept. 1993). +2025-09-30 11:20:46,788 [INFO ] Souder-Miller & Assoc., 1995, Unpublished Consultant's Report, Fig 2, well completion diagram +2025-09-30 11:20:46,788 [INFO ] Source data for some chemistry for this location is from the US EPA. +2025-09-30 11:20:46,788 [INFO ] Source data for this location is from the US EPA & NMED water quality. +2025-09-30 11:20:46,788 [INFO ] Source data for this location is from the US EPA. +2025-09-30 11:20:46,789 [INFO ] T.Decker, written comm., 2000 (letter to B.McLean "Testing - EUI Well #15", 2/25/2000); +2025-09-30 11:20:46,789 [INFO ] Taos Soil & Water Concervation District +2025-09-30 11:20:46,789 [INFO ] Taos Soil & Water Conservation District +2025-09-30 11:20:46,789 [INFO ] Taos Soil & Water Conservation District water sample study. +2025-09-30 11:20:46,789 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM +2025-09-30 11:20:46,789 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM; field check by Johnson +2025-09-30 11:20:46,789 [INFO ] Theis, C.V., Taylor, Jr., G.C., and Murray, C.R. (1941) Thermal Waters of the Hot Springs Artesian Basin Sierra County, New Mexico. U.S. Geological Survey in cooperation with State Engineer of New Mex +2025-09-30 11:20:46,789 [INFO ] TSWCD +2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Apdx. 2 & 3. (Data from Drakos, GGI, 1996) Report filed w/TV-229. Al +2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Appendices 1, 3, 4 +2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, pg. 7, Table 1. +2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivison, Taos County, New Mexico, Turner Environmental Consultants, Pg. 18, Table 1, and Appendices 2,3. (Data from Jenkins in 1982). Ful +2025-09-30 11:20:46,790 [INFO ] undeclared well. +2025-09-30 11:20:46,790 [INFO ] URS Corp. for Chevron +2025-09-30 11:20:46,791 [INFO ] USFS - Espanola Ranger District - Range Improvement records. +2025-09-30 11:20:46,791 [INFO ] USGS & Garrabrant, L.A. (1993) Water Resources of Taos County, NM USGS WRIR 93-4107 (chemistry sample). This well matched to Garrabrant well via notes from Tony Benson's Sunshine notebooks. +2025-09-30 11:20:46,791 [INFO ] USGS & Myers, Everheart, Wilson (1994) Geohydrol. Of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, WRI 94-4125 +2025-09-30 11:20:46,791 [INFO ] USGS & NMED SWP Atlas online +2025-09-30 11:20:46,791 [INFO ] USGS & Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:20:46,791 [INFO ] USGS & Texas Water Development Board +2025-09-30 11:20:46,791 [INFO ] USGS & Winograd, I.J. (1959) Ground-water Conditions & Geology of Sunshine Valley & Western Taos Cty, NM, NMSEO, Tech. Report #12. & Garrabrant, L.A. (1993) USGS WRIR 93-4107 +2025-09-30 11:20:46,792 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:20:46,792 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:20:46,792 [INFO ] USGS and Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:20:46,792 [INFO ] USGS Chem Analysis Sheet from R.L. Borton Files. 1970; WATERS; C.Borchert, 3/23/09, written communication +2025-09-30 11:20:46,792 [INFO ] USGS Drillers reports +2025-09-30 11:20:46,792 [INFO ] USGS drillers reports; D.Koning cuttings review +2025-09-30 11:20:46,792 [INFO ] USGS drilling reports; D.Koning cutting review +2025-09-30 11:20:46,792 [INFO ] USGS Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:20:46,793 [INFO ] USGS, chemistry from Lynn Brandvold with NMBGMR chemistry lab, OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:20:46,793 [INFO ] USGS. POD log not available. +2025-09-30 11:20:46,793 [INFO ] USGS. Well screens/WQ from Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:20:46,793 [INFO ] USGS/OSE water-level data sheets; WATERS +2025-09-30 11:20:46,793 [INFO ] USGS; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:20:46,793 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, New Mexico, NM OSE Technical Report 8. +2025-09-30 11:20:46,794 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, NM, OSE Technical Report 8. +2025-09-30 11:20:46,794 [INFO ] USGS; Screens from NPS water level and well documentation +2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc, 1984, Remuda Ridge Warehouse, Santa Fe County, NM, October 1984 +2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc, Inc., 1982, Geohydrology Rept, Pecos Trail Subdn, Santa Fe Cnty, Aug 1982 +2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc., 1984, Geohydrology Report, Hondo Trails Subdn, Santa Fe Cnty, Dec 1984 +2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc., Inc., 1986, Geohydrology Report, Talbot Subdivision, May 1986 +2025-09-30 11:20:46,794 [INFO ] VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75 +2025-09-30 11:20:46,795 [INFO ] Veneklasen, 1977, Geohydro Lanphere -- Rio Villa Subdivision, AguaFria Rd, 5/77 +2025-09-30 11:20:46,795 [INFO ] Veneklasen, 1977, Hydrogeologic Report La Tierra Subdivn, Phase III, May 1977, Consulting Prof Inc +2025-09-30 11:20:46,795 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977 +2025-09-30 11:20:46,795 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977; field check Cruz/Frost +2025-09-30 11:20:46,795 [INFO ] Veneklasen, 1980, Geohydro of Santiago Subdivision, 10/80 +2025-09-30 11:20:46,795 [INFO ] VeneKlasen, 6/75, Hydrogeo Rept La Tierra; field check by Johnson +2025-09-30 11:20:46,795 [INFO ] VeneKlasen, Hydrogeologic Report for La Tierra Subdivision 6/75; well log; field check Johnson +2025-09-30 11:20:46,795 [INFO ] Water chemistry from TSWCD. Fairly sure this is COS-11, eventhough there is a descrepency between well log depth and well depth on chemistry sheet. +2025-09-30 11:20:46,796 [INFO ] Water Quality: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. +2025-09-30 11:20:46,796 [INFO ] WATERS; field check +2025-09-30 11:20:46,796 [INFO ] WATERS; Lewis database, 2001; VeneKlasen, 1975, Hydrogeologic Report LaTierra, 6/75; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review; C.Borchert, 3/23/09, written comm +2025-09-30 11:20:46,796 [INFO ] WATERS; WK Summers project files; JSAI, 2001, App. #6; J. Frost project files (1999) +2025-09-30 11:20:46,796 [INFO ] Watson/Shomaker & Assoc., 5/97, Well Report, Drilling, Construction, and Testing, City of Santa Fe, Torreon Well No. 2, for PNM Water Services Santa Fe, NM; CDM, Jan 2000, Water Supply Analysis +2025-09-30 11:20:46,796 [INFO ] Well owner. +2025-09-30 11:20:46,796 [INFO ] Well also in PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM +2025-09-30 11:20:46,797 [INFO ] well depth from Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:20:46,797 [INFO ] Well in Meyers report: Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:20:46,797 [INFO ] Well info from inside well cap, presumably from driller? +2025-09-30 11:20:46,797 [INFO ] Well Log +2025-09-30 11:20:46,797 [INFO ] Well log and completion diagrams +2025-09-30 11:20:46,797 [INFO ] Well log and field check by Johnson; not previously in GWSI +2025-09-30 11:20:46,797 [INFO ] Well log and well completion diagrams +2025-09-30 11:20:46,797 [INFO ] Well log and well completion diagrams. WQ data from P. Longmire Santa Fe River 1985 Report +2025-09-30 11:20:46,798 [INFO ] Well log/record by GGI; field check by Johnson +2025-09-30 11:20:46,798 [INFO ] Well log; field check +2025-09-30 11:20:46,798 [INFO ] Well log; field check by Johnson +2025-09-30 11:20:46,798 [INFO ] well log; field check by Johnson; owner +2025-09-30 11:20:46,798 [INFO ] well log; Johnson field check +2025-09-30 11:20:46,798 [INFO ] Well Log; JSAI, 2001, App. #6 +2025-09-30 11:20:46,798 [INFO ] Well owner +2025-09-30 11:20:46,799 [INFO ] Well owner and old well record. +2025-09-30 11:20:46,799 [INFO ] Well owner and OSE site info. +2025-09-30 11:20:46,799 [INFO ] Well owner, and well record. +2025-09-30 11:20:46,799 [INFO ] Well owner. +2025-09-30 11:20:46,799 [INFO ] Well record. +2025-09-30 11:20:46,799 [INFO ] Well record; field check +2025-09-30 11:20:46,799 [INFO ] Well record; field check by Cruz/Frost +2025-09-30 11:20:46,799 [INFO ] well record; field check by Johnson +2025-09-30 11:20:46,800 [INFO ] Well record; field check by Johnson; owner +2025-09-30 11:20:46,800 [INFO ] Well record; field check by Lyman +2025-09-30 11:20:46,800 [INFO ] Well record; field check by Lyman; SWL measured by GGI/reported by Cooper, 2000, Rept for Roybal +2025-09-30 11:20:46,800 [INFO ] Well record; field check with SFC Utilities (Leonard Quintana 490-0065) +2025-09-30 11:20:46,800 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:20:46,800 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:20:46,800 [INFO ] WK Summers project files; WATERS; Water Industries, Inc., 1982, Testing of Eldorado Well #1, Jan. 1982; water levels from W-1 and EUI#1; JSAI, 2001, App. #6 +2025-09-30 11:20:46,800 [INFO ] WL from USGS; chemistry and other data from Lynn Brandvold with NMBGMR chemistry lab & OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:20:46,801 [INFO ] WQ also from MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources. +2025-09-30 11:20:46,801 [INFO ] WQ from Taos Soil & Water Conservation District +2025-09-30 11:20:46,801 [INFO ] Z. Spiegel, 1972, Interpretation and application of an aquifer performance test on well RG-20228 at Pojoaque Terrace trailer court site HC McDonald Property, Santa Fe County, NM, 9/14/72 +2025-09-30 11:21:03,167 [INFO ] Reached limit of 10 rows. Stopping migration. +2025-09-30 11:21:03,181 [INFO ] transfer_wells took 20.534257 seconds +2025-09-30 11:21:04,200 [INFO ] transfer_wellscreens took 1.018381 seconds +2025-09-30 11:21:04,200 [INFO ] +2025-09-30 11:21:04,200 [INFO ] ********** TRANSFERRING CONTACTS ********** +2025-09-30 11:21:07,865 [INFO ] Processing PointID: 221 EB-663 +2025-09-30 11:21:07,879 [WARNING ] first 'Thompson, Warren' Skipping physical address. Validation error: 1 validation error for CreateAddress +postal_code + Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] + For further information visit https://errors.pydantic.dev/2.11/v/string_type +2025-09-30 11:21:07,890 [CRITICAL] Skipping first contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} +[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] +[parameters: ('Warren Thompson', 'Los Atrevidos, Inc.', 'Owner', 'Primary', None, None, None, None, None, None, None, 'private')] +(Background on this error at: https://sqlalche.me/e/20/f405) +2025-09-30 11:21:07,900 [CRITICAL] Skipping second contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} +[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] +[parameters: ("Warren's son", 'Los Atrevidos, Inc.', 'Owner', 'Secondary', None, None, None, None, None, None, None, 'private')] +(Background on this error at: https://sqlalche.me/e/20/f405) +2025-09-30 11:21:07,903 [INFO ] Processing PointID: 441 EB-057 +2025-09-30 11:21:07,915 [INFO ] added first contact for PointID EB-057 +2025-09-30 11:21:07,915 [CRITICAL] Skipping second contact for PointID EB-057 due to validation error: 1 validation error for CreateContact + Value error, Either name or organization must be provided. [type=value_error, input_value={'thing_id': 8, 'release_...ails': [], 'phones': []}, input_type=dict] + For further information visit https://errors.pydantic.dev/2.11/v/value_error +2025-09-30 11:21:07,915 [INFO ] transfer_contacts took 3.714991 seconds +2025-09-30 11:21:07,915 [INFO ] +2025-09-30 11:21:07,916 [INFO ] ********** TRANSFERRING LINK IDS ********** +2025-09-30 11:21:09,870 [INFO ] Processing PointID: DE-0219, Thing ID: 1, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:21:09,876 [INFO ] Processing PointID: EB-057, Thing ID: 8, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:21:09,881 [INFO ] Processing PointID: BW-0131, Thing ID: 5, AlternateSiteID=11S9E22.441, AlternateSiteID2=None +2025-09-30 11:21:09,882 [INFO ] adding link id: BW-0131 +2025-09-30 11:21:09,896 [INFO ] Processing PointID: EB-663, Thing ID: 9, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:21:09,902 [INFO ] Processing PointID: TO-0225, Thing ID: 3, AlternateSiteID=6N8E11.42, AlternateSiteID2=None +2025-09-30 11:21:09,902 [INFO ] adding link id: TO-0225 +2025-09-30 11:21:09,912 [INFO ] Processing PointID: UC-0100, Thing ID: 6, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:21:09,916 [INFO ] Processing PointID: QY-0274, Thing ID: 4, AlternateSiteID=11.31.19.333, AlternateSiteID2=None +2025-09-30 11:21:09,917 [INFO ] adding link id: QY-0274 +2025-09-30 11:21:09,926 [INFO ] Processing PointID: PC-037, Thing ID: 10, AlternateSiteID=PW-060, AlternateSiteID2=None +2025-09-30 11:21:09,926 [INFO ] adding link id: PC-037 +2025-09-30 11:21:09,935 [INFO ] Processing PointID: NM-26878, Thing ID: 2, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:21:09,940 [INFO ] Processing PointID: QY-0181, Thing ID: 7, AlternateSiteID=11.30.14.143b, AlternateSiteID2=None +2025-09-30 11:21:09,941 [INFO ] adding link id: QY-0181 +2025-09-30 11:21:09,948 [INFO ] transfer_link_ids took 2.032392 seconds +2025-09-30 11:21:11,515 [WARNING ] Both OSEWellID and OSEWelltagID are null for DE-0219 +2025-09-30 11:21:11,515 [WARNING ] Both OSEWellID and OSEWelltagID are null for NM-26878 +2025-09-30 11:21:11,516 [WARNING ] Both OSEWellID and OSEWelltagID are null for TO-0225 +2025-09-30 11:21:11,516 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0274 +2025-09-30 11:21:11,516 [WARNING ] Both OSEWellID and OSEWelltagID are null for BW-0131 +2025-09-30 11:21:11,519 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for UC-0100 +2025-09-30 11:21:11,519 [WARNING ] OSEWellTagID is null for UC-0100 +2025-09-30 11:21:11,522 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0181 +2025-09-30 11:21:11,526 [WARNING ] OSEWellTagID is null for EB-057 +2025-09-30 11:21:11,546 [WARNING ] OSEWellTagID is null for EB-663 +2025-09-30 11:21:11,555 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for PC-037 +2025-09-30 11:21:11,556 [WARNING ] OSEWellTagID is null for PC-037 +2025-09-30 11:21:11,558 [INFO ] transfer_link_ids_welldata took 1.609227 seconds +2025-09-30 11:21:11,558 [INFO ] +2025-09-30 11:21:11,558 [INFO ] ********** TRANSFERRING GROUPS ********** +2025-09-30 11:21:12,442 [INFO ] Adding 2 things to group La Cienega, prefix EB +2025-09-30 11:21:12,474 [INFO ] Adding 2 things to group Espanola Basin, prefix EB +2025-09-30 11:21:12,512 [INFO ] Adding 1 things to group Union County, prefix UC +2025-09-30 11:21:12,620 [INFO ] Adding 1 things to group New Mexico, prefix NM +2025-09-30 11:21:12,711 [INFO ] Adding 2 things to group Quay County, prefix QY +2025-09-30 11:21:12,735 [INFO ] Adding 1 things to group Brackish Water, prefix BW +2025-09-30 11:21:12,784 [INFO ] Adding 1 things to group Torrance County, prefix TO +2025-09-30 11:21:12,856 [INFO ] Adding 1 things to group Placitas, prefix PC +2025-09-30 11:21:13,008 [INFO ] Adding 1 things to group Delaware Basin, prefix DE +2025-09-30 11:21:13,033 [INFO ] Adding 1 things to group ABCWUA, prefix NM +2025-09-30 11:21:13,078 [INFO ] transfer_groups took 1.519745 seconds +2025-09-30 11:21:13,078 [INFO ] +2025-09-30 11:21:13,079 [INFO ] ********** TRANSFERRING WATER LEVELS ********** +2025-09-30 11:21:17,440 [INFO ] Valid Measuring Agencies: +2025-09-30 11:21:17,440 [INFO ] NMBGMR +2025-09-30 11:21:17,441 [INFO ] NMT +2025-09-30 11:21:17,441 [INFO ] NPS +2025-09-30 11:21:17,441 [INFO ] SNL +2025-09-30 11:21:17,441 [INFO ] TSWCD +2025-09-30 11:21:17,441 [INFO ] USFS +2025-09-30 11:21:17,444 [INFO ] Processing PointID: EB-663 +2025-09-30 11:21:17,452 [INFO ] Created field event: ID 1 | Date 2018-05-04 04:47:00+00:00 | Thing ID 9 | Thing Name EB-663. +2025-09-30 11:21:17,457 [INFO ] Created field activity: ID 1 | Type groundwater level. +2025-09-30 11:21:17,461 [INFO ] Created contact: ID 4 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR +2025-09-30 11:21:17,465 [INFO ] Created field event contact: ID 1 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR +2025-09-30 11:21:17,466 [INFO ] Created sample: ID None | Date 2018-05-04 04:47:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) +2025-09-30 11:21:17,466 [INFO ] Created observation: ID None | DT 2018-05-04 04:47:00+00:00 | Value 282.84 | MPHeight 2.79 +2025-09-30 11:21:17,492 [INFO ] Created field event: ID 2 | Date 2015-04-13 00:00:00+00:00 | Thing ID 9 | Thing Name EB-663. +2025-09-30 11:21:17,496 [INFO ] Created field activity: ID 2 | Type groundwater level. +2025-09-30 11:21:17,499 [INFO ] Created field event contact: ID 2 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR +2025-09-30 11:21:17,500 [INFO ] Created sample: ID None | Date 2015-04-13 00:00:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) +2025-09-30 11:21:17,500 [INFO ] Created observation: ID None | DT 2015-04-13 00:00:00+00:00 | Value 285.46 | MPHeight 2.79 +2025-09-30 11:21:17,518 [INFO ] transfer_water_levels took 4.439545 seconds +2025-09-30 11:21:17,518 [INFO ] transfer_all took 41.38597 seconds +2025-09-30 11:21:18,511 [INFO ] Uploaded log to gs://ocotillo/transfer_logs/transfer_2025-09-30T11h20m36s.log +2025-09-30 11:21:18,512 [INFO ] +2025-09-30 11:21:18,512 [INFO ] ********** END-------------------------------------- ********** diff --git a/transfer_2025-09-30T11h33m04s.log b/transfer_2025-09-30T11h33m04s.log new file mode 100644 index 000000000..7d64f6127 --- /dev/null +++ b/transfer_2025-09-30T11h33m04s.log @@ -0,0 +1,750 @@ +2025-09-30 11:33:04,318 [INFO ] +2025-09-30 11:33:04,318 [INFO ] ********** START-------------------------------------- ********** +2025-09-30 11:33:04,319 [INFO ] ********** STARTING TRANSFER ********** +2025-09-30 11:33:04,319 [INFO ] Erasing existing data and initializing lexicon and sensors +2025-09-30 11:33:04,319 [INFO ] Erasing existing data +2025-09-30 11:33:04,675 [INFO ] Recreating tables +2025-09-30 11:33:04,961 [INFO ] erase took 0.642332 seconds +2025-09-30 11:33:04,962 [INFO ] Initializing lexicon +2025-09-30 11:33:10,792 [INFO ] lexicon took 5.829925 seconds +2025-09-30 11:33:10,792 [INFO ] Initializing sensors +2025-09-30 11:33:10,800 [INFO ] sensor took 0.008076 seconds +2025-09-30 11:33:10,801 [INFO ] +2025-09-30 11:33:10,801 [INFO ] ********** TRANSFERRING WELLS ********** +2025-09-30 11:33:14,878 [INFO ] Valid WellData Datasources: +2025-09-30 11:33:14,878 [INFO ] (Author?), 1998, Geohydrology of River Bend Subdivision Taos County, New Mexico, Glorieta Geoscience, Inc. Appendix A. (Full report filed w/TV-121). +2025-09-30 11:33:14,878 [INFO ] 1) Author?, 1995, Town of Taos San Juan/Chama Diversion Proj., Phase 2, Vol. 1, Production Well & Observation Well Installation, Testing, and Determination of Aquifer Coefficients, GGI. 2) Water Level +2025-09-30 11:33:14,879 [INFO ] 1) Bernalillo County, Sara Chudnoff; 2) San Pedro Creek Estates HOA +2025-09-30 11:33:14,879 [INFO ] 1) BLM - Part of the Capitan Aquifer Observation-Well Network +2025-09-30 11:33:14,879 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 3) Sandia Report SAND2018-12018 NM Permian Basin +2025-09-30 11:33:14,879 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:33:14,879 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources +2025-09-30 11:33:14,880 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources 2) Pre-Design Groundwater Investigation at the Tailing Facil. ARCADIS +2025-09-30 11:33:14,880 [INFO ] 1) Drakos, P., Riesterer, J., Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, GGI (Filed w/TV-171). 2) Water Level Monitoring Prgm. +2025-09-30 11:33:14,880 [INFO ] 1) GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology; 2) USGS +2025-09-30 11:33:14,880 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) 3) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:33:14,880 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:33:14,880 [INFO ] 1) Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:33:14,881 [INFO ] 1) Sandia National Labs/ BLM Wells, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:33:14,881 [INFO ] 1) Turner, B., 1996, Water Availability for the El Mirador Subdvn, Taos Cty, NM, Turner Environ. Consult., Appd 2&3 (filed w/TV-229). 2) Vista del Valle report (filed w/TV-153). 3) Drakos, P. 2005, Ge +2025-09-30 11:33:14,881 [INFO ] 1) USGS - WL; 2) Brandvold - WQ +2025-09-30 11:33:14,881 [INFO ] 1) USGS - WLs 2) Brandvold -WQ +2025-09-30 11:33:14,881 [INFO ] 1) USGS - WLs 2) Brandvold -WQ, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:33:14,881 [INFO ] 1) USGS 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia National Labs SAND2018-12018 NM Permian Basin +2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) David Chace of Hydro Resolutions +2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) San Pedro Creek Estates HOA +2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) Sandia National Labs/ BLM Well, 3) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) Sandia National Labs/BLM Well +2025-09-30 11:33:14,882 [INFO ] 1) USGS and 2) Data from Lynn Brandvold with NMBGMR chemistry lab, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia Report SAND2018-12018 NM Permian Basin +2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR +2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia National Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia Natl. Lab Report SAND2018-12018 Water Resource Assessment in the NM Permian Basin. +2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) GW3: Geol. & Groundwater Res. of Eddy Cty. (1952) Hendrickson & Jones, NMBGMR, 4) SNL SAND2021-1869 +2025-09-30 11:33:14,884 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:33:14,884 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2021-1869 +2025-09-30 11:33:14,884 [INFO ] 1) Well depth and screen info. from spreadsheet from mayor of Questa. 2) Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis. +2025-09-30 11:33:14,884 [INFO ] AGW Consultants, 12/85, Geohydro of R.San Marcos Property; Balleau GWA, 1999; field check +2025-09-30 11:33:14,884 [INFO ] AGW Consultants, 12/85, Geohydrology of Rancho San Marcos +2025-09-30 11:33:14,884 [INFO ] AGW Consultants, May 1984, Hydrogeology of the Santa Fe Downs Resort Area Near Santa Fe, Santa Fe County, NM +2025-09-30 11:33:14,884 [INFO ] AGWC, Inc., 1983, Hydrogeology of the Great Cloud Zen Center, Oct 1983 +2025-09-30 11:33:14,884 [INFO ] Also see: Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. (Filed w/TV-103). +2025-09-30 11:33:14,885 [INFO ] American Ground Water Consultants, 1983, Hydrogeology of the Villa Marika Property, October 1983. +2025-09-30 11:33:14,885 [INFO ] AMP visited this well on 5/25/2022 but we didn't do a well inventory. +2025-09-30 11:33:14,885 [INFO ] ARCADIS Project B0046795.0019, Early Design Actions-Pre-Design Tailing Facility Groundwater Invest. Results from Monitoring Wells MW-43, MW-44 and MW-45 (May 1, 2015). +2025-09-30 11:33:14,885 [INFO ] ARCADIS well/lithologic log +2025-09-30 11:33:14,885 [INFO ] Author (?), 1998, Geohydrology of River Bend Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. Also in NMGS Gdbk 55 pg 396. +2025-09-30 11:33:14,885 [INFO ] Balleau Groundwater, 2001, CDEX1 Completion Report +2025-09-30 11:33:14,885 [INFO ] Balleau Groundwater, 2002, CDPROD1 Completion Report, 2/02 +2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., Oct 2007, Injection Demonstration Well -- Well Completion Report +2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well A -- Well Completion Report +2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well B -- Well Completion Report +2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., written communication, 11/27/2007 +2025-09-30 11:33:14,886 [INFO ] Balleau GW, 2002, CDPROD Completion Report; well log +2025-09-30 11:33:14,886 [INFO ] Balleau GWA, 1999; Balleau GWA +2025-09-30 11:33:14,887 [INFO ] Balleau GWA, 1999; field check +2025-09-30 11:33:14,887 [INFO ] Balleau GWA, 1999; field check; Jenkins, 1977, Geohydro Investigation of Turquoise Trail Subdivision +2025-09-30 11:33:14,887 [INFO ] Bjorklund, L.J. (1957) Reconnaissance of Groundwater Conditions in the Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:33:14,887 [INFO ] Black & Veatch Consulting Engineers, 1978, Construction and Testing Report Buckman Well No. 2; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 +2025-09-30 11:33:14,887 [INFO ] Black & Veatch Consulting Engrs, 1978, Construction and Testing Rept Buckman Well No. 1; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:33:14,887 [INFO ] Bob Hubbard +2025-09-30 11:33:14,887 [INFO ] Bureau scientists performed a pump test on this well. +2025-09-30 11:33:14,887 [INFO ] C. Borchert, written comm.; WATERS +2025-09-30 11:33:14,888 [INFO ] Carrol Wood, well owner. +2025-09-30 11:33:14,888 [INFO ] Cathie. +2025-09-30 11:33:14,888 [INFO ] CB00107524CCA +2025-09-30 11:33:14,888 [INFO ] CDM completion log to NMED SW Bureau +2025-09-30 11:33:14,888 [INFO ] CDM well completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau +2025-09-30 11:33:14,888 [INFO ] CH2M Hill report to NMED UST Bureau +2025-09-30 11:33:14,888 [INFO ] CH2M Hill water level measurements at WWTP (entered into db). +2025-09-30 11:33:14,888 [INFO ] Charles Heaton, Sinagua Consultants, 1999, Well Hydrology Report Elmer Garcia Property, Aug 1999; County Records; well log; field check +2025-09-30 11:33:14,889 [INFO ] Charles Walker +2025-09-30 11:33:14,889 [INFO ] Chemistry data from Lynn Brandvold with NMBGMR chemistry lab. NMBGMR visited the site after chem. data input. +2025-09-30 11:33:14,889 [INFO ] Chemistry from Matt Sophy +2025-09-30 11:33:14,889 [INFO ] Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:33:14,889 [INFO ] Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR +2025-09-30 11:33:14,889 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; CDM, Jan 2001 +2025-09-30 11:33:14,889 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:33:14,889 [INFO ] City of Santa Fe; OSE records; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:33:14,890 [INFO ] Claudia Borchert, 2002, MS Thesis +2025-09-30 11:33:14,890 [INFO ] Compiled by Susan VonGonten, NMED UST Bureau +2025-09-30 11:33:14,890 [INFO ] Consulting Professionals, Inc, Hydrogeologic Rept La Tierra Subdn, Phase 4, Santa Fe Cnty, Dec1978 +2025-09-30 11:33:14,890 [INFO ] Consulting Professionals, Inc., VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75; well log +2025-09-30 11:33:14,890 [INFO ] Cooper, 1991, Geohydro Rept for Country Boarding Kennel, 5/1991 +2025-09-30 11:33:14,890 [INFO ] Cooper, 1995, Garcia Ranch report; Wilson, 1978, SFC water plan Table 1-28; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis. +2025-09-30 11:33:14,890 [INFO ] Cooper, 1995, rept to Garcia Ranch; Kuckleman, 2003 +2025-09-30 11:33:14,890 [INFO ] Cooper, D. R., 1995, Geohydrology Report for Cottonwood Ranch Subdn, Santa Fe Cty, NM, April 1995 +2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., 1998, Geohydrology for WK Jones, Santa Fe Cnty, Oct 1998 +2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrologic Report for Rancho De Los Cuervos, Santa Fe Cnty, Sept1986; Berman Tract +2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Report for Frank M Gallegos & Andrew M Leyba, Santa Fe Cnty, Oct, 1999 +2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Report for Friendly Construction, Inc., Santa Fe Cnty, July 1994 +2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Report for Tano Vista Grande, Santa Fe Cnty, NM, Nov 1996 +2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Rept for Marvin Pollock & Bettina Lancaster, Santa Fe Cnty, May 1994 +2025-09-30 11:33:14,891 [INFO ] Cooper, D.R., Geohydrology Rept for El Prado Subdn, Santa Fe Cnty, Sept 1994 +2025-09-30 11:33:14,892 [INFO ] Cooper, D.R., Santa Fe Design Assoc, Geohydrology Rept for Rancho Oso Loco, Santa Fe Cnty, 1985 +2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology for Rancho De Los Ninos, Santa Fe Cnty, NM, April 1999; Rick Borrego +2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for Bob Shipp, Santa Fe County, NM, June 1995 +2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for Heartstone Development LLC, Dec 2001 +2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for James B. Alley Jr., Santa Fe Cnty, NM, March 1995 +2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for Lawrence Tuchman, Santa Fe Cnty, Oct 1994; Frost & Assoc., Santa Fe County WQ Monitoring, June 1996 +2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report For Los Suenos, Santa Fe County, NM, April 1994 +2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Rept for Jeffrey Jacobs & Thad Bowman, Santa Fe Cnty, Jan 1996 +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis R., July 1995, Analysis of water levels in wells on Garcia Ranch, unpub consult rept +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis R., July 1995, Unpub report to Garcia Ranch; well log; WATERS; USGS field notes +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, 1990, Geohydrology Report for San Juan Complex Partnership Ltd., Sept 1990; Field check by Johnson; well log; SFO files +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, 1993, Geohydrology Rept for Neighbors, Inc., Santa Fe Cnty, Dec 1993; well log Joe Briscoe +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, 2000, Geohydro Rept for Roybal Subdivision, Santa Fe Cnty, NM, Oct 2000; field check +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, Geohydrol Rept for Hacienda Del Cerezo, Santa Fe Cnty, NM, Jan 1994; well logs +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, Geohydrology Rept for B. Howard & J.Morris, Santa Fe Cnty, NM, Dec 1994 +2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis,1991, Geohydrology Rept for Sheila Cooper; field check by Johnson +2025-09-30 11:33:14,894 [INFO ] Cooper, Geohydro Report for Land Ventures, LLC, 6/2001; field check by Johnson; well log +2025-09-30 11:33:14,894 [INFO ] Cooper, Geohydrology Rept for Welsh Family Ltd Partnership, Santa Fe Cnty, March 1995 +2025-09-30 11:33:14,894 [INFO ] Corbin Consulting, Inc., 2005, Geohydrology Report (RG-27728-S) Longanecker Property. March 8, 2005 +2025-09-30 11:33:14,894 [INFO ] Corbin Consulting, Inc., 2005, Geo-Hydrology Report McMillan Subdivision, June 6, 2005 +2025-09-30 11:33:14,894 [INFO ] Corbin, J., 2004, Constant Property Geohydrology Report, Corbin Consulting Inc. June 3, 2004. Field checked. +2025-09-30 11:33:14,894 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005 (EB-618) +2025-09-30 11:33:14,894 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005; (EB-618) +2025-09-30 11:33:14,894 [INFO ] Corbin, James, 2005. +2025-09-30 11:33:14,895 [INFO ] County records; WATERS; drilling log +2025-09-30 11:33:14,895 [INFO ] County records; well log +2025-09-30 11:33:14,895 [INFO ] CT890 also at same site, cinfusing records not sure which well is correct, this one has a log +2025-09-30 11:33:14,895 [INFO ] Cuttings from NMBG. Bill White has cuttings. Geophysics: gamma ray, neutron, 3-arm-caliper, resistivitity, single pt resistance, SP, temperature profile +2025-09-30 11:33:14,895 [INFO ] Dames & Moore, Inc., 1995, Geohydroloy Report Komis Estates for Southwest Surveying Co., Inc., Dec. 1995; J. Corbin personal communication, 2005 +2025-09-30 11:33:14,895 [INFO ] Daniel B. Stephens & Associates report on Campbell Ranch subdivision wells +2025-09-30 11:33:14,895 [INFO ] Daniel B. Stevens & Associates consultant report (AMP\data\datasets\Campbell Ranch Bernalillo County) +2025-09-30 11:33:14,895 [INFO ] Darr, M.J., 2006, Geohydrologic Investigation Report: Proposed "Ocotillo" Subdivision, Taos County, NM. MJDarrconsult, Inc / Hydroscience Assoc. Inc, 2006, Analysis of Aquifer Test Run Using RG-87080 +2025-09-30 11:33:14,896 [INFO ] Darr, M.J., 2008, Geohydrologic Investigation Report: Proposed Los Llanos Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. +2025-09-30 11:33:14,896 [INFO ] Darr, Michael J., 2007, Geohydrologic Investigation Report: Proposed "Golf Country" Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. +2025-09-30 11:33:14,896 [INFO ] Data from Groundwater Report 2: Geology & Groundwater Resources of San Miguel County, NM. (1951) NMBGMR by R.L. Griggs and G.E. Hendrickson. +2025-09-30 11:33:14,896 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab. +2025-09-30 11:33:14,896 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab., OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:33:14,896 [INFO ] Data from owner well testing via NMBGMR water lab. +2025-09-30 11:33:14,896 [INFO ] David Chace of Hydro Resolutions +2025-09-30 11:33:14,896 [INFO ] David Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrolgoy of the Las Dos, Phase II Area, Santa Fe County, NM, October 1982 +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrologic Conditions at the San Juan Residences, Santa Fe Cnty, April 1982 +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; Steinberger log of R1 test hole, K.Summers files +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; WK Summers project files +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979 +2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; Mourant; Spiegel & Baldwin, p 241 +2025-09-30 11:33:14,898 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; WATERS +2025-09-30 11:33:14,898 [INFO ] David N. Jenkins, Geohydrologic Conditions at the Thorpe Condominiums, Santa Fe Cnty, Nov 1982 +2025-09-30 11:33:14,898 [INFO ] David Updegraff & William Lyons, 1978, Geohydrology of the Hyde Park Estates Unit 3 Subdiv'n, Aug 1978 +2025-09-30 11:33:14,898 [INFO ] DBStephens report to NMED UST Bureau +2025-09-30 11:33:14,898 [INFO ] depth made up by GCR based on nearby wells, no actual data +2025-09-30 11:33:14,898 [INFO ] depth made up by GCR, no actual data, assume similar to well K-14 (UC 30) +2025-09-30 11:33:14,898 [INFO ] Discussion of Geology, Hydrogeology, and Water Quality of the Tailings Area, Molycorp Facility, Taos County, NM, 1995, South Pass Resources, Inc. +2025-09-30 11:33:14,898 [INFO ] Drakos, P. & Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. Also, Water Level Monitoring Prgm. 2002-2 +2025-09-30 11:33:14,899 [INFO ] Drakos, P. and Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level +2025-09-30 11:33:14,899 [INFO ] Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. +2025-09-30 11:33:14,899 [INFO ] Drakos, P., et al., 2004, Hydrologic Characteristics of Basin-Fill Aquifers in the Southern San Luis Basin, NM, NMGS Guidebook 55, pg. 391. +2025-09-30 11:33:14,899 [INFO ] Drakos, P., Hodgins, M., 2000, Drilling & Testing Report, Bureau of Reclamation 2000-Ft. Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. 2) Water Level Monitoring Prgm. 2002-2007, GGI +2025-09-30 11:33:14,899 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. & Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Ft. Deep Nested Piezometer/Expl. Well (BOR-2) & 2100-Ft. Deep Production Well (BOR-3), Paseo del Canon We +2025-09-30 11:33:14,899 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. and Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR-2) & 2100-Feet Deep Production Well (BOR-3), Paseo de +2025-09-30 11:33:14,899 [INFO ] Drakos, P., Riesterer, J., and Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level Monitor +2025-09-30 11:33:14,899 [INFO ] Driller's log; OSE network WLs +2025-09-30 11:33:14,900 [INFO ] dubiousOSE match, depth and location are off +2025-09-30 11:33:14,900 [INFO ] Duncan, 2004. +2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; field check by Johnson 12-22-05 +2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; Frost, 1999, ElDorado Area Water & Sanitation District Project files +2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study +2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study. +2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; JSAI, 2001, App. #6 +2025-09-30 11:33:14,900 [INFO ] Exploratory & Shallow Well Drilling Rio Grande Watershed Study-Phase 1 San Acacia Surface Water/Groundwater Investigation (Dec. 5, 2003) S.S. Papadopulos & Associates for US Army Corps of Engineer +2025-09-30 11:33:14,901 [INFO ] Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94 +2025-09-30 11:33:14,901 [INFO ] Field check by Johnson +2025-09-30 11:33:14,901 [INFO ] Field check by Johnson, Cruz, Frost; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review +2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; Cooper, 1995, report to Garcia Ranch; Borton field notes +2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 2/14/2002 +2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 7/2/98 +2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; owner info +2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; WATERS +2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; WATERS; Mourant +2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; WATERS; sample site for Anderholm, 1994 USGS WRI Report 94-4078 +2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well log +2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well log; owner +2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well log; SFO files +2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well record +2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well/owner records +2025-09-30 11:33:14,903 [INFO ] Field check by Lyman +2025-09-30 11:33:14,903 [INFO ] Field check with Lyman and BLM realtor Hal Knox; plat map +2025-09-30 11:33:14,903 [INFO ] Field check, WATERS +2025-09-30 11:33:14,903 [INFO ] Field check; owner +2025-09-30 11:33:14,903 [INFO ] Field check; owner; well log +2025-09-30 11:33:14,903 [INFO ] Field check; WATERS +2025-09-30 11:33:14,903 [INFO ] Field check; WATERS. OSE Well Record. +2025-09-30 11:33:14,904 [INFO ] Field check; WATERS.OSE Well Record. +2025-09-30 11:33:14,904 [INFO ] Field check; well log +2025-09-30 11:33:14,904 [INFO ] Field check; well logg +2025-09-30 11:33:14,904 [INFO ] Field check; well record +2025-09-30 11:33:14,904 [INFO ] Field checked +2025-09-30 11:33:14,904 [INFO ] Field checked, WATERS +2025-09-30 11:33:14,904 [INFO ] Field checked, Well owners recollection of well info +2025-09-30 11:33:14,904 [INFO ] Field checked. WATERS. OSE Well Record. +2025-09-30 11:33:14,905 [INFO ] Field checked; WATERS +2025-09-30 11:33:14,905 [INFO ] Field checked; WATERS. OSE Well Record. +2025-09-30 11:33:14,905 [INFO ] Field checks; WATERS; well record. +2025-09-30 11:33:14,905 [INFO ] Finch & Petronis (JS&A), Sept. 2006, Hydrogeologic Report for the Galisteo Basin Preserve, Santa Fe County, NM, for Commonweal Conservancy, unpub. consultant report +2025-09-30 11:33:14,905 [INFO ] Finch, S.T., Jr., 2001, Hydrogeologic Evaluation of T-255 Et. Al., Near Carrizozo, New Mexico, John Shomaker & Associates, Inc. +2025-09-30 11:33:14,905 [INFO ] Finch, Steven T., and Melis, Erwin A., October 2008, Hydrogeologic evaluation of ground-water supply for the Spaceport America Site near Upham, NM, John Shomaker & Associates. +2025-09-30 11:33:14,905 [INFO ] Fleming, WM, Geohydrology Report for the Matthews Property, Santa Fe County, July 26, 1991 +2025-09-30 11:33:14,905 [INFO ] Foreman +2025-09-30 11:33:14,906 [INFO ] Frost MWB notes, 1994 +2025-09-30 11:33:14,906 [INFO ] Frost MWB Survey notes +2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe Cnty Ground Water Levels, 1995-96 Results; GWSI; USGS log books; well record +2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996 +2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; field check +2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Lewis database; NMED DWB (1999) via Jemez y Sangre Database (2000) +2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Mourant +2025-09-30 11:33:14,907 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnso +2025-09-30 11:33:14,907 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnson +2025-09-30 11:33:14,907 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; well record +2025-09-30 11:33:14,907 [INFO ] Frost, 1999; WATERS +2025-09-30 11:33:14,907 [INFO ] Frost, MWB Survey notes; D.Koning log review +2025-09-30 11:33:14,907 [INFO ] Full EPA ID #TB-B011-150811-21 +2025-09-30 11:33:14,907 [INFO ] Full EPA ID #TB-B023-150814-021 +2025-09-30 11:33:14,908 [INFO ] Full EPA ID #TD-D001-150812-21 +2025-09-30 11:33:14,908 [INFO ] Full EPA ID #TD-D003-150812-21 +2025-09-30 11:33:14,908 [INFO ] Garrabrant, L.A., 1993, Water resources of Taos County, NM: USGS WRIR 93-4107. +2025-09-30 11:33:14,908 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Cuttings archived in our core shed. +2025-09-30 11:33:14,908 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Pump test from driller (JSAI). Cuttings/chip boards archived in our core shed. +2025-09-30 11:33:14,908 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons +2025-09-30 11:33:14,908 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons; map +2025-09-30 11:33:14,908 [INFO ] Geohydrology Assoc., Inc. lithologic log to NMED SW Bureau; field check by Johnson +2025-09-30 11:33:14,909 [INFO ] Geohydrology Assoc., Inc., 1988, Hydrogeologic Investigation of Cottonwood Estates, 2//88; WATERS +2025-09-30 11:33:14,909 [INFO ] Geophysics: dual induction guard, dual spaced neutron,microlog, high-resol temp log. WQ: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. +2025-09-30 11:33:14,909 [INFO ] GGI +2025-09-30 11:33:14,909 [INFO ] GGI report (has WQ sample). Requested from P. Drakos; have not received response. +2025-09-30 11:33:14,909 [INFO ] GGI report for NMED UST Bureau +2025-09-30 11:33:14,909 [INFO ] GGI report to NMED UST Bureau +2025-09-30 11:33:14,909 [INFO ] GGI reports: 1) 2001 report on RP-2500 in Town of Taos, 2) Water Level Monitoring +2025-09-30 11:33:14,909 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, NM,3/19/92; Sangre de Cristo Estates rept +2025-09-30 11:33:14,910 [INFO ] GGI, 100-Yr Water Availability Santa Fe Metro Center, 12/01; AND La Cienega de Santa Fe Proj, 10/91 +2025-09-30 11:33:14,910 [INFO ] GGI, 1988, Geohydrology of the Picture Rock Development Co. Property, Santa Fe, May, 1988. +2025-09-30 11:33:14,910 [INFO ] GGI, 1989, Geohydrology of the Baird Joint Venture Property, Taos County, NM, Glorieta Geoscience, Inc. +2025-09-30 11:33:14,910 [INFO ] GGI, 1989, Reconnaissance Geohydrology of the Lumpkins Property, Santa Fe County, NM, August 1989 +2025-09-30 11:33:14,910 [INFO ] GGI, 1990, Geohydrology of the Bajo Del Cielo Subdivision, Santa Fe County, NM. Dec. 1990 +2025-09-30 11:33:14,910 [INFO ] GGI, 1990, Geohydrology of the Beaver and Henry Properties, Santa Fe Cnty, Aug 1990 +2025-09-30 11:33:14,910 [INFO ] GGI, 1991, Geohydrology of the Walker Property, Santa Fe, May, 1991. +2025-09-30 11:33:14,910 [INFO ] GGI, 1995, Geohydrology of the Santa Fe Opera Tract Prop, Santa Fe Cnty, 3/95; G.Ellis; well log +2025-09-30 11:33:14,911 [INFO ] GGI, 1995, Geohydrology of the Vereda Serena Property, Santa Fe, October, 1995. +2025-09-30 11:33:14,911 [INFO ] GGI, 1995, Production well and observation well installation, testing, and determination of aquifer coefficients: unpub consultant report for Town of Taos, March 1995 +2025-09-30 11:33:14,911 [INFO ] GGI, 1998, Ground Water Conditions in the Vicinity of the Gonzales Tract San Marcos Arroyo Santa Fe County, NM, Dec. 1998 +2025-09-30 11:33:14,911 [INFO ] GGI, 2001, Geohydrologic report for the Village at Eldorado, July, 2001. +2025-09-30 11:33:14,911 [INFO ] GGI, 2001, Vista del Valle Subdivision Report, Taos County, New Mexico +2025-09-30 11:33:14,911 [INFO ] GGI, 2002, Addendum To: Reconnaissance Geohydrologic Characterization of Tesuque Ridge, 8/28/2002 +2025-09-30 11:33:14,911 [INFO ] GGI, 2002, Reconnaissance Geohydrologic Characterization of Tesuque Ridge Subdivn, 7/17/02 +2025-09-30 11:33:14,911 [INFO ] GGI, 2003, Geohydrologic Report for the Luna Rosa LLC Equestrian Center Property, July 2003. +2025-09-30 11:33:14,912 [INFO ] GGI, 2003, Reconnaissance Geohydrology report of the Clements Property, Santa Fe, April, 2003. +2025-09-30 11:33:14,912 [INFO ] GGI, 2003, Reconnaissance Water Availability Assessment of the Santa Fe Waldorf School - High School +2025-09-30 11:33:14,912 [INFO ] GGI, 2004, Geohydrology of the Estancia Subdivision, Santa Fe County, December, 2004 +2025-09-30 11:33:14,912 [INFO ] GGI, 2004, Reconnaissance Geohydrology Report for the Beaty Property, Santa Fe Cty, Dec. 22, 2004. +2025-09-30 11:33:14,912 [INFO ] GGI, Chapter VI Geohydrology of the La Cienega de Santa Fe Project, Oct 1991; GGI, 100-Yr Water Availability, Downs at Santa Fe, March 2001 for Pojoaque Pueblo Development Corp +2025-09-30 11:33:14,912 [INFO ] GGI, Geohydro of Naiche Property, 12/92; field check by Johnson; well recd +2025-09-30 11:33:14,912 [INFO ] GGI, Geohydrologic report for the Rancho San Lucas Subdivision, Feb 2002 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of La Canada Subdivision, Santa Fe County, NM, July 1985 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of Pop's Convenience Store, Santa Fe County, NM, Sept 29, 1997 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Brenner Property, Santa Fe County, NM, Aug 1990 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Bryant Prop, Santa Fe Cnty, May 1995; GGI, San Ysidro de Tesuque, May 1990 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Bryant Property, Santa Fe County, NM, May 1995; GGI, 1989 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Circle Drive Compound Prop, Santa Fe Cnty, May 1991 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Hansen Property, Santa Fe County, NM, June 1990 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Insight Investments Property, Santa Fe Cnty, NM, 2/20/90 +2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Lane Property, Santa Fe Cnty, NM, 4/29/92 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the McElvain/Patania Property, 6/92 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990; GGI, Geohydrology of the Santa Fe Arroyo Hondo Vistas Subdivision, SFe County, Aug. 1989 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Migel Property, Santa Fe Cnty, 2/90; GGI, Geohydro of McMahon Prop 10/90 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Mountain Vista Subdivision, Santa Fe County, July 10, 2002 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Myers Property, Santa Fe Cnty, July 1992 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Naiche Property, Santa Fe County, NM, Dec 1992 +2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Prince Property, 8/91; McElvain-Patania Prop, 6/92 +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Santa Fe Animal Shelter Site, Santa Fe County, NM, May 15, 2002 +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Santa Fe Opera Tr, Santa Fe Cnty, 3/95; GGI, San Ysidro de Tesuque, 5/90 +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Shulman Property, Santa Fe Cnty, April 1990 +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Vrtiak Property, Santa Fe Cnty, June, 1991 +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the West Alameda Proj, Santa Fe Cnty, NM, Jan 1989 +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, March 19, 1992 +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct 14, 1994; GGI, Bryant Prop; WATERS +2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct, 1994; GGI, Sangre de Cr Est, Jan 1989 +2025-09-30 11:33:14,916 [INFO ] GGI, Geohydrology Rept for Rancho San Lucas, Santa Fe Cnty, NM, Feb 2002; Geophysical logs +2025-09-30 11:33:14,916 [INFO ] GGI, January 2005 Alexsis Geohydrology report (by Meghan Hodgins). +2025-09-30 11:33:14,916 [INFO ] GGI, Reconnaissance Geohydrology Report, Leibman Property, Santa Fe County, NM. March 23, 1994 +2025-09-30 11:33:14,916 [INFO ] GGI, Reconnaissance Geohydrology Report, Neufeld Property, Santa Fe Cnty, Nov 1988 +2025-09-30 11:33:14,916 [INFO ] Glorieta Geoscience Inc. +2025-09-30 11:33:14,916 [INFO ] Glorieta Geoscience, Inc., 2006, Geohydrology and Water Availability for Phase 1, Santa Fe Canyon Ranch Subdivision, Santa Fe County, NM, March 22, 2006. +2025-09-30 11:33:14,916 [INFO ] GW-1: Geology & Ground-Water Resources of the Eastern Part of Colfax Cty, NM (1948) Griggs, Roy L., NMBGMR +2025-09-30 11:33:14,916 [INFO ] GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology +2025-09-30 11:33:14,917 [INFO ] GW-4: Geology & Groundwater Res. of NE Socorro Cty, NM (1955) Spiegel, Zane, NM Bureau of Geology +2025-09-30 11:33:14,917 [INFO ] GW5: Geology and Ground-Water Resources of Torrance County, NM (1957) R.E. Smith, NM Bureau of Geology +2025-09-30 11:33:14,917 [INFO ] GW9: Groundwater Resources & Geology of Quay County, NM (1966) Charles Berkstresser, Jr. & Walter A. Mourant, NM Bureau of Geology +2025-09-30 11:33:14,917 [INFO ] GWSI +2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; field check by Johnson +2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; field check by Johnson; D.Koning log review +2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; OFR 89-37; field check by Johnson; D.Koning log review +2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; WATERS +2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; WATERS; Cooper, 1995; field check by Johnson +2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; WATERS; field check by Johnson +2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson +2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson. +2025-09-30 11:33:14,918 [INFO ] GWSI; D.Koning log review +2025-09-30 11:33:14,918 [INFO ] GWSI; D.Koning log review; D.Koning log review +2025-09-30 11:33:14,918 [INFO ] GWSI; field check by Johnson +2025-09-30 11:33:14,919 [INFO ] GWSI; field check by Johnson; D.Koning log review +2025-09-30 11:33:14,919 [INFO ] GWSI; field check Johnson +2025-09-30 11:33:14,919 [INFO ] GWSI; Mourant; well record; field check by Johnson +2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log books; field check by Johnson +2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log sheets; field check by Johnson; field check by Lyman and SFC Utilities +2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log sheets; well log; field check by Johnson +2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson +2025-09-30 11:33:14,920 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson; field check by Lyman and SFC Utilities +2025-09-30 11:33:14,920 [INFO ] GWSI; USGS logbooks; field check by Johnson +2025-09-30 11:33:14,920 [INFO ] GWSI; USGS logbooks; Frost, 1996, Santa Fe County GWLs, 1995-96 Results, 1/96; K.Summers notes from 11/16/70 aquifer test; Frost, 1999, written comm. +2025-09-30 11:33:14,920 [INFO ] GWSI; USGS well sheet; field check by Johnson +2025-09-30 11:33:14,920 [INFO ] GWSI; USGS well sheet; well log; Johnson, 2003; VeneKlasen, 2/86, Geohydro Rept Arroyo Hondo West +2025-09-30 11:33:14,920 [INFO ] GWSI; USGS well sheets; field check by Johnson +2025-09-30 11:33:14,920 [INFO ] GWSI; water right declaration; field check by Johnson +2025-09-30 11:33:14,920 [INFO ] GWSI; water right declaration; field check Johnson; Aqua Drilling well log. WQ from Longmire +2025-09-30 11:33:14,921 [INFO ] GWSI; WATERS +2025-09-30 11:33:14,921 [INFO ] GWSI; well log; field check by Johnson +2025-09-30 11:33:14,921 [INFO ] GWSI; well record; field check by Johnson +2025-09-30 11:33:14,921 [INFO ] Hall, J., 2010, Blackstone Ranch Well RG-82913 48-hr Pumping Test, Taos, NM, GGI. +2025-09-30 11:33:14,921 [INFO ] Heaton (Sinagua Consultants), Well Hydro Report Capitol Ford Body Shop, Jan 1999 +2025-09-30 11:33:14,921 [INFO ] Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. +2025-09-30 11:33:14,921 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601 +2025-09-30 11:33:14,921 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8 +2025-09-30 11:33:14,922 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:33:14,922 [INFO ] HR-1: Geology & Ground-Water Resources of Central & Western Dona Ana County, NM (1971) King, W.E., Hawley, J.W., Taylor, A.M. and Wilson, R.P. New Mexico Bureau of Geology +2025-09-30 11:33:14,922 [INFO ] HR5: Groundwater in the Sandia and Northern Manzano Mtns, NM (1980) Frank B. Titus, NM Bureau of Geology +2025-09-30 11:33:14,922 [INFO ] Huff, G.F. (1996) Analysis of Ground-water data for selected wells near Holloman AFB, NM, 1950-1995. USGS WRIR-96-4116. +2025-09-30 11:33:14,922 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, 1988. +2025-09-30 11:33:14,922 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, March 17, 1988. +2025-09-30 11:33:14,922 [INFO ] Hydrologic and hydrogeologic analysis for the Guadalupe Mtn. ground-water discharge plan. June 1984, Water Resources Associates, Inc. +2025-09-30 11:33:14,923 [INFO ] Hydroscience Associates, Inc., 2006, Analysis of Aquifer Test Run Using Well RG-87082, Taos County, New Mexico. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:33:14,923 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:33:14,923 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) +2025-09-30 11:33:14,923 [INFO ] Information as personal communication from GGI +2025-09-30 11:33:14,923 [INFO ] Inventoried previously on 4/21/2015 as part of Clovis-Portales project +2025-09-30 11:33:14,923 [INFO ] Inventoried previously on 6/2/2015 as part of Clovis-Portales project +2025-09-30 11:33:14,923 [INFO ] J. Corbin, 2007 written communication +2025-09-30 11:33:14,923 [INFO ] J. Corbin, 2007, written communication +2025-09-30 11:33:14,924 [INFO ] J.Frost, 1999; WATERS +2025-09-30 11:33:14,924 [INFO ] Jemez y Sangre (2000); NMED DWB Info Sheet; WATERS +2025-09-30 11:33:14,924 [INFO ] Jenkins, 1979, Geohydrology of the Vista Subdivn, 12/79; C.A. Coonce & Assoc., 1977, Montoya Subdivn Water Availability Study for Cipriano Martinez, 12/77 +2025-09-30 11:33:14,924 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate +2025-09-30 11:33:14,924 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate. also Jenkins, Dec 1979, Geohydrology of the Vista Subdivision +2025-09-30 11:33:14,924 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978 +2025-09-30 11:33:14,924 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978. OSE Well Record. +2025-09-30 11:33:14,924 [INFO ] Jenkins, David,- Geohydrologic Investigation of the Turquoise Trail Subdivision, SF Cnty, July 1977 +2025-09-30 11:33:14,925 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn +2025-09-30 11:33:14,925 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn; Corbin Consulting, Inc., Mar 8, 2005, Geohydrology Report Longanecker Property +2025-09-30 11:33:14,925 [INFO ] JHA, May 2004, Well Report Buckman Wells No. 10-13, City of Santa Fe +2025-09-30 11:33:14,925 [INFO ] John Shomaker & Assoc., April 1995, Well report Sangre de Cristo Water Company Buckman Well No. 3a; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09, written comm. +2025-09-30 11:33:14,925 [INFO ] John Shomaker & Assoc, 1999, Well Report: Drilling, Construction, & Testing Hickox Well No. 2, 5/99; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning review +2025-09-30 11:33:14,925 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR +2025-09-30 11:33:14,925 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR. +2025-09-30 11:33:14,926 [INFO ] JSA completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau +2025-09-30 11:33:14,926 [INFO ] JSAI Well report for Proposed Desalination Well Field, City of Alamogordo, NM. June 2006. +2025-09-30 11:33:14,926 [INFO ] Kendall Taylor +2025-09-30 11:33:14,926 [INFO ] Kendall Taylor and drill log +2025-09-30 11:33:14,926 [INFO ] Kendall Taylor; OSE well log +2025-09-30 11:33:14,926 [INFO ] L. Sherson @ USGS determined that all but one water level taken by contractors for OSE at 334819108084801 were really taken from this location 334819108084601. Level on 9/25/2008 was at *4801 NM-15416 +2025-09-30 11:33:14,926 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:33:14,926 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). Part of OSE network, so thought it would have been in their system already. +2025-09-30 11:33:14,927 [INFO ] Lewis database of city wells; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis +2025-09-30 11:33:14,927 [INFO ] Lewis database, 2001; Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94; Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98 +2025-09-30 11:33:14,927 [INFO ] Lithlog personal communication w/GGI. +2025-09-30 11:33:14,927 [INFO ] local individuals: Layne Preslar, Bob Hubbard +2025-09-30 11:33:14,927 [INFO ] Longmire, Patrick, July 1985, Hydrogeochemical Study Along the Santa Fe River; field check +2025-09-30 11:33:14,927 [INFO ] Longmire, Patrick, July 1985. A Hydrogeochemical Study Along the Valley of the Santa Fe River +2025-09-30 11:33:14,927 [INFO ] Lou Wilkerson +2025-09-30 11:33:14,928 [INFO ] Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018 +2025-09-30 11:33:14,928 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. +2025-09-30 11:33:14,928 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. References additional well tests by M.J. Darr. +2025-09-30 11:33:14,928 [INFO ] Mark Defibaugh +2025-09-30 11:33:14,928 [INFO ] Martinez Surveying Co., [Hydrogeologic Report for] Miller Subdivision, Jan 1984 +2025-09-30 11:33:14,928 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multi +2025-09-30 11:33:14,928 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multip +2025-09-30 11:33:14,928 [INFO ] McLean, J.S. (1970) Saline Ground-Water Resources of the Tularosa Basin, NM. Office of Saline Water, R&D Progress Rpt 561 +2025-09-30 11:33:14,929 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:33:14,929 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 (1980 water level) +2025-09-30 11:33:14,929 [INFO ] MJ Darr (July 2006) Pump Test of WL-0007. +2025-09-30 11:33:14,929 [INFO ] Mourant; GWSI; field check by Johnson; USGS well schedules +2025-09-30 11:33:14,929 [INFO ] Mourant; GWSI; field check by Johnson; well log. +2025-09-30 11:33:14,929 [INFO ] MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources +2025-09-30 11:33:14,929 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:33:14,930 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron/Socorro/Sierra Cty, NM, USGS WRI 94-4125 +2025-09-30 11:33:14,930 [INFO ] NA03200901BBB +2025-09-30 11:33:14,930 [INFO ] NA03200912ACC +2025-09-30 11:33:14,930 [INFO ] NA03201066BBB +2025-09-30 11:33:14,930 [INFO ] NA03300814CCC +2025-09-30 11:33:14,930 [INFO ] NA03300914CCC +2025-09-30 11:33:14,930 [INFO ] NA03300921CCC +2025-09-30 11:33:14,931 [INFO ] NA03300922ACC +2025-09-30 11:33:14,931 [INFO ] NA03300933CAB +2025-09-30 11:33:14,931 [INFO ] NA03300933CAB2 +2025-09-30 11:33:14,931 [INFO ] NA03300935DBB +2025-09-30 11:33:14,931 [INFO ] NA03300936DBB +2025-09-30 11:33:14,931 [INFO ] NA03301014DDD +2025-09-30 11:33:14,931 [INFO ] NA03301019CCD +2025-09-30 11:33:14,931 [INFO ] NA03301020CCB +2025-09-30 11:33:14,932 [INFO ] NMBG +2025-09-30 11:33:14,932 [INFO ] NMBGMR +2025-09-30 11:33:14,932 [INFO ] NMBGMR & USGS +2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; Camp Dresser & McKee, Jan. 2000, +2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); OSE 2005 WL field sheets; WATERS +2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS. OSE Well Record. +2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; J. Corbin, written communication, 2007 +2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project files; JSAI, 2001,App. #6 +2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; JSAI (2001) App. #6 +2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; Minton log and pump test; JS&A, 2001 well log and water levels +2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; Summer's project files; Minton log; Frost, 1996, Review of El Dorado area water production and GW resource, June '96; JSAI, 2001, App. #6 +2025-09-30 11:33:14,933 [INFO ] NMED Solid Waste Bureau monitoring reports. +2025-09-30 11:33:14,933 [INFO ] NMED Spring Survey and Monitor Well Survey +2025-09-30 11:33:14,934 [INFO ] NMED SW Bureau data report, URS Corp.; written communications from NMED SolidWaste Bureau +2025-09-30 11:33:14,934 [INFO ] NMED SWP Atlas online +2025-09-30 11:33:14,934 [INFO ] NMOSE POD only +2025-09-30 11:33:14,934 [INFO ] NMOSE Well log +2025-09-30 11:33:14,934 [INFO ] No well inventory form for this site. Just coordinates, photo and well log. +2025-09-30 11:33:14,934 [INFO ] NRCS Well development document (Excel spreadsheet) +2025-09-30 11:33:14,934 [INFO ] OCD AP-100 report by Conestoga-Rovers & Associates +2025-09-30 11:33:14,934 [INFO ] OCD AP-101 Report by Arcadis U.S. Inc. +2025-09-30 11:33:14,935 [INFO ] OCD AP-104 Report by Conestoga-Rovers and Associates +2025-09-30 11:33:14,935 [INFO ] OCD AP-105 Report by GHD +2025-09-30 11:33:14,935 [INFO ] OCD AP-107 Report by Arcadis U.S. Inc +2025-09-30 11:33:14,935 [INFO ] OCD AP-112 Report by Larson & Associates, Inc. +2025-09-30 11:33:14,935 [INFO ] OCD AP-114 Report by Tasman Geosciences +2025-09-30 11:33:14,935 [INFO ] OCD AP-115 Report by Conestoga-Rovers and Associates +2025-09-30 11:33:14,935 [INFO ] OCD AP-118 Report by GHD +2025-09-30 11:33:14,936 [INFO ] OCD AP-120 Report by GHD Services Inc. +2025-09-30 11:33:14,936 [INFO ] OCD AP-56 Report by GHD +2025-09-30 11:33:14,936 [INFO ] OCD AP-62 Report by R.T. Hicks Consultants, Ltd +2025-09-30 11:33:14,936 [INFO ] OCD AP-71 Report by Rice Operating Company +2025-09-30 11:33:14,936 [INFO ] OCD AP-73 Report by Enviro Clean Cardinal LLC +2025-09-30 11:33:14,936 [INFO ] OCD AP-75 Report by Rice Environmental Consulting & Safety, LLC +2025-09-30 11:33:14,936 [INFO ] OCD AP-87 Report by by Tetra Tech +2025-09-30 11:33:14,937 [INFO ] OCD AP-88 Report by Tetra Tech +2025-09-30 11:33:14,937 [INFO ] OCD AP-91 Report by Talon/LPE +2025-09-30 11:33:14,937 [INFO ] OCD AP-94 Report by Tetra Tech +2025-09-30 11:33:14,937 [INFO ] OCD AP-95 report by Tetra Tech +2025-09-30 11:33:14,937 [INFO ] OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:33:14,937 [INFO ] OFR-51: Hydrogeology of the San Agustin Plains, NM (1973) Blodgett, Daniel D. and Titus, Frank B., NMBGMR +2025-09-30 11:33:14,937 [INFO ] Onwer +2025-09-30 11:33:14,938 [INFO ] Original data and chemistry from Lynn Brandvold with NMBGMR chemistry lab. We visited site in July 2015 took GPS location and found well record. +2025-09-30 11:33:14,938 [INFO ] OSE +2025-09-30 11:33:14,938 [INFO ] OSE and Foreman. +2025-09-30 11:33:14,938 [INFO ] OSE database. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). +2025-09-30 11:33:14,938 [INFO ] OSE field notes +2025-09-30 11:33:14,938 [INFO ] OSE field sheet +2025-09-30 11:33:14,938 [INFO ] OSE macth doubtful, usgs depth is much different, 311 vs 375 +2025-09-30 11:33:14,939 [INFO ] OSE POD record +2025-09-30 11:33:14,939 [INFO ] OSE POD record. +2025-09-30 11:33:14,939 [INFO ] OSE Record and owner recollection +2025-09-30 11:33:14,939 [INFO ] OSE records +2025-09-30 11:33:14,939 [INFO ] OSE records and owner recollection. +2025-09-30 11:33:14,939 [INFO ] OSE records and well owner records. +2025-09-30 11:33:14,939 [INFO ] OSE records online. +2025-09-30 11:33:14,940 [INFO ] OSE Records, some info from well owner +2025-09-30 11:33:14,940 [INFO ] OSE Records, well owner provided info. +2025-09-30 11:33:14,940 [INFO ] OSE Records, well owner recollection. +2025-09-30 11:33:14,940 [INFO ] OSE Records. +2025-09-30 11:33:14,940 [INFO ] OSE Records. Gary Goss at TWSD. +2025-09-30 11:33:14,940 [INFO ] OSE records. PN031 may not be it. Well is very old. +2025-09-30 11:33:14,940 [INFO ] OSE WATERS site +2025-09-30 11:33:14,941 [INFO ] OSE website +2025-09-30 11:33:14,941 [INFO ] OSE website info, no well record. Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:33:14,941 [INFO ] OSE website, no well record. +2025-09-30 11:33:14,941 [INFO ] OSE website, no well record. Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:33:14,941 [INFO ] OSE website, well record available at OSE office. +2025-09-30 11:33:14,941 [INFO ] OSE website, well record maybe available at OSE office. +2025-09-30 11:33:14,941 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 +2025-09-30 11:33:14,942 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09 +2025-09-30 11:33:14,942 [INFO ] OSE well log. Some data from USGS. Overlapping site data. +2025-09-30 11:33:14,942 [INFO ] OSE Well record +2025-09-30 11:33:14,942 [INFO ] OSE well record and owner +2025-09-30 11:33:14,942 [INFO ] OSE well record and owner info +2025-09-30 11:33:14,942 [INFO ] OSE well record and site visit +2025-09-30 11:33:14,942 [INFO ] OSE Well Record and well owner +2025-09-30 11:33:14,942 [INFO ] OSE well record. +2025-09-30 11:33:14,943 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:33:14,943 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project file and Sandia Drilling well log +2025-09-30 11:33:14,943 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS +2025-09-30 11:33:14,943 [INFO ] Owner +2025-09-30 11:33:14,943 [INFO ] Owner - well dirlled in 60s. +2025-09-30 11:33:14,943 [INFO ] owner - well drilled by father, using septic auger. +2025-09-30 11:33:14,943 [INFO ] Owner - well drilled in 50's. owner has some records. +2025-09-30 11:33:14,944 [INFO ] Owner and OSE record +2025-09-30 11:33:14,944 [INFO ] Owner and OSE site. +2025-09-30 11:33:14,944 [INFO ] Owner and OSE well record. +2025-09-30 11:33:14,944 [INFO ] Owner and well record. +2025-09-30 11:33:14,944 [INFO ] Owner field check; WATERS +2025-09-30 11:33:14,944 [INFO ] Owner recollection +2025-09-30 11:33:14,944 [INFO ] Owner recollection and limited OSE records. +2025-09-30 11:33:14,944 [INFO ] Owner recollection and OSE POD record. +2025-09-30 11:33:14,945 [INFO ] Owner recollection of well depth and water level +2025-09-30 11:33:14,945 [INFO ] Owner recollection. +2025-09-30 11:33:14,945 [INFO ] Owner recollection; OSE Records +2025-09-30 11:33:14,945 [INFO ] Owner. +2025-09-30 11:33:14,945 [INFO ] Owner. OSE well records +2025-09-30 11:33:14,945 [INFO ] P. Drakos, et al., 2004, Chemical & Isotopic Constraints on Source-Waters and Connectivity of Basin-Fill Aquifers in the Southern San Luis Basin, NM. NMGS Guidebook 55, pg 405. +2025-09-30 11:33:14,945 [INFO ] PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM +2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID # S264) +2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S037) +2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S040) +2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S101) +2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S146) +2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S164) +2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S220) +2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S265) +2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. +2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al., 2004 Geochem. Characterization of Grd-water Flow in the Santa Fe Grp Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. +2025-09-30 11:33:14,947 [INFO ] Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis +2025-09-30 11:33:14,947 [INFO ] Pretty certain C011 is Burns EPA sample. +2025-09-30 11:33:14,947 [INFO ] Prindle-Hinds well completion log to NMED SW Bureau +2025-09-30 11:33:14,947 [INFO ] Pump test performed as noted in Meyers report. USGS WRI 94-4125 +2025-09-30 11:33:14,948 [INFO ] Ranch foreman. +2025-09-30 11:33:14,948 [INFO ] Rankin, Dale, 2005, Personal Communication USGS Well Drilling Reports +2025-09-30 11:33:14,948 [INFO ] Reardon et al. (2021) Addendum to Water Res. Assessment NM Permian Basin SAND2021-1869 +2025-09-30 11:33:14,948 [INFO ] Reardon, et al. (2021) Addendum to Water Res. Assessment in NM Permian Basin. SAND2021-1869. +2025-09-30 11:33:14,948 [INFO ] RGDSSP12 +2025-09-30 11:33:14,948 [INFO ] Romero +2025-09-30 11:33:14,948 [INFO ] San Pedro Creek Estates HOA +2025-09-30 11:33:14,949 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files +2025-09-30 11:33:14,949 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files; DKoning cutting review +2025-09-30 11:33:14,949 [INFO ] Sandia National Labs/ BLM Wells +2025-09-30 11:33:14,949 [INFO ] Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin +2025-09-30 11:33:14,949 [INFO ] Sangre de Cristo/OSE, WATERS, Borchert report, Watson and Rappuhn/Shomaker & Assoc., 4/99, WellReport: Drilling, Construction and Testing, City of Santa Fe Northwest Area Test Well; D.Koning review +2025-09-30 11:33:14,949 [INFO ] Santa Fe County records; well log; field check +2025-09-30 11:33:14,949 [INFO ] Santa Fe County Utilities field notes; +2025-09-30 11:33:14,950 [INFO ] SECOR report to NMED UST Bureau +2025-09-30 11:33:14,950 [INFO ] Shoemaker & Fleming, MWB Survey, 1990; Mourant, 1980 +2025-09-30 11:33:14,950 [INFO ] Shomaker & Associates, 2004, Well Report Buckman Wells No. 10-13 City of Santa Fe, New Mexico, May 2004; C. Borchert, written communication, 3/23/09 +2025-09-30 11:33:14,950 [INFO ] Shomaker & Associates, April 2003, Well Report: Drilling, Construction, and Testing of SF Buckman 9; C. Borchert, written communication, 3/23/09 +2025-09-30 11:33:14,950 [INFO ] Site check; well record +2025-09-30 11:33:14,950 [INFO ] Site visit by Johnson during drilling; drillers report; J. Corbin, written communication, 2007 +2025-09-30 11:33:14,950 [INFO ] Slinglerland & Borton, Geohydro of Avanti Business Park, 8/85 (App F to GGI, Santa Fe Metro, 12/01); lithologic log by GGI, review by D.Koning +2025-09-30 11:33:14,950 [INFO ] SNL report for manual water level and water quality +2025-09-30 11:33:14,951 [INFO ] Some chemistry from EPA via NM Health Dept. +2025-09-30 11:33:14,951 [INFO ] Some data from USGS. Overlapping site data. +2025-09-30 11:33:14,951 [INFO ] Some data from USGS. Overlapping site data. Aquifer type from USGS. +2025-09-30 11:33:14,951 [INFO ] Some data from USGS. Overlapping site data. Formation pick from USGS. +2025-09-30 11:33:14,951 [INFO ] Some limited WQ measurements at well and nearby stream. Filed. Not entered. +2025-09-30 11:33:14,951 [INFO ] Some water levels from USGS +2025-09-30 11:33:14,952 [INFO ] Some WL's from Lee Foster Well Services +2025-09-30 11:33:14,952 [INFO ] Some WLs from USGS & Dames and Moore (4/11/1986). Some WQ from Vail Engineering (Sept. 1993). +2025-09-30 11:33:14,952 [INFO ] Souder-Miller & Assoc., 1995, Unpublished Consultant's Report, Fig 2, well completion diagram +2025-09-30 11:33:14,952 [INFO ] Source data for some chemistry for this location is from the US EPA. +2025-09-30 11:33:14,952 [INFO ] Source data for this location is from the US EPA & NMED water quality. +2025-09-30 11:33:14,952 [INFO ] Source data for this location is from the US EPA. +2025-09-30 11:33:14,952 [INFO ] T.Decker, written comm., 2000 (letter to B.McLean "Testing - EUI Well #15", 2/25/2000); +2025-09-30 11:33:14,952 [INFO ] Taos Soil & Water Concervation District +2025-09-30 11:33:14,953 [INFO ] Taos Soil & Water Conservation District +2025-09-30 11:33:14,953 [INFO ] Taos Soil & Water Conservation District water sample study. +2025-09-30 11:33:14,953 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM +2025-09-30 11:33:14,953 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM; field check by Johnson +2025-09-30 11:33:14,953 [INFO ] Theis, C.V., Taylor, Jr., G.C., and Murray, C.R. (1941) Thermal Waters of the Hot Springs Artesian Basin Sierra County, New Mexico. U.S. Geological Survey in cooperation with State Engineer of New Mex +2025-09-30 11:33:14,953 [INFO ] TSWCD +2025-09-30 11:33:14,953 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Apdx. 2 & 3. (Data from Drakos, GGI, 1996) Report filed w/TV-229. Al +2025-09-30 11:33:14,954 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Appendices 1, 3, 4 +2025-09-30 11:33:14,954 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, pg. 7, Table 1. +2025-09-30 11:33:14,954 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivison, Taos County, New Mexico, Turner Environmental Consultants, Pg. 18, Table 1, and Appendices 2,3. (Data from Jenkins in 1982). Ful +2025-09-30 11:33:14,954 [INFO ] undeclared well. +2025-09-30 11:33:14,954 [INFO ] URS Corp. for Chevron +2025-09-30 11:33:14,954 [INFO ] USFS - Espanola Ranger District - Range Improvement records. +2025-09-30 11:33:14,954 [INFO ] USGS & Garrabrant, L.A. (1993) Water Resources of Taos County, NM USGS WRIR 93-4107 (chemistry sample). This well matched to Garrabrant well via notes from Tony Benson's Sunshine notebooks. +2025-09-30 11:33:14,955 [INFO ] USGS & Myers, Everheart, Wilson (1994) Geohydrol. Of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, WRI 94-4125 +2025-09-30 11:33:14,955 [INFO ] USGS & NMED SWP Atlas online +2025-09-30 11:33:14,955 [INFO ] USGS & Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:33:14,955 [INFO ] USGS & Texas Water Development Board +2025-09-30 11:33:14,955 [INFO ] USGS & Winograd, I.J. (1959) Ground-water Conditions & Geology of Sunshine Valley & Western Taos Cty, NM, NMSEO, Tech. Report #12. & Garrabrant, L.A. (1993) USGS WRIR 93-4107 +2025-09-30 11:33:14,955 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:33:14,955 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:33:14,956 [INFO ] USGS and Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:33:14,956 [INFO ] USGS Chem Analysis Sheet from R.L. Borton Files. 1970; WATERS; C.Borchert, 3/23/09, written communication +2025-09-30 11:33:14,956 [INFO ] USGS Drillers reports +2025-09-30 11:33:14,956 [INFO ] USGS drillers reports; D.Koning cuttings review +2025-09-30 11:33:14,956 [INFO ] USGS drilling reports; D.Koning cutting review +2025-09-30 11:33:14,956 [INFO ] USGS Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:33:14,956 [INFO ] USGS, chemistry from Lynn Brandvold with NMBGMR chemistry lab, OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:33:14,957 [INFO ] USGS. POD log not available. +2025-09-30 11:33:14,957 [INFO ] USGS. Well screens/WQ from Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 +2025-09-30 11:33:14,957 [INFO ] USGS/OSE water-level data sheets; WATERS +2025-09-30 11:33:14,957 [INFO ] USGS; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. +2025-09-30 11:33:14,957 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, New Mexico, NM OSE Technical Report 8. +2025-09-30 11:33:14,957 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, NM, OSE Technical Report 8. +2025-09-30 11:33:14,957 [INFO ] USGS; Screens from NPS water level and well documentation +2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc, 1984, Remuda Ridge Warehouse, Santa Fe County, NM, October 1984 +2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc, Inc., 1982, Geohydrology Rept, Pecos Trail Subdn, Santa Fe Cnty, Aug 1982 +2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc., 1984, Geohydrology Report, Hondo Trails Subdn, Santa Fe Cnty, Dec 1984 +2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc., Inc., 1986, Geohydrology Report, Talbot Subdivision, May 1986 +2025-09-30 11:33:14,958 [INFO ] VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75 +2025-09-30 11:33:14,958 [INFO ] Veneklasen, 1977, Geohydro Lanphere -- Rio Villa Subdivision, AguaFria Rd, 5/77 +2025-09-30 11:33:14,958 [INFO ] Veneklasen, 1977, Hydrogeologic Report La Tierra Subdivn, Phase III, May 1977, Consulting Prof Inc +2025-09-30 11:33:14,958 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977 +2025-09-30 11:33:14,959 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977; field check Cruz/Frost +2025-09-30 11:33:14,959 [INFO ] Veneklasen, 1980, Geohydro of Santiago Subdivision, 10/80 +2025-09-30 11:33:14,959 [INFO ] VeneKlasen, 6/75, Hydrogeo Rept La Tierra; field check by Johnson +2025-09-30 11:33:14,959 [INFO ] VeneKlasen, Hydrogeologic Report for La Tierra Subdivision 6/75; well log; field check Johnson +2025-09-30 11:33:14,959 [INFO ] Water chemistry from TSWCD. Fairly sure this is COS-11, eventhough there is a descrepency between well log depth and well depth on chemistry sheet. +2025-09-30 11:33:14,959 [INFO ] Water Quality: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. +2025-09-30 11:33:14,959 [INFO ] WATERS; field check +2025-09-30 11:33:14,960 [INFO ] WATERS; Lewis database, 2001; VeneKlasen, 1975, Hydrogeologic Report LaTierra, 6/75; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review; C.Borchert, 3/23/09, written comm +2025-09-30 11:33:14,960 [INFO ] WATERS; WK Summers project files; JSAI, 2001, App. #6; J. Frost project files (1999) +2025-09-30 11:33:14,960 [INFO ] Watson/Shomaker & Assoc., 5/97, Well Report, Drilling, Construction, and Testing, City of Santa Fe, Torreon Well No. 2, for PNM Water Services Santa Fe, NM; CDM, Jan 2000, Water Supply Analysis +2025-09-30 11:33:14,960 [INFO ] Well owner. +2025-09-30 11:33:14,960 [INFO ] Well also in PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM +2025-09-30 11:33:14,960 [INFO ] well depth from Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:33:14,960 [INFO ] Well in Meyers report: Meyers et al, 1994, USGS WRI 94-4125 +2025-09-30 11:33:14,960 [INFO ] Well info from inside well cap, presumably from driller? +2025-09-30 11:33:14,961 [INFO ] Well Log +2025-09-30 11:33:14,961 [INFO ] Well log and completion diagrams +2025-09-30 11:33:14,961 [INFO ] Well log and field check by Johnson; not previously in GWSI +2025-09-30 11:33:14,961 [INFO ] Well log and well completion diagrams +2025-09-30 11:33:14,961 [INFO ] Well log and well completion diagrams. WQ data from P. Longmire Santa Fe River 1985 Report +2025-09-30 11:33:14,961 [INFO ] Well log/record by GGI; field check by Johnson +2025-09-30 11:33:14,961 [INFO ] Well log; field check +2025-09-30 11:33:14,961 [INFO ] Well log; field check by Johnson +2025-09-30 11:33:14,962 [INFO ] well log; field check by Johnson; owner +2025-09-30 11:33:14,962 [INFO ] well log; Johnson field check +2025-09-30 11:33:14,962 [INFO ] Well Log; JSAI, 2001, App. #6 +2025-09-30 11:33:14,962 [INFO ] Well owner +2025-09-30 11:33:14,962 [INFO ] Well owner and old well record. +2025-09-30 11:33:14,962 [INFO ] Well owner and OSE site info. +2025-09-30 11:33:14,962 [INFO ] Well owner, and well record. +2025-09-30 11:33:14,962 [INFO ] Well owner. +2025-09-30 11:33:14,963 [INFO ] Well record. +2025-09-30 11:33:14,963 [INFO ] Well record; field check +2025-09-30 11:33:14,963 [INFO ] Well record; field check by Cruz/Frost +2025-09-30 11:33:14,963 [INFO ] well record; field check by Johnson +2025-09-30 11:33:14,963 [INFO ] Well record; field check by Johnson; owner +2025-09-30 11:33:14,963 [INFO ] Well record; field check by Lyman +2025-09-30 11:33:14,963 [INFO ] Well record; field check by Lyman; SWL measured by GGI/reported by Cooper, 2000, Rept for Roybal +2025-09-30 11:33:14,964 [INFO ] Well record; field check with SFC Utilities (Leonard Quintana 490-0065) +2025-09-30 11:33:14,964 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 +2025-09-30 11:33:14,964 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. +2025-09-30 11:33:14,964 [INFO ] WK Summers project files; WATERS; Water Industries, Inc., 1982, Testing of Eldorado Well #1, Jan. 1982; water levels from W-1 and EUI#1; JSAI, 2001, App. #6 +2025-09-30 11:33:14,964 [INFO ] WL from USGS; chemistry and other data from Lynn Brandvold with NMBGMR chemistry lab & OFR-469 Hydrogeology & Water Resources of the Placitas Area +2025-09-30 11:33:14,964 [INFO ] WQ also from MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources. +2025-09-30 11:33:14,964 [INFO ] WQ from Taos Soil & Water Conservation District +2025-09-30 11:33:14,965 [INFO ] Z. Spiegel, 1972, Interpretation and application of an aquifer performance test on well RG-20228 at Pojoaque Terrace trailer court site HC McDonald Property, Santa Fe County, NM, 9/14/72 +2025-09-30 11:33:32,306 [INFO ] Reached limit of 10 rows. Stopping migration. +2025-09-30 11:33:32,319 [INFO ] transfer_wells took 21.517522 seconds +2025-09-30 11:33:33,324 [INFO ] transfer_wellscreens took 1.005512 seconds +2025-09-30 11:33:33,325 [INFO ] +2025-09-30 11:33:33,325 [INFO ] ********** TRANSFERRING CONTACTS ********** +2025-09-30 11:33:38,363 [INFO ] Processing PointID: 221 EB-663 +2025-09-30 11:33:38,377 [WARNING ] first 'Thompson, Warren' Skipping physical address. Validation error: 1 validation error for CreateAddress +postal_code + Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] + For further information visit https://errors.pydantic.dev/2.11/v/string_type +2025-09-30 11:33:38,394 [CRITICAL] Skipping first contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} +[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] +[parameters: ('Warren Thompson', 'Los Atrevidos, Inc.', 'Owner', 'Primary', None, None, None, None, None, None, None, 'private')] +(Background on this error at: https://sqlalche.me/e/20/f405) +2025-09-30 11:33:38,403 [CRITICAL] Skipping second contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} +[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] +[parameters: ("Warren's son", 'Los Atrevidos, Inc.', 'Owner', 'Secondary', None, None, None, None, None, None, None, 'private')] +(Background on this error at: https://sqlalche.me/e/20/f405) +2025-09-30 11:33:38,407 [INFO ] Processing PointID: 441 EB-057 +2025-09-30 11:33:38,417 [INFO ] added first contact for PointID EB-057 +2025-09-30 11:33:38,418 [CRITICAL] Skipping second contact for PointID EB-057 due to validation error: 1 validation error for CreateContact + Value error, Either name or organization must be provided. [type=value_error, input_value={'thing_id': 8, 'release_...ails': [], 'phones': []}, input_type=dict] + For further information visit https://errors.pydantic.dev/2.11/v/value_error +2025-09-30 11:33:38,418 [INFO ] transfer_contacts took 5.092971 seconds +2025-09-30 11:33:38,418 [INFO ] +2025-09-30 11:33:38,418 [INFO ] ********** TRANSFERRING LINK IDS ********** +2025-09-30 11:33:40,318 [INFO ] Processing PointID: DE-0219, Thing ID: 1, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:33:40,323 [INFO ] Processing PointID: EB-057, Thing ID: 8, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:33:40,329 [INFO ] Processing PointID: BW-0131, Thing ID: 5, AlternateSiteID=11S9E22.441, AlternateSiteID2=None +2025-09-30 11:33:40,329 [INFO ] adding link id: BW-0131 +2025-09-30 11:33:40,340 [INFO ] Processing PointID: EB-663, Thing ID: 9, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:33:40,344 [INFO ] Processing PointID: TO-0225, Thing ID: 3, AlternateSiteID=6N8E11.42, AlternateSiteID2=None +2025-09-30 11:33:40,345 [INFO ] adding link id: TO-0225 +2025-09-30 11:33:40,353 [INFO ] Processing PointID: UC-0100, Thing ID: 6, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:33:40,358 [INFO ] Processing PointID: QY-0274, Thing ID: 4, AlternateSiteID=11.31.19.333, AlternateSiteID2=None +2025-09-30 11:33:40,359 [INFO ] adding link id: QY-0274 +2025-09-30 11:33:40,367 [INFO ] Processing PointID: PC-037, Thing ID: 10, AlternateSiteID=PW-060, AlternateSiteID2=None +2025-09-30 11:33:40,367 [INFO ] adding link id: PC-037 +2025-09-30 11:33:40,376 [INFO ] Processing PointID: NM-26878, Thing ID: 2, AlternateSiteID=None, AlternateSiteID2=None +2025-09-30 11:33:40,381 [INFO ] Processing PointID: QY-0181, Thing ID: 7, AlternateSiteID=11.30.14.143b, AlternateSiteID2=None +2025-09-30 11:33:40,381 [INFO ] adding link id: QY-0181 +2025-09-30 11:33:40,388 [INFO ] transfer_link_ids took 1.969871 seconds +2025-09-30 11:33:41,950 [WARNING ] Both OSEWellID and OSEWelltagID are null for DE-0219 +2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for NM-26878 +2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for TO-0225 +2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0274 +2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for BW-0131 +2025-09-30 11:33:41,955 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for UC-0100 +2025-09-30 11:33:41,955 [WARNING ] OSEWellTagID is null for UC-0100 +2025-09-30 11:33:41,957 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0181 +2025-09-30 11:33:41,961 [WARNING ] OSEWellTagID is null for EB-057 +2025-09-30 11:33:41,979 [WARNING ] OSEWellTagID is null for EB-663 +2025-09-30 11:33:41,987 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for PC-037 +2025-09-30 11:33:41,987 [WARNING ] OSEWellTagID is null for PC-037 +2025-09-30 11:33:41,989 [INFO ] transfer_link_ids_welldata took 1.600086 seconds +2025-09-30 11:33:41,989 [INFO ] +2025-09-30 11:33:41,989 [INFO ] ********** TRANSFERRING GROUPS ********** +2025-09-30 11:33:42,926 [INFO ] Adding 2 things to group La Cienega, prefix EB +2025-09-30 11:33:42,958 [INFO ] Adding 2 things to group Espanola Basin, prefix EB +2025-09-30 11:33:42,991 [INFO ] Adding 1 things to group Union County, prefix UC +2025-09-30 11:33:43,094 [INFO ] Adding 1 things to group New Mexico, prefix NM +2025-09-30 11:33:43,182 [INFO ] Adding 2 things to group Quay County, prefix QY +2025-09-30 11:33:43,206 [INFO ] Adding 1 things to group Brackish Water, prefix BW +2025-09-30 11:33:43,256 [INFO ] Adding 1 things to group Torrance County, prefix TO +2025-09-30 11:33:43,314 [INFO ] Adding 1 things to group Placitas, prefix PC +2025-09-30 11:33:43,411 [INFO ] Adding 1 things to group Delaware Basin, prefix DE +2025-09-30 11:33:43,427 [INFO ] Adding 1 things to group ABCWUA, prefix NM +2025-09-30 11:33:43,464 [INFO ] transfer_groups took 1.474405 seconds +2025-09-30 11:33:43,464 [INFO ] +2025-09-30 11:33:43,464 [INFO ] ********** TRANSFERRING WATER LEVELS ********** +2025-09-30 11:34:47,942 [INFO ] Valid Measuring Agencies: +2025-09-30 11:34:47,942 [INFO ] NMBGMR +2025-09-30 11:34:47,942 [INFO ] NMT +2025-09-30 11:34:47,942 [INFO ] NPS +2025-09-30 11:34:47,942 [INFO ] SNL +2025-09-30 11:34:47,943 [INFO ] TSWCD +2025-09-30 11:34:47,943 [INFO ] USFS +2025-09-30 11:34:47,946 [INFO ] Processing PointID: EB-663 +2025-09-30 11:34:47,966 [INFO ] Created field event: ID 1 | Date 2018-05-04 04:47:00+00:00 | Thing ID 9 | Thing Name EB-663. +2025-09-30 11:34:47,971 [INFO ] Created field activity: ID 1 | Type groundwater level. +2025-09-30 11:34:47,975 [INFO ] Created contact: ID 4 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR +2025-09-30 11:34:47,980 [INFO ] Created field event contact: ID 1 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR +2025-09-30 11:34:47,985 [INFO ] Created sample: ID 1 | Date 2018-05-04 04:47:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) +2025-09-30 11:34:48,011 [INFO ] Created observation: ID 1 | DT 2018-05-04 04:47:00+00:00 | Value 282.84 | MPHeight 2.79 +2025-09-30 11:34:48,014 [INFO ] Created field event: ID 2 | Date 2015-04-13 00:00:00+00:00 | Thing ID 9 | Thing Name EB-663. +2025-09-30 11:34:48,017 [INFO ] Created field activity: ID 2 | Type groundwater level. +2025-09-30 11:34:48,021 [INFO ] Created field event contact: ID 2 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR +2025-09-30 11:34:48,026 [INFO ] Created sample: ID 2 | Date 2015-04-13 00:00:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) +2025-09-30 11:34:48,035 [INFO ] Created observation: ID 2 | DT 2015-04-13 00:00:00+00:00 | Value 285.46 | MPHeight 2.79 +2025-09-30 11:34:48,039 [INFO ] transfer_water_levels took 64.574617 seconds +2025-09-30 11:34:48,039 [INFO ] transfer_all took 103.720438 seconds +2025-09-30 11:34:49,055 [INFO ] Uploaded log to gs://ocotillo/transfer_logs/transfer_2025-09-30T11h33m04s.log +2025-09-30 11:34:49,056 [INFO ] +2025-09-30 11:34:49,056 [INFO ] ********** END-------------------------------------- ********** diff --git a/transfers/util.py b/transfers/util.py index 1e877f5f7..1f19366cd 100644 --- a/transfers/util.py +++ b/transfers/util.py @@ -93,7 +93,9 @@ def filter_by_welldata_datasource(df: pd.DataFrame) -> pd.DataFrame: reader = csv.reader(f) _ = next(reader) valid_datasources = [row[0] for row in reader if row[1] == "Yes"] - logger.info(f"Valid WellData Datasources: {valid_datasources}") + logger.info("Valid WellData Datasources:") + for vd in valid_datasources: + logger.info(f" {vd}") return df[df["DataSource"].isin(valid_datasources)] @@ -107,7 +109,9 @@ def filter_by_valid_measuring_agency(df: pd.DataFrame) -> pd.DataFrame: reader = csv.reader(f) _ = next(reader) valid_measuring_agencies = [row[0] for row in reader if row[1] == "Yes"] - logger.info(f"Valid Measuring Agencies: {valid_measuring_agencies}") + logger.info("Valid Measuring Agencies:") + for vma in valid_measuring_agencies: + logger.info(f" {vma}") return df[df["MeasuringAgency"].isin(valid_measuring_agencies)] diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index a3b5898ad..4df0de3ee 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -34,8 +34,8 @@ read_csv, convert_mt_to_utc, filter_by_valid_measuring_agency, + lexicon_mapper, ) -from services.lexicon_mapper import lexicon_mapper # keep a dictionary of created Contacts to avoid repeated SQL queries CREATED_CONTACTS = {} @@ -117,6 +117,10 @@ def transfer_water_levels(session): session.add(field_event) session.flush() + logger.info( + f" Created field event: ID {field_event.id} | Date {field_event.event_date} | Thing ID {field_event.thing.id} | Thing Name {field_event.thing.name}." + ) + # --- FieldActivity --- field_activity = FieldActivity( @@ -127,6 +131,10 @@ def transfer_water_levels(session): session.add(field_activity) session.flush() + logger.info( + f" Created field activity: ID {field_activity.id} | Type {field_activity.activity_type}." + ) + # --- Contact/FieldEventContactAssociation --- # AMP feedback: # - is Duke Engring the same as Duke University? Is it from their engineering school? @@ -1037,6 +1045,10 @@ def transfer_water_levels(session): session.add(contact) session.flush() # to get the contact.id + logger.info( + f" Created contact: ID {contact.id} | Name {contact.name} | Role {contact.role} | Organization {contact.organization}" + ) + CREATED_CONTACTS[c] = contact """ @@ -1050,7 +1062,7 @@ def transfer_water_levels(session): field_event_contact = FieldEventContactAssociation( field_event=field_event, contact=contact, - field_contact_role="Leader", + field_contact_role="Lead", ) sampler = field_event_contact else: @@ -1059,6 +1071,11 @@ def transfer_water_levels(session): contact=contact, field_contact_role="Participant", ) + session.add(field_event_contact) + session.flush() + logger.info( + f" Created field event contact: ID {field_event_contact.id} | Name {contact.name} | Role {contact.role} | Organization {contact.organization}" + ) else: contact = thing.contacts[0] @@ -1086,6 +1103,10 @@ def transfer_water_levels(session): depth_bottom=None, ) session.add(sample) + session.flush() + logger.info( + f" Created sample: ID {sample.id} | Date {sample.sample_date} | Matrix {sample.sample_matrix} | Method {sample.sample_method}" + ) if not pd.isna(row.LevelStatus): level_status = lexicon_mapper.map_value( @@ -1107,8 +1128,11 @@ def transfer_water_levels(session): measuring_point_height=row.MPHeight, level_status=level_status, ) - session.add(observation) + session.flush() + logger.info( + f" Created observation: ID {observation.id} | DT {observation.observation_datetime} | Value {observation.value} | MPHeight {observation.measuring_point_height}" + ) session.commit() From c692a6dbe7171a66d0f4345290a9d87d8202ca5e Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 11:40:15 -0600 Subject: [PATCH 23/30] fix: don't add transfer logs to git --- .gitignore | 1 + transfer_2025-09-30T11h12m26s.log | 750 ------------------------------ transfer_2025-09-30T11h20m36s.log | 750 ------------------------------ transfer_2025-09-30T11h33m04s.log | 750 ------------------------------ 4 files changed, 1 insertion(+), 2250 deletions(-) delete mode 100644 transfer_2025-09-30T11h12m26s.log delete mode 100644 transfer_2025-09-30T11h20m36s.log delete mode 100644 transfer_2025-09-30T11h33m04s.log diff --git a/.gitignore b/.gitignore index 6be8b4d9e..471b8faad 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ launcher.sh gcs_credentials.json transfers/data/assets* transfers/transfer*.log +transfer*.log # deployment files app.yaml \ No newline at end of file diff --git a/transfer_2025-09-30T11h12m26s.log b/transfer_2025-09-30T11h12m26s.log deleted file mode 100644 index df32e59fc..000000000 --- a/transfer_2025-09-30T11h12m26s.log +++ /dev/null @@ -1,750 +0,0 @@ -2025-09-30 11:12:26,784 [INFO ] -2025-09-30 11:12:26,784 [INFO ] ********** START-------------------------------------- ********** -2025-09-30 11:12:26,785 [INFO ] ********** STARTING TRANSFER ********** -2025-09-30 11:12:26,785 [INFO ] Erasing existing data and initializing lexicon and sensors -2025-09-30 11:12:26,785 [INFO ] Erasing existing data -2025-09-30 11:12:27,152 [INFO ] Recreating tables -2025-09-30 11:12:27,456 [INFO ] erase took 0.670932 seconds -2025-09-30 11:12:27,457 [INFO ] Initializing lexicon -2025-09-30 11:12:34,019 [INFO ] lexicon took 6.561986 seconds -2025-09-30 11:12:34,019 [INFO ] Initializing sensors -2025-09-30 11:12:34,029 [INFO ] sensor took 0.009682 seconds -2025-09-30 11:12:34,029 [INFO ] -2025-09-30 11:12:34,029 [INFO ] ********** TRANSFERRING WELLS ********** -2025-09-30 11:12:45,073 [INFO ] Valid WellData Datasources: -2025-09-30 11:12:45,073 [INFO ] (Author?), 1998, Geohydrology of River Bend Subdivision Taos County, New Mexico, Glorieta Geoscience, Inc. Appendix A. (Full report filed w/TV-121). -2025-09-30 11:12:45,073 [INFO ] 1) Author?, 1995, Town of Taos San Juan/Chama Diversion Proj., Phase 2, Vol. 1, Production Well & Observation Well Installation, Testing, and Determination of Aquifer Coefficients, GGI. 2) Water Level -2025-09-30 11:12:45,074 [INFO ] 1) Bernalillo County, Sara Chudnoff; 2) San Pedro Creek Estates HOA -2025-09-30 11:12:45,074 [INFO ] 1) BLM - Part of the Capitan Aquifer Observation-Well Network -2025-09-30 11:12:45,074 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 3) Sandia Report SAND2018-12018 NM Permian Basin -2025-09-30 11:12:45,074 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:12:45,075 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources -2025-09-30 11:12:45,075 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources 2) Pre-Design Groundwater Investigation at the Tailing Facil. ARCADIS -2025-09-30 11:12:45,075 [INFO ] 1) Drakos, P., Riesterer, J., Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, GGI (Filed w/TV-171). 2) Water Level Monitoring Prgm. -2025-09-30 11:12:45,075 [INFO ] 1) GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology; 2) USGS -2025-09-30 11:12:45,075 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) 3) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:12:45,075 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:12:45,076 [INFO ] 1) Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:12:45,076 [INFO ] 1) Sandia National Labs/ BLM Wells, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:12:45,076 [INFO ] 1) Turner, B., 1996, Water Availability for the El Mirador Subdvn, Taos Cty, NM, Turner Environ. Consult., Appd 2&3 (filed w/TV-229). 2) Vista del Valle report (filed w/TV-153). 3) Drakos, P. 2005, Ge -2025-09-30 11:12:45,076 [INFO ] 1) USGS - WL; 2) Brandvold - WQ -2025-09-30 11:12:45,076 [INFO ] 1) USGS - WLs 2) Brandvold -WQ -2025-09-30 11:12:45,077 [INFO ] 1) USGS - WLs 2) Brandvold -WQ, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia National Labs SAND2018-12018 NM Permian Basin -2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) David Chace of Hydro Resolutions -2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:12:45,077 [INFO ] 1) USGS 2) San Pedro Creek Estates HOA -2025-09-30 11:12:45,078 [INFO ] 1) USGS 2) Sandia National Labs/ BLM Well, 3) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:12:45,078 [INFO ] 1) USGS 2) Sandia National Labs/BLM Well -2025-09-30 11:12:45,078 [INFO ] 1) USGS and 2) Data from Lynn Brandvold with NMBGMR chemistry lab, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia Report SAND2018-12018 NM Permian Basin -2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR -2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:12:45,078 [INFO ] 1) USGS, 2) Sandia National Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Lab Report SAND2018-12018 Water Resource Assessment in the NM Permian Basin. -2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) GW3: Geol. & Groundwater Res. of Eddy Cty. (1952) Hendrickson & Jones, NMBGMR, 4) SNL SAND2021-1869 -2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:12:45,079 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:12:45,079 [INFO ] 1) Well depth and screen info. from spreadsheet from mayor of Questa. 2) Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis. -2025-09-30 11:12:45,080 [INFO ] AGW Consultants, 12/85, Geohydro of R.San Marcos Property; Balleau GWA, 1999; field check -2025-09-30 11:12:45,080 [INFO ] AGW Consultants, 12/85, Geohydrology of Rancho San Marcos -2025-09-30 11:12:45,080 [INFO ] AGW Consultants, May 1984, Hydrogeology of the Santa Fe Downs Resort Area Near Santa Fe, Santa Fe County, NM -2025-09-30 11:12:45,080 [INFO ] AGWC, Inc., 1983, Hydrogeology of the Great Cloud Zen Center, Oct 1983 -2025-09-30 11:12:45,080 [INFO ] Also see: Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. (Filed w/TV-103). -2025-09-30 11:12:45,080 [INFO ] American Ground Water Consultants, 1983, Hydrogeology of the Villa Marika Property, October 1983. -2025-09-30 11:12:45,080 [INFO ] AMP visited this well on 5/25/2022 but we didn't do a well inventory. -2025-09-30 11:12:45,080 [INFO ] ARCADIS Project B0046795.0019, Early Design Actions-Pre-Design Tailing Facility Groundwater Invest. Results from Monitoring Wells MW-43, MW-44 and MW-45 (May 1, 2015). -2025-09-30 11:12:45,081 [INFO ] ARCADIS well/lithologic log -2025-09-30 11:12:45,081 [INFO ] Author (?), 1998, Geohydrology of River Bend Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. Also in NMGS Gdbk 55 pg 396. -2025-09-30 11:12:45,081 [INFO ] Balleau Groundwater, 2001, CDEX1 Completion Report -2025-09-30 11:12:45,081 [INFO ] Balleau Groundwater, 2002, CDPROD1 Completion Report, 2/02 -2025-09-30 11:12:45,081 [INFO ] Balleau Groundwater, Inc., Oct 2007, Injection Demonstration Well -- Well Completion Report -2025-09-30 11:12:45,082 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well A -- Well Completion Report -2025-09-30 11:12:45,082 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well B -- Well Completion Report -2025-09-30 11:12:45,082 [INFO ] Balleau Groundwater, Inc., written communication, 11/27/2007 -2025-09-30 11:12:45,082 [INFO ] Balleau GW, 2002, CDPROD Completion Report; well log -2025-09-30 11:12:45,082 [INFO ] Balleau GWA, 1999; Balleau GWA -2025-09-30 11:12:45,082 [INFO ] Balleau GWA, 1999; field check -2025-09-30 11:12:45,082 [INFO ] Balleau GWA, 1999; field check; Jenkins, 1977, Geohydro Investigation of Turquoise Trail Subdivision -2025-09-30 11:12:45,082 [INFO ] Bjorklund, L.J. (1957) Reconnaissance of Groundwater Conditions in the Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:12:45,082 [INFO ] Black & Veatch Consulting Engineers, 1978, Construction and Testing Report Buckman Well No. 2; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 -2025-09-30 11:12:45,083 [INFO ] Black & Veatch Consulting Engrs, 1978, Construction and Testing Rept Buckman Well No. 1; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:12:45,083 [INFO ] Bob Hubbard -2025-09-30 11:12:45,083 [INFO ] Bureau scientists performed a pump test on this well. -2025-09-30 11:12:45,083 [INFO ] C. Borchert, written comm.; WATERS -2025-09-30 11:12:45,083 [INFO ] Carrol Wood, well owner. -2025-09-30 11:12:45,083 [INFO ] Cathie. -2025-09-30 11:12:45,083 [INFO ] CB00107524CCA -2025-09-30 11:12:45,084 [INFO ] CDM completion log to NMED SW Bureau -2025-09-30 11:12:45,084 [INFO ] CDM well completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau -2025-09-30 11:12:45,084 [INFO ] CH2M Hill report to NMED UST Bureau -2025-09-30 11:12:45,084 [INFO ] CH2M Hill water level measurements at WWTP (entered into db). -2025-09-30 11:12:45,084 [INFO ] Charles Heaton, Sinagua Consultants, 1999, Well Hydrology Report Elmer Garcia Property, Aug 1999; County Records; well log; field check -2025-09-30 11:12:45,084 [INFO ] Charles Walker -2025-09-30 11:12:45,084 [INFO ] Chemistry data from Lynn Brandvold with NMBGMR chemistry lab. NMBGMR visited the site after chem. data input. -2025-09-30 11:12:45,085 [INFO ] Chemistry from Matt Sophy -2025-09-30 11:12:45,085 [INFO ] Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:12:45,085 [INFO ] Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR -2025-09-30 11:12:45,085 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; CDM, Jan 2001 -2025-09-30 11:12:45,085 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:12:45,085 [INFO ] City of Santa Fe; OSE records; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:12:45,085 [INFO ] Claudia Borchert, 2002, MS Thesis -2025-09-30 11:12:45,086 [INFO ] Compiled by Susan VonGonten, NMED UST Bureau -2025-09-30 11:12:45,086 [INFO ] Consulting Professionals, Inc, Hydrogeologic Rept La Tierra Subdn, Phase 4, Santa Fe Cnty, Dec1978 -2025-09-30 11:12:45,086 [INFO ] Consulting Professionals, Inc., VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75; well log -2025-09-30 11:12:45,086 [INFO ] Cooper, 1991, Geohydro Rept for Country Boarding Kennel, 5/1991 -2025-09-30 11:12:45,086 [INFO ] Cooper, 1995, Garcia Ranch report; Wilson, 1978, SFC water plan Table 1-28; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis. -2025-09-30 11:12:45,086 [INFO ] Cooper, 1995, rept to Garcia Ranch; Kuckleman, 2003 -2025-09-30 11:12:45,086 [INFO ] Cooper, D. R., 1995, Geohydrology Report for Cottonwood Ranch Subdn, Santa Fe Cty, NM, April 1995 -2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., 1998, Geohydrology for WK Jones, Santa Fe Cnty, Oct 1998 -2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrologic Report for Rancho De Los Cuervos, Santa Fe Cnty, Sept1986; Berman Tract -2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Report for Frank M Gallegos & Andrew M Leyba, Santa Fe Cnty, Oct, 1999 -2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Report for Friendly Construction, Inc., Santa Fe Cnty, July 1994 -2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Report for Tano Vista Grande, Santa Fe Cnty, NM, Nov 1996 -2025-09-30 11:12:45,087 [INFO ] Cooper, D. R., Geohydrology Rept for Marvin Pollock & Bettina Lancaster, Santa Fe Cnty, May 1994 -2025-09-30 11:12:45,087 [INFO ] Cooper, D.R., Geohydrology Rept for El Prado Subdn, Santa Fe Cnty, Sept 1994 -2025-09-30 11:12:45,087 [INFO ] Cooper, D.R., Santa Fe Design Assoc, Geohydrology Rept for Rancho Oso Loco, Santa Fe Cnty, 1985 -2025-09-30 11:12:45,087 [INFO ] Cooper, Dennis R., Geohydrology for Rancho De Los Ninos, Santa Fe Cnty, NM, April 1999; Rick Borrego -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for Bob Shipp, Santa Fe County, NM, June 1995 -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for Heartstone Development LLC, Dec 2001 -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for James B. Alley Jr., Santa Fe Cnty, NM, March 1995 -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report for Lawrence Tuchman, Santa Fe Cnty, Oct 1994; Frost & Assoc., Santa Fe County WQ Monitoring, June 1996 -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Report For Los Suenos, Santa Fe County, NM, April 1994 -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., Geohydrology Rept for Jeffrey Jacobs & Thad Bowman, Santa Fe Cnty, Jan 1996 -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., July 1995, Analysis of water levels in wells on Garcia Ranch, unpub consult rept -2025-09-30 11:12:45,088 [INFO ] Cooper, Dennis R., July 1995, Unpub report to Garcia Ranch; well log; WATERS; USGS field notes -2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, 1990, Geohydrology Report for San Juan Complex Partnership Ltd., Sept 1990; Field check by Johnson; well log; SFO files -2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, 1993, Geohydrology Rept for Neighbors, Inc., Santa Fe Cnty, Dec 1993; well log Joe Briscoe -2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, 2000, Geohydro Rept for Roybal Subdivision, Santa Fe Cnty, NM, Oct 2000; field check -2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, Geohydrol Rept for Hacienda Del Cerezo, Santa Fe Cnty, NM, Jan 1994; well logs -2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis, Geohydrology Rept for B. Howard & J.Morris, Santa Fe Cnty, NM, Dec 1994 -2025-09-30 11:12:45,089 [INFO ] Cooper, Dennis,1991, Geohydrology Rept for Sheila Cooper; field check by Johnson -2025-09-30 11:12:45,089 [INFO ] Cooper, Geohydro Report for Land Ventures, LLC, 6/2001; field check by Johnson; well log -2025-09-30 11:12:45,089 [INFO ] Cooper, Geohydrology Rept for Welsh Family Ltd Partnership, Santa Fe Cnty, March 1995 -2025-09-30 11:12:45,089 [INFO ] Corbin Consulting, Inc., 2005, Geohydrology Report (RG-27728-S) Longanecker Property. March 8, 2005 -2025-09-30 11:12:45,090 [INFO ] Corbin Consulting, Inc., 2005, Geo-Hydrology Report McMillan Subdivision, June 6, 2005 -2025-09-30 11:12:45,090 [INFO ] Corbin, J., 2004, Constant Property Geohydrology Report, Corbin Consulting Inc. June 3, 2004. Field checked. -2025-09-30 11:12:45,090 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005 (EB-618) -2025-09-30 11:12:45,090 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005; (EB-618) -2025-09-30 11:12:45,090 [INFO ] Corbin, James, 2005. -2025-09-30 11:12:45,090 [INFO ] County records; WATERS; drilling log -2025-09-30 11:12:45,090 [INFO ] County records; well log -2025-09-30 11:12:45,090 [INFO ] CT890 also at same site, cinfusing records not sure which well is correct, this one has a log -2025-09-30 11:12:45,091 [INFO ] Cuttings from NMBG. Bill White has cuttings. Geophysics: gamma ray, neutron, 3-arm-caliper, resistivitity, single pt resistance, SP, temperature profile -2025-09-30 11:12:45,091 [INFO ] Dames & Moore, Inc., 1995, Geohydroloy Report Komis Estates for Southwest Surveying Co., Inc., Dec. 1995; J. Corbin personal communication, 2005 -2025-09-30 11:12:45,091 [INFO ] Daniel B. Stephens & Associates report on Campbell Ranch subdivision wells -2025-09-30 11:12:45,091 [INFO ] Daniel B. Stevens & Associates consultant report (AMP\data\datasets\Campbell Ranch Bernalillo County) -2025-09-30 11:12:45,091 [INFO ] Darr, M.J., 2006, Geohydrologic Investigation Report: Proposed "Ocotillo" Subdivision, Taos County, NM. MJDarrconsult, Inc / Hydroscience Assoc. Inc, 2006, Analysis of Aquifer Test Run Using RG-87080 -2025-09-30 11:12:45,091 [INFO ] Darr, M.J., 2008, Geohydrologic Investigation Report: Proposed Los Llanos Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. -2025-09-30 11:12:45,091 [INFO ] Darr, Michael J., 2007, Geohydrologic Investigation Report: Proposed "Golf Country" Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. -2025-09-30 11:12:45,091 [INFO ] Data from Groundwater Report 2: Geology & Groundwater Resources of San Miguel County, NM. (1951) NMBGMR by R.L. Griggs and G.E. Hendrickson. -2025-09-30 11:12:45,092 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab. -2025-09-30 11:12:45,092 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab., OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:12:45,092 [INFO ] Data from owner well testing via NMBGMR water lab. -2025-09-30 11:12:45,092 [INFO ] David Chace of Hydro Resolutions -2025-09-30 11:12:45,092 [INFO ] David Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 -2025-09-30 11:12:45,092 [INFO ] David N Jenkins, Geohydrolgoy of the Las Dos, Phase II Area, Santa Fe County, NM, October 1982 -2025-09-30 11:12:45,092 [INFO ] David N Jenkins, Geohydrologic Conditions at the San Juan Residences, Santa Fe Cnty, April 1982 -2025-09-30 11:12:45,092 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 -2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; -2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; Steinberger log of R1 test hole, K.Summers files -2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; WK Summers project files -2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979 -2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; Mourant; Spiegel & Baldwin, p 241 -2025-09-30 11:12:45,093 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; WATERS -2025-09-30 11:12:45,093 [INFO ] David N. Jenkins, Geohydrologic Conditions at the Thorpe Condominiums, Santa Fe Cnty, Nov 1982 -2025-09-30 11:12:45,093 [INFO ] David Updegraff & William Lyons, 1978, Geohydrology of the Hyde Park Estates Unit 3 Subdiv'n, Aug 1978 -2025-09-30 11:12:45,094 [INFO ] DBStephens report to NMED UST Bureau -2025-09-30 11:12:45,094 [INFO ] depth made up by GCR based on nearby wells, no actual data -2025-09-30 11:12:45,094 [INFO ] depth made up by GCR, no actual data, assume similar to well K-14 (UC 30) -2025-09-30 11:12:45,094 [INFO ] Discussion of Geology, Hydrogeology, and Water Quality of the Tailings Area, Molycorp Facility, Taos County, NM, 1995, South Pass Resources, Inc. -2025-09-30 11:12:45,094 [INFO ] Drakos, P. & Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. Also, Water Level Monitoring Prgm. 2002-2 -2025-09-30 11:12:45,094 [INFO ] Drakos, P. and Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level -2025-09-30 11:12:45,094 [INFO ] Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. -2025-09-30 11:12:45,094 [INFO ] Drakos, P., et al., 2004, Hydrologic Characteristics of Basin-Fill Aquifers in the Southern San Luis Basin, NM, NMGS Guidebook 55, pg. 391. -2025-09-30 11:12:45,095 [INFO ] Drakos, P., Hodgins, M., 2000, Drilling & Testing Report, Bureau of Reclamation 2000-Ft. Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. 2) Water Level Monitoring Prgm. 2002-2007, GGI -2025-09-30 11:12:45,095 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. & Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Ft. Deep Nested Piezometer/Expl. Well (BOR-2) & 2100-Ft. Deep Production Well (BOR-3), Paseo del Canon We -2025-09-30 11:12:45,095 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. and Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR-2) & 2100-Feet Deep Production Well (BOR-3), Paseo de -2025-09-30 11:12:45,095 [INFO ] Drakos, P., Riesterer, J., and Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level Monitor -2025-09-30 11:12:45,095 [INFO ] Driller's log; OSE network WLs -2025-09-30 11:12:45,095 [INFO ] dubiousOSE match, depth and location are off -2025-09-30 11:12:45,095 [INFO ] Duncan, 2004. -2025-09-30 11:12:45,095 [INFO ] Duncan, 2004; field check by Johnson 12-22-05 -2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; Frost, 1999, ElDorado Area Water & Sanitation District Project files -2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study -2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study. -2025-09-30 11:12:45,096 [INFO ] Duncan, 2004; JSAI, 2001, App. #6 -2025-09-30 11:12:45,096 [INFO ] Exploratory & Shallow Well Drilling Rio Grande Watershed Study-Phase 1 San Acacia Surface Water/Groundwater Investigation (Dec. 5, 2003) S.S. Papadopulos & Associates for US Army Corps of Engineer -2025-09-30 11:12:45,096 [INFO ] Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94 -2025-09-30 11:12:45,096 [INFO ] Field check by Johnson -2025-09-30 11:12:45,096 [INFO ] Field check by Johnson, Cruz, Frost; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review -2025-09-30 11:12:45,096 [INFO ] Field check by Johnson; Cooper, 1995, report to Garcia Ranch; Borton field notes -2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 2/14/2002 -2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 7/2/98 -2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; owner info -2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; WATERS -2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; WATERS; Mourant -2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; WATERS; sample site for Anderholm, 1994 USGS WRI Report 94-4078 -2025-09-30 11:12:45,097 [INFO ] Field check by Johnson; well log -2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well log; owner -2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well log; SFO files -2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well record -2025-09-30 11:12:45,098 [INFO ] Field check by Johnson; well/owner records -2025-09-30 11:12:45,098 [INFO ] Field check by Lyman -2025-09-30 11:12:45,098 [INFO ] Field check with Lyman and BLM realtor Hal Knox; plat map -2025-09-30 11:12:45,098 [INFO ] Field check, WATERS -2025-09-30 11:12:45,098 [INFO ] Field check; owner -2025-09-30 11:12:45,099 [INFO ] Field check; owner; well log -2025-09-30 11:12:45,099 [INFO ] Field check; WATERS -2025-09-30 11:12:45,099 [INFO ] Field check; WATERS. OSE Well Record. -2025-09-30 11:12:45,099 [INFO ] Field check; WATERS.OSE Well Record. -2025-09-30 11:12:45,099 [INFO ] Field check; well log -2025-09-30 11:12:45,099 [INFO ] Field check; well logg -2025-09-30 11:12:45,099 [INFO ] Field check; well record -2025-09-30 11:12:45,099 [INFO ] Field checked -2025-09-30 11:12:45,100 [INFO ] Field checked, WATERS -2025-09-30 11:12:45,100 [INFO ] Field checked, Well owners recollection of well info -2025-09-30 11:12:45,100 [INFO ] Field checked. WATERS. OSE Well Record. -2025-09-30 11:12:45,100 [INFO ] Field checked; WATERS -2025-09-30 11:12:45,100 [INFO ] Field checked; WATERS. OSE Well Record. -2025-09-30 11:12:45,100 [INFO ] Field checks; WATERS; well record. -2025-09-30 11:12:45,100 [INFO ] Finch & Petronis (JS&A), Sept. 2006, Hydrogeologic Report for the Galisteo Basin Preserve, Santa Fe County, NM, for Commonweal Conservancy, unpub. consultant report -2025-09-30 11:12:45,100 [INFO ] Finch, S.T., Jr., 2001, Hydrogeologic Evaluation of T-255 Et. Al., Near Carrizozo, New Mexico, John Shomaker & Associates, Inc. -2025-09-30 11:12:45,101 [INFO ] Finch, Steven T., and Melis, Erwin A., October 2008, Hydrogeologic evaluation of ground-water supply for the Spaceport America Site near Upham, NM, John Shomaker & Associates. -2025-09-30 11:12:45,101 [INFO ] Fleming, WM, Geohydrology Report for the Matthews Property, Santa Fe County, July 26, 1991 -2025-09-30 11:12:45,101 [INFO ] Foreman -2025-09-30 11:12:45,101 [INFO ] Frost MWB notes, 1994 -2025-09-30 11:12:45,101 [INFO ] Frost MWB Survey notes -2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe Cnty Ground Water Levels, 1995-96 Results; GWSI; USGS log books; well record -2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996 -2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; field check -2025-09-30 11:12:45,101 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Lewis database; NMED DWB (1999) via Jemez y Sangre Database (2000) -2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Mourant -2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnso -2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnson -2025-09-30 11:12:45,102 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; well record -2025-09-30 11:12:45,102 [INFO ] Frost, 1999; WATERS -2025-09-30 11:12:45,102 [INFO ] Frost, MWB Survey notes; D.Koning log review -2025-09-30 11:12:45,102 [INFO ] Full EPA ID #TB-B011-150811-21 -2025-09-30 11:12:45,102 [INFO ] Full EPA ID #TB-B023-150814-021 -2025-09-30 11:12:45,103 [INFO ] Full EPA ID #TD-D001-150812-21 -2025-09-30 11:12:45,103 [INFO ] Full EPA ID #TD-D003-150812-21 -2025-09-30 11:12:45,103 [INFO ] Garrabrant, L.A., 1993, Water resources of Taos County, NM: USGS WRIR 93-4107. -2025-09-30 11:12:45,103 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Cuttings archived in our core shed. -2025-09-30 11:12:45,103 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Pump test from driller (JSAI). Cuttings/chip boards archived in our core shed. -2025-09-30 11:12:45,103 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons -2025-09-30 11:12:45,103 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons; map -2025-09-30 11:12:45,103 [INFO ] Geohydrology Assoc., Inc. lithologic log to NMED SW Bureau; field check by Johnson -2025-09-30 11:12:45,104 [INFO ] Geohydrology Assoc., Inc., 1988, Hydrogeologic Investigation of Cottonwood Estates, 2//88; WATERS -2025-09-30 11:12:45,104 [INFO ] Geophysics: dual induction guard, dual spaced neutron,microlog, high-resol temp log. WQ: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. -2025-09-30 11:12:45,104 [INFO ] GGI -2025-09-30 11:12:45,104 [INFO ] GGI report (has WQ sample). Requested from P. Drakos; have not received response. -2025-09-30 11:12:45,104 [INFO ] GGI report for NMED UST Bureau -2025-09-30 11:12:45,104 [INFO ] GGI report to NMED UST Bureau -2025-09-30 11:12:45,104 [INFO ] GGI reports: 1) 2001 report on RP-2500 in Town of Taos, 2) Water Level Monitoring -2025-09-30 11:12:45,104 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, NM,3/19/92; Sangre de Cristo Estates rept -2025-09-30 11:12:45,104 [INFO ] GGI, 100-Yr Water Availability Santa Fe Metro Center, 12/01; AND La Cienega de Santa Fe Proj, 10/91 -2025-09-30 11:12:45,105 [INFO ] GGI, 1988, Geohydrology of the Picture Rock Development Co. Property, Santa Fe, May, 1988. -2025-09-30 11:12:45,105 [INFO ] GGI, 1989, Geohydrology of the Baird Joint Venture Property, Taos County, NM, Glorieta Geoscience, Inc. -2025-09-30 11:12:45,105 [INFO ] GGI, 1989, Reconnaissance Geohydrology of the Lumpkins Property, Santa Fe County, NM, August 1989 -2025-09-30 11:12:45,105 [INFO ] GGI, 1990, Geohydrology of the Bajo Del Cielo Subdivision, Santa Fe County, NM. Dec. 1990 -2025-09-30 11:12:45,105 [INFO ] GGI, 1990, Geohydrology of the Beaver and Henry Properties, Santa Fe Cnty, Aug 1990 -2025-09-30 11:12:45,105 [INFO ] GGI, 1991, Geohydrology of the Walker Property, Santa Fe, May, 1991. -2025-09-30 11:12:45,105 [INFO ] GGI, 1995, Geohydrology of the Santa Fe Opera Tract Prop, Santa Fe Cnty, 3/95; G.Ellis; well log -2025-09-30 11:12:45,105 [INFO ] GGI, 1995, Geohydrology of the Vereda Serena Property, Santa Fe, October, 1995. -2025-09-30 11:12:45,106 [INFO ] GGI, 1995, Production well and observation well installation, testing, and determination of aquifer coefficients: unpub consultant report for Town of Taos, March 1995 -2025-09-30 11:12:45,106 [INFO ] GGI, 1998, Ground Water Conditions in the Vicinity of the Gonzales Tract San Marcos Arroyo Santa Fe County, NM, Dec. 1998 -2025-09-30 11:12:45,106 [INFO ] GGI, 2001, Geohydrologic report for the Village at Eldorado, July, 2001. -2025-09-30 11:12:45,106 [INFO ] GGI, 2001, Vista del Valle Subdivision Report, Taos County, New Mexico -2025-09-30 11:12:45,106 [INFO ] GGI, 2002, Addendum To: Reconnaissance Geohydrologic Characterization of Tesuque Ridge, 8/28/2002 -2025-09-30 11:12:45,106 [INFO ] GGI, 2002, Reconnaissance Geohydrologic Characterization of Tesuque Ridge Subdivn, 7/17/02 -2025-09-30 11:12:45,106 [INFO ] GGI, 2003, Geohydrologic Report for the Luna Rosa LLC Equestrian Center Property, July 2003. -2025-09-30 11:12:45,106 [INFO ] GGI, 2003, Reconnaissance Geohydrology report of the Clements Property, Santa Fe, April, 2003. -2025-09-30 11:12:45,107 [INFO ] GGI, 2003, Reconnaissance Water Availability Assessment of the Santa Fe Waldorf School - High School -2025-09-30 11:12:45,107 [INFO ] GGI, 2004, Geohydrology of the Estancia Subdivision, Santa Fe County, December, 2004 -2025-09-30 11:12:45,107 [INFO ] GGI, 2004, Reconnaissance Geohydrology Report for the Beaty Property, Santa Fe Cty, Dec. 22, 2004. -2025-09-30 11:12:45,107 [INFO ] GGI, Chapter VI Geohydrology of the La Cienega de Santa Fe Project, Oct 1991; GGI, 100-Yr Water Availability, Downs at Santa Fe, March 2001 for Pojoaque Pueblo Development Corp -2025-09-30 11:12:45,107 [INFO ] GGI, Geohydro of Naiche Property, 12/92; field check by Johnson; well recd -2025-09-30 11:12:45,107 [INFO ] GGI, Geohydrologic report for the Rancho San Lucas Subdivision, Feb 2002 -2025-09-30 11:12:45,107 [INFO ] GGI, Geohydrology of La Canada Subdivision, Santa Fe County, NM, July 1985 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of Pop's Convenience Store, Santa Fe County, NM, Sept 29, 1997 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Brenner Property, Santa Fe County, NM, Aug 1990 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Bryant Prop, Santa Fe Cnty, May 1995; GGI, San Ysidro de Tesuque, May 1990 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Bryant Property, Santa Fe County, NM, May 1995; GGI, 1989 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Circle Drive Compound Prop, Santa Fe Cnty, May 1991 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Hansen Property, Santa Fe County, NM, June 1990 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Insight Investments Property, Santa Fe Cnty, NM, 2/20/90 -2025-09-30 11:12:45,108 [INFO ] GGI, Geohydrology of the Lane Property, Santa Fe Cnty, NM, 4/29/92 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the McElvain/Patania Property, 6/92 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990; GGI, Geohydrology of the Santa Fe Arroyo Hondo Vistas Subdivision, SFe County, Aug. 1989 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Migel Property, Santa Fe Cnty, 2/90; GGI, Geohydro of McMahon Prop 10/90 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Mountain Vista Subdivision, Santa Fe County, July 10, 2002 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Myers Property, Santa Fe Cnty, July 1992 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Naiche Property, Santa Fe County, NM, Dec 1992 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Prince Property, 8/91; McElvain-Patania Prop, 6/92 -2025-09-30 11:12:45,109 [INFO ] GGI, Geohydrology of the Santa Fe Animal Shelter Site, Santa Fe County, NM, May 15, 2002 -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Santa Fe Opera Tr, Santa Fe Cnty, 3/95; GGI, San Ysidro de Tesuque, 5/90 -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Shulman Property, Santa Fe Cnty, April 1990 -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Vrtiak Property, Santa Fe Cnty, June, 1991 -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the West Alameda Proj, Santa Fe Cnty, NM, Jan 1989 -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, March 19, 1992 -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct 14, 1994; GGI, Bryant Prop; WATERS -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct, 1994; GGI, Sangre de Cr Est, Jan 1989 -2025-09-30 11:12:45,110 [INFO ] GGI, Geohydrology Rept for Rancho San Lucas, Santa Fe Cnty, NM, Feb 2002; Geophysical logs -2025-09-30 11:12:45,111 [INFO ] GGI, January 2005 Alexsis Geohydrology report (by Meghan Hodgins). -2025-09-30 11:12:45,111 [INFO ] GGI, Reconnaissance Geohydrology Report, Leibman Property, Santa Fe County, NM. March 23, 1994 -2025-09-30 11:12:45,111 [INFO ] GGI, Reconnaissance Geohydrology Report, Neufeld Property, Santa Fe Cnty, Nov 1988 -2025-09-30 11:12:45,111 [INFO ] Glorieta Geoscience Inc. -2025-09-30 11:12:45,111 [INFO ] Glorieta Geoscience, Inc., 2006, Geohydrology and Water Availability for Phase 1, Santa Fe Canyon Ranch Subdivision, Santa Fe County, NM, March 22, 2006. -2025-09-30 11:12:45,111 [INFO ] GW-1: Geology & Ground-Water Resources of the Eastern Part of Colfax Cty, NM (1948) Griggs, Roy L., NMBGMR -2025-09-30 11:12:45,111 [INFO ] GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology -2025-09-30 11:12:45,111 [INFO ] GW-4: Geology & Groundwater Res. of NE Socorro Cty, NM (1955) Spiegel, Zane, NM Bureau of Geology -2025-09-30 11:12:45,112 [INFO ] GW5: Geology and Ground-Water Resources of Torrance County, NM (1957) R.E. Smith, NM Bureau of Geology -2025-09-30 11:12:45,112 [INFO ] GW9: Groundwater Resources & Geology of Quay County, NM (1966) Charles Berkstresser, Jr. & Walter A. Mourant, NM Bureau of Geology -2025-09-30 11:12:45,112 [INFO ] GWSI -2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; field check by Johnson -2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; field check by Johnson; D.Koning log review -2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; OFR 89-37; field check by Johnson; D.Koning log review -2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; WATERS -2025-09-30 11:12:45,112 [INFO ] GWSI/USGS well sheet; WATERS; Cooper, 1995; field check by Johnson -2025-09-30 11:12:45,113 [INFO ] GWSI/USGS well sheet; WATERS; field check by Johnson -2025-09-30 11:12:45,113 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson -2025-09-30 11:12:45,113 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson. -2025-09-30 11:12:45,113 [INFO ] GWSI; D.Koning log review -2025-09-30 11:12:45,113 [INFO ] GWSI; D.Koning log review; D.Koning log review -2025-09-30 11:12:45,113 [INFO ] GWSI; field check by Johnson -2025-09-30 11:12:45,113 [INFO ] GWSI; field check by Johnson; D.Koning log review -2025-09-30 11:12:45,113 [INFO ] GWSI; field check Johnson -2025-09-30 11:12:45,113 [INFO ] GWSI; Mourant; well record; field check by Johnson -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log books; field check by Johnson -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; field check by Johnson; field check by Lyman and SFC Utilities -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; well log; field check by Johnson -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson; field check by Lyman and SFC Utilities -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS logbooks; field check by Johnson -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS logbooks; Frost, 1996, Santa Fe County GWLs, 1995-96 Results, 1/96; K.Summers notes from 11/16/70 aquifer test; Frost, 1999, written comm. -2025-09-30 11:12:45,114 [INFO ] GWSI; USGS well sheet; field check by Johnson -2025-09-30 11:12:45,115 [INFO ] GWSI; USGS well sheet; well log; Johnson, 2003; VeneKlasen, 2/86, Geohydro Rept Arroyo Hondo West -2025-09-30 11:12:45,115 [INFO ] GWSI; USGS well sheets; field check by Johnson -2025-09-30 11:12:45,115 [INFO ] GWSI; water right declaration; field check by Johnson -2025-09-30 11:12:45,115 [INFO ] GWSI; water right declaration; field check Johnson; Aqua Drilling well log. WQ from Longmire -2025-09-30 11:12:45,115 [INFO ] GWSI; WATERS -2025-09-30 11:12:45,115 [INFO ] GWSI; well log; field check by Johnson -2025-09-30 11:12:45,115 [INFO ] GWSI; well record; field check by Johnson -2025-09-30 11:12:45,115 [INFO ] Hall, J., 2010, Blackstone Ranch Well RG-82913 48-hr Pumping Test, Taos, NM, GGI. -2025-09-30 11:12:45,116 [INFO ] Heaton (Sinagua Consultants), Well Hydro Report Capitol Ford Body Shop, Jan 1999 -2025-09-30 11:12:45,116 [INFO ] Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:12:45,116 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601 -2025-09-30 11:12:45,116 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8 -2025-09-30 11:12:45,116 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:12:45,116 [INFO ] HR-1: Geology & Ground-Water Resources of Central & Western Dona Ana County, NM (1971) King, W.E., Hawley, J.W., Taylor, A.M. and Wilson, R.P. New Mexico Bureau of Geology -2025-09-30 11:12:45,116 [INFO ] HR5: Groundwater in the Sandia and Northern Manzano Mtns, NM (1980) Frank B. Titus, NM Bureau of Geology -2025-09-30 11:12:45,116 [INFO ] Huff, G.F. (1996) Analysis of Ground-water data for selected wells near Holloman AFB, NM, 1950-1995. USGS WRIR-96-4116. -2025-09-30 11:12:45,116 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, 1988. -2025-09-30 11:12:45,117 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, March 17, 1988. -2025-09-30 11:12:45,117 [INFO ] Hydrologic and hydrogeologic analysis for the Guadalupe Mtn. ground-water discharge plan. June 1984, Water Resources Associates, Inc. -2025-09-30 11:12:45,117 [INFO ] Hydroscience Associates, Inc., 2006, Analysis of Aquifer Test Run Using Well RG-87082, Taos County, New Mexico. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:12:45,117 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:12:45,117 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:12:45,117 [INFO ] Information as personal communication from GGI -2025-09-30 11:12:45,117 [INFO ] Inventoried previously on 4/21/2015 as part of Clovis-Portales project -2025-09-30 11:12:45,117 [INFO ] Inventoried previously on 6/2/2015 as part of Clovis-Portales project -2025-09-30 11:12:45,118 [INFO ] J. Corbin, 2007 written communication -2025-09-30 11:12:45,118 [INFO ] J. Corbin, 2007, written communication -2025-09-30 11:12:45,118 [INFO ] J.Frost, 1999; WATERS -2025-09-30 11:12:45,118 [INFO ] Jemez y Sangre (2000); NMED DWB Info Sheet; WATERS -2025-09-30 11:12:45,118 [INFO ] Jenkins, 1979, Geohydrology of the Vista Subdivn, 12/79; C.A. Coonce & Assoc., 1977, Montoya Subdivn Water Availability Study for Cipriano Martinez, 12/77 -2025-09-30 11:12:45,118 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate -2025-09-30 11:12:45,118 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate. also Jenkins, Dec 1979, Geohydrology of the Vista Subdivision -2025-09-30 11:12:45,118 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978 -2025-09-30 11:12:45,118 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978. OSE Well Record. -2025-09-30 11:12:45,119 [INFO ] Jenkins, David,- Geohydrologic Investigation of the Turquoise Trail Subdivision, SF Cnty, July 1977 -2025-09-30 11:12:45,119 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn -2025-09-30 11:12:45,119 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn; Corbin Consulting, Inc., Mar 8, 2005, Geohydrology Report Longanecker Property -2025-09-30 11:12:45,119 [INFO ] JHA, May 2004, Well Report Buckman Wells No. 10-13, City of Santa Fe -2025-09-30 11:12:45,119 [INFO ] John Shomaker & Assoc., April 1995, Well report Sangre de Cristo Water Company Buckman Well No. 3a; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09, written comm. -2025-09-30 11:12:45,119 [INFO ] John Shomaker & Assoc, 1999, Well Report: Drilling, Construction, & Testing Hickox Well No. 2, 5/99; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning review -2025-09-30 11:12:45,119 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR -2025-09-30 11:12:45,119 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR. -2025-09-30 11:12:45,120 [INFO ] JSA completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau -2025-09-30 11:12:45,120 [INFO ] JSAI Well report for Proposed Desalination Well Field, City of Alamogordo, NM. June 2006. -2025-09-30 11:12:45,120 [INFO ] Kendall Taylor -2025-09-30 11:12:45,120 [INFO ] Kendall Taylor and drill log -2025-09-30 11:12:45,120 [INFO ] Kendall Taylor; OSE well log -2025-09-30 11:12:45,120 [INFO ] L. Sherson @ USGS determined that all but one water level taken by contractors for OSE at 334819108084801 were really taken from this location 334819108084601. Level on 9/25/2008 was at *4801 NM-15416 -2025-09-30 11:12:45,120 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:12:45,120 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). Part of OSE network, so thought it would have been in their system already. -2025-09-30 11:12:45,120 [INFO ] Lewis database of city wells; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:12:45,121 [INFO ] Lewis database, 2001; Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94; Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98 -2025-09-30 11:12:45,121 [INFO ] Lithlog personal communication w/GGI. -2025-09-30 11:12:45,121 [INFO ] local individuals: Layne Preslar, Bob Hubbard -2025-09-30 11:12:45,121 [INFO ] Longmire, Patrick, July 1985, Hydrogeochemical Study Along the Santa Fe River; field check -2025-09-30 11:12:45,121 [INFO ] Longmire, Patrick, July 1985. A Hydrogeochemical Study Along the Valley of the Santa Fe River -2025-09-30 11:12:45,121 [INFO ] Lou Wilkerson -2025-09-30 11:12:45,121 [INFO ] Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018 -2025-09-30 11:12:45,121 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. -2025-09-30 11:12:45,122 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. References additional well tests by M.J. Darr. -2025-09-30 11:12:45,122 [INFO ] Mark Defibaugh -2025-09-30 11:12:45,122 [INFO ] Martinez Surveying Co., [Hydrogeologic Report for] Miller Subdivision, Jan 1984 -2025-09-30 11:12:45,122 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multi -2025-09-30 11:12:45,122 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multip -2025-09-30 11:12:45,122 [INFO ] McLean, J.S. (1970) Saline Ground-Water Resources of the Tularosa Basin, NM. Office of Saline Water, R&D Progress Rpt 561 -2025-09-30 11:12:45,122 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:12:45,122 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 (1980 water level) -2025-09-30 11:12:45,123 [INFO ] MJ Darr (July 2006) Pump Test of WL-0007. -2025-09-30 11:12:45,123 [INFO ] Mourant; GWSI; field check by Johnson; USGS well schedules -2025-09-30 11:12:45,123 [INFO ] Mourant; GWSI; field check by Johnson; well log. -2025-09-30 11:12:45,123 [INFO ] MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources -2025-09-30 11:12:45,123 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:12:45,123 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron/Socorro/Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:12:45,123 [INFO ] NA03200901BBB -2025-09-30 11:12:45,123 [INFO ] NA03200912ACC -2025-09-30 11:12:45,124 [INFO ] NA03201066BBB -2025-09-30 11:12:45,124 [INFO ] NA03300814CCC -2025-09-30 11:12:45,124 [INFO ] NA03300914CCC -2025-09-30 11:12:45,124 [INFO ] NA03300921CCC -2025-09-30 11:12:45,124 [INFO ] NA03300922ACC -2025-09-30 11:12:45,124 [INFO ] NA03300933CAB -2025-09-30 11:12:45,124 [INFO ] NA03300933CAB2 -2025-09-30 11:12:45,124 [INFO ] NA03300935DBB -2025-09-30 11:12:45,125 [INFO ] NA03300936DBB -2025-09-30 11:12:45,125 [INFO ] NA03301014DDD -2025-09-30 11:12:45,125 [INFO ] NA03301019CCD -2025-09-30 11:12:45,125 [INFO ] NA03301020CCB -2025-09-30 11:12:45,125 [INFO ] NMBG -2025-09-30 11:12:45,125 [INFO ] NMBGMR -2025-09-30 11:12:45,125 [INFO ] NMBGMR & USGS -2025-09-30 11:12:45,125 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; Camp Dresser & McKee, Jan. 2000, -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); OSE 2005 WL field sheets; WATERS -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS. OSE Well Record. -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; J. Corbin, written communication, 2007 -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project files; JSAI, 2001,App. #6 -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; JSAI (2001) App. #6 -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; Minton log and pump test; JS&A, 2001 well log and water levels -2025-09-30 11:12:45,126 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; Summer's project files; Minton log; Frost, 1996, Review of El Dorado area water production and GW resource, June '96; JSAI, 2001, App. #6 -2025-09-30 11:12:45,126 [INFO ] NMED Solid Waste Bureau monitoring reports. -2025-09-30 11:12:45,127 [INFO ] NMED Spring Survey and Monitor Well Survey -2025-09-30 11:12:45,127 [INFO ] NMED SW Bureau data report, URS Corp.; written communications from NMED SolidWaste Bureau -2025-09-30 11:12:45,127 [INFO ] NMED SWP Atlas online -2025-09-30 11:12:45,127 [INFO ] NMOSE POD only -2025-09-30 11:12:45,127 [INFO ] NMOSE Well log -2025-09-30 11:12:45,127 [INFO ] No well inventory form for this site. Just coordinates, photo and well log. -2025-09-30 11:12:45,127 [INFO ] NRCS Well development document (Excel spreadsheet) -2025-09-30 11:12:45,127 [INFO ] OCD AP-100 report by Conestoga-Rovers & Associates -2025-09-30 11:12:45,128 [INFO ] OCD AP-101 Report by Arcadis U.S. Inc. -2025-09-30 11:12:45,128 [INFO ] OCD AP-104 Report by Conestoga-Rovers and Associates -2025-09-30 11:12:45,128 [INFO ] OCD AP-105 Report by GHD -2025-09-30 11:12:45,128 [INFO ] OCD AP-107 Report by Arcadis U.S. Inc -2025-09-30 11:12:45,128 [INFO ] OCD AP-112 Report by Larson & Associates, Inc. -2025-09-30 11:12:45,128 [INFO ] OCD AP-114 Report by Tasman Geosciences -2025-09-30 11:12:45,128 [INFO ] OCD AP-115 Report by Conestoga-Rovers and Associates -2025-09-30 11:12:45,129 [INFO ] OCD AP-118 Report by GHD -2025-09-30 11:12:45,129 [INFO ] OCD AP-120 Report by GHD Services Inc. -2025-09-30 11:12:45,129 [INFO ] OCD AP-56 Report by GHD -2025-09-30 11:12:45,129 [INFO ] OCD AP-62 Report by R.T. Hicks Consultants, Ltd -2025-09-30 11:12:45,129 [INFO ] OCD AP-71 Report by Rice Operating Company -2025-09-30 11:12:45,129 [INFO ] OCD AP-73 Report by Enviro Clean Cardinal LLC -2025-09-30 11:12:45,129 [INFO ] OCD AP-75 Report by Rice Environmental Consulting & Safety, LLC -2025-09-30 11:12:45,129 [INFO ] OCD AP-87 Report by by Tetra Tech -2025-09-30 11:12:45,130 [INFO ] OCD AP-88 Report by Tetra Tech -2025-09-30 11:12:45,130 [INFO ] OCD AP-91 Report by Talon/LPE -2025-09-30 11:12:45,130 [INFO ] OCD AP-94 Report by Tetra Tech -2025-09-30 11:12:45,130 [INFO ] OCD AP-95 report by Tetra Tech -2025-09-30 11:12:45,130 [INFO ] OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:12:45,130 [INFO ] OFR-51: Hydrogeology of the San Agustin Plains, NM (1973) Blodgett, Daniel D. and Titus, Frank B., NMBGMR -2025-09-30 11:12:45,130 [INFO ] Onwer -2025-09-30 11:12:45,130 [INFO ] Original data and chemistry from Lynn Brandvold with NMBGMR chemistry lab. We visited site in July 2015 took GPS location and found well record. -2025-09-30 11:12:45,131 [INFO ] OSE -2025-09-30 11:12:45,131 [INFO ] OSE and Foreman. -2025-09-30 11:12:45,131 [INFO ] OSE database. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:12:45,131 [INFO ] OSE field notes -2025-09-30 11:12:45,131 [INFO ] OSE field sheet -2025-09-30 11:12:45,131 [INFO ] OSE macth doubtful, usgs depth is much different, 311 vs 375 -2025-09-30 11:12:45,131 [INFO ] OSE POD record -2025-09-30 11:12:45,131 [INFO ] OSE POD record. -2025-09-30 11:12:45,132 [INFO ] OSE Record and owner recollection -2025-09-30 11:12:45,132 [INFO ] OSE records -2025-09-30 11:12:45,132 [INFO ] OSE records and owner recollection. -2025-09-30 11:12:45,132 [INFO ] OSE records and well owner records. -2025-09-30 11:12:45,132 [INFO ] OSE records online. -2025-09-30 11:12:45,132 [INFO ] OSE Records, some info from well owner -2025-09-30 11:12:45,132 [INFO ] OSE Records, well owner provided info. -2025-09-30 11:12:45,132 [INFO ] OSE Records, well owner recollection. -2025-09-30 11:12:45,132 [INFO ] OSE Records. -2025-09-30 11:12:45,133 [INFO ] OSE Records. Gary Goss at TWSD. -2025-09-30 11:12:45,133 [INFO ] OSE records. PN031 may not be it. Well is very old. -2025-09-30 11:12:45,133 [INFO ] OSE WATERS site -2025-09-30 11:12:45,133 [INFO ] OSE website -2025-09-30 11:12:45,133 [INFO ] OSE website info, no well record. Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:12:45,133 [INFO ] OSE website, no well record. -2025-09-30 11:12:45,133 [INFO ] OSE website, no well record. Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:12:45,133 [INFO ] OSE website, well record available at OSE office. -2025-09-30 11:12:45,134 [INFO ] OSE website, well record maybe available at OSE office. -2025-09-30 11:12:45,134 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 -2025-09-30 11:12:45,134 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09 -2025-09-30 11:12:45,134 [INFO ] OSE well log. Some data from USGS. Overlapping site data. -2025-09-30 11:12:45,134 [INFO ] OSE Well record -2025-09-30 11:12:45,134 [INFO ] OSE well record and owner -2025-09-30 11:12:45,134 [INFO ] OSE well record and owner info -2025-09-30 11:12:45,134 [INFO ] OSE well record and site visit -2025-09-30 11:12:45,135 [INFO ] OSE Well Record and well owner -2025-09-30 11:12:45,135 [INFO ] OSE well record. -2025-09-30 11:12:45,135 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:12:45,135 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project file and Sandia Drilling well log -2025-09-30 11:12:45,135 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:12:45,135 [INFO ] Owner -2025-09-30 11:12:45,135 [INFO ] Owner - well dirlled in 60s. -2025-09-30 11:12:45,135 [INFO ] owner - well drilled by father, using septic auger. -2025-09-30 11:12:45,135 [INFO ] Owner - well drilled in 50's. owner has some records. -2025-09-30 11:12:45,136 [INFO ] Owner and OSE record -2025-09-30 11:12:45,136 [INFO ] Owner and OSE site. -2025-09-30 11:12:45,136 [INFO ] Owner and OSE well record. -2025-09-30 11:12:45,136 [INFO ] Owner and well record. -2025-09-30 11:12:45,136 [INFO ] Owner field check; WATERS -2025-09-30 11:12:45,136 [INFO ] Owner recollection -2025-09-30 11:12:45,136 [INFO ] Owner recollection and limited OSE records. -2025-09-30 11:12:45,136 [INFO ] Owner recollection and OSE POD record. -2025-09-30 11:12:45,137 [INFO ] Owner recollection of well depth and water level -2025-09-30 11:12:45,137 [INFO ] Owner recollection. -2025-09-30 11:12:45,137 [INFO ] Owner recollection; OSE Records -2025-09-30 11:12:45,137 [INFO ] Owner. -2025-09-30 11:12:45,137 [INFO ] Owner. OSE well records -2025-09-30 11:12:45,137 [INFO ] P. Drakos, et al., 2004, Chemical & Isotopic Constraints on Source-Waters and Connectivity of Basin-Fill Aquifers in the Southern San Luis Basin, NM. NMGS Guidebook 55, pg 405. -2025-09-30 11:12:45,137 [INFO ] PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM -2025-09-30 11:12:45,137 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID # S264) -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S037) -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S040) -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S101) -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S146) -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S164) -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S220) -2025-09-30 11:12:45,138 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S265) -2025-09-30 11:12:45,139 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. -2025-09-30 11:12:45,139 [INFO ] Plummer, LN, Bexfield, LM, et al., 2004 Geochem. Characterization of Grd-water Flow in the Santa Fe Grp Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. -2025-09-30 11:12:45,139 [INFO ] Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis -2025-09-30 11:12:45,139 [INFO ] Pretty certain C011 is Burns EPA sample. -2025-09-30 11:12:45,139 [INFO ] Prindle-Hinds well completion log to NMED SW Bureau -2025-09-30 11:12:45,139 [INFO ] Pump test performed as noted in Meyers report. USGS WRI 94-4125 -2025-09-30 11:12:45,139 [INFO ] Ranch foreman. -2025-09-30 11:12:45,139 [INFO ] Rankin, Dale, 2005, Personal Communication USGS Well Drilling Reports -2025-09-30 11:12:45,139 [INFO ] Reardon et al. (2021) Addendum to Water Res. Assessment NM Permian Basin SAND2021-1869 -2025-09-30 11:12:45,140 [INFO ] Reardon, et al. (2021) Addendum to Water Res. Assessment in NM Permian Basin. SAND2021-1869. -2025-09-30 11:12:45,140 [INFO ] RGDSSP12 -2025-09-30 11:12:45,140 [INFO ] Romero -2025-09-30 11:12:45,140 [INFO ] San Pedro Creek Estates HOA -2025-09-30 11:12:45,140 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files -2025-09-30 11:12:45,140 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files; DKoning cutting review -2025-09-30 11:12:45,140 [INFO ] Sandia National Labs/ BLM Wells -2025-09-30 11:12:45,141 [INFO ] Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:12:45,141 [INFO ] Sangre de Cristo/OSE, WATERS, Borchert report, Watson and Rappuhn/Shomaker & Assoc., 4/99, WellReport: Drilling, Construction and Testing, City of Santa Fe Northwest Area Test Well; D.Koning review -2025-09-30 11:12:45,141 [INFO ] Santa Fe County records; well log; field check -2025-09-30 11:12:45,141 [INFO ] Santa Fe County Utilities field notes; -2025-09-30 11:12:45,141 [INFO ] SECOR report to NMED UST Bureau -2025-09-30 11:12:45,141 [INFO ] Shoemaker & Fleming, MWB Survey, 1990; Mourant, 1980 -2025-09-30 11:12:45,141 [INFO ] Shomaker & Associates, 2004, Well Report Buckman Wells No. 10-13 City of Santa Fe, New Mexico, May 2004; C. Borchert, written communication, 3/23/09 -2025-09-30 11:12:45,141 [INFO ] Shomaker & Associates, April 2003, Well Report: Drilling, Construction, and Testing of SF Buckman 9; C. Borchert, written communication, 3/23/09 -2025-09-30 11:12:45,142 [INFO ] Site check; well record -2025-09-30 11:12:45,142 [INFO ] Site visit by Johnson during drilling; drillers report; J. Corbin, written communication, 2007 -2025-09-30 11:12:45,142 [INFO ] Slinglerland & Borton, Geohydro of Avanti Business Park, 8/85 (App F to GGI, Santa Fe Metro, 12/01); lithologic log by GGI, review by D.Koning -2025-09-30 11:12:45,142 [INFO ] SNL report for manual water level and water quality -2025-09-30 11:12:45,142 [INFO ] Some chemistry from EPA via NM Health Dept. -2025-09-30 11:12:45,142 [INFO ] Some data from USGS. Overlapping site data. -2025-09-30 11:12:45,142 [INFO ] Some data from USGS. Overlapping site data. Aquifer type from USGS. -2025-09-30 11:12:45,142 [INFO ] Some data from USGS. Overlapping site data. Formation pick from USGS. -2025-09-30 11:12:45,143 [INFO ] Some limited WQ measurements at well and nearby stream. Filed. Not entered. -2025-09-30 11:12:45,143 [INFO ] Some water levels from USGS -2025-09-30 11:12:45,143 [INFO ] Some WL's from Lee Foster Well Services -2025-09-30 11:12:45,143 [INFO ] Some WLs from USGS & Dames and Moore (4/11/1986). Some WQ from Vail Engineering (Sept. 1993). -2025-09-30 11:12:45,143 [INFO ] Souder-Miller & Assoc., 1995, Unpublished Consultant's Report, Fig 2, well completion diagram -2025-09-30 11:12:45,143 [INFO ] Source data for some chemistry for this location is from the US EPA. -2025-09-30 11:12:45,143 [INFO ] Source data for this location is from the US EPA & NMED water quality. -2025-09-30 11:12:45,143 [INFO ] Source data for this location is from the US EPA. -2025-09-30 11:12:45,144 [INFO ] T.Decker, written comm., 2000 (letter to B.McLean "Testing - EUI Well #15", 2/25/2000); -2025-09-30 11:12:45,144 [INFO ] Taos Soil & Water Concervation District -2025-09-30 11:12:45,144 [INFO ] Taos Soil & Water Conservation District -2025-09-30 11:12:45,144 [INFO ] Taos Soil & Water Conservation District water sample study. -2025-09-30 11:12:45,144 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM -2025-09-30 11:12:45,144 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM; field check by Johnson -2025-09-30 11:12:45,144 [INFO ] Theis, C.V., Taylor, Jr., G.C., and Murray, C.R. (1941) Thermal Waters of the Hot Springs Artesian Basin Sierra County, New Mexico. U.S. Geological Survey in cooperation with State Engineer of New Mex -2025-09-30 11:12:45,145 [INFO ] TSWCD -2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Apdx. 2 & 3. (Data from Drakos, GGI, 1996) Report filed w/TV-229. Al -2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Appendices 1, 3, 4 -2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, pg. 7, Table 1. -2025-09-30 11:12:45,145 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivison, Taos County, New Mexico, Turner Environmental Consultants, Pg. 18, Table 1, and Appendices 2,3. (Data from Jenkins in 1982). Ful -2025-09-30 11:12:45,145 [INFO ] undeclared well. -2025-09-30 11:12:45,145 [INFO ] URS Corp. for Chevron -2025-09-30 11:12:45,145 [INFO ] USFS - Espanola Ranger District - Range Improvement records. -2025-09-30 11:12:45,146 [INFO ] USGS & Garrabrant, L.A. (1993) Water Resources of Taos County, NM USGS WRIR 93-4107 (chemistry sample). This well matched to Garrabrant well via notes from Tony Benson's Sunshine notebooks. -2025-09-30 11:12:45,146 [INFO ] USGS & Myers, Everheart, Wilson (1994) Geohydrol. Of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, WRI 94-4125 -2025-09-30 11:12:45,146 [INFO ] USGS & NMED SWP Atlas online -2025-09-30 11:12:45,146 [INFO ] USGS & Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:12:45,146 [INFO ] USGS & Texas Water Development Board -2025-09-30 11:12:45,146 [INFO ] USGS & Winograd, I.J. (1959) Ground-water Conditions & Geology of Sunshine Valley & Western Taos Cty, NM, NMSEO, Tech. Report #12. & Garrabrant, L.A. (1993) USGS WRIR 93-4107 -2025-09-30 11:12:45,146 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:12:45,147 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:12:45,147 [INFO ] USGS and Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:12:45,147 [INFO ] USGS Chem Analysis Sheet from R.L. Borton Files. 1970; WATERS; C.Borchert, 3/23/09, written communication -2025-09-30 11:12:45,147 [INFO ] USGS Drillers reports -2025-09-30 11:12:45,147 [INFO ] USGS drillers reports; D.Koning cuttings review -2025-09-30 11:12:45,147 [INFO ] USGS drilling reports; D.Koning cutting review -2025-09-30 11:12:45,147 [INFO ] USGS Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:12:45,147 [INFO ] USGS, chemistry from Lynn Brandvold with NMBGMR chemistry lab, OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:12:45,148 [INFO ] USGS. POD log not available. -2025-09-30 11:12:45,148 [INFO ] USGS. Well screens/WQ from Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:12:45,148 [INFO ] USGS/OSE water-level data sheets; WATERS -2025-09-30 11:12:45,148 [INFO ] USGS; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:12:45,148 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, New Mexico, NM OSE Technical Report 8. -2025-09-30 11:12:45,148 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, NM, OSE Technical Report 8. -2025-09-30 11:12:45,149 [INFO ] USGS; Screens from NPS water level and well documentation -2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc, 1984, Remuda Ridge Warehouse, Santa Fe County, NM, October 1984 -2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc, Inc., 1982, Geohydrology Rept, Pecos Trail Subdn, Santa Fe Cnty, Aug 1982 -2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc., 1984, Geohydrology Report, Hondo Trails Subdn, Santa Fe Cnty, Dec 1984 -2025-09-30 11:12:45,149 [INFO ] VeneKlasen & Assoc., Inc., 1986, Geohydrology Report, Talbot Subdivision, May 1986 -2025-09-30 11:12:45,149 [INFO ] VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75 -2025-09-30 11:12:45,150 [INFO ] Veneklasen, 1977, Geohydro Lanphere -- Rio Villa Subdivision, AguaFria Rd, 5/77 -2025-09-30 11:12:45,150 [INFO ] Veneklasen, 1977, Hydrogeologic Report La Tierra Subdivn, Phase III, May 1977, Consulting Prof Inc -2025-09-30 11:12:45,150 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977 -2025-09-30 11:12:45,150 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977; field check Cruz/Frost -2025-09-30 11:12:45,150 [INFO ] Veneklasen, 1980, Geohydro of Santiago Subdivision, 10/80 -2025-09-30 11:12:45,150 [INFO ] VeneKlasen, 6/75, Hydrogeo Rept La Tierra; field check by Johnson -2025-09-30 11:12:45,150 [INFO ] VeneKlasen, Hydrogeologic Report for La Tierra Subdivision 6/75; well log; field check Johnson -2025-09-30 11:12:45,151 [INFO ] Water chemistry from TSWCD. Fairly sure this is COS-11, eventhough there is a descrepency between well log depth and well depth on chemistry sheet. -2025-09-30 11:12:45,151 [INFO ] Water Quality: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. -2025-09-30 11:12:45,151 [INFO ] WATERS; field check -2025-09-30 11:12:45,151 [INFO ] WATERS; Lewis database, 2001; VeneKlasen, 1975, Hydrogeologic Report LaTierra, 6/75; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review; C.Borchert, 3/23/09, written comm -2025-09-30 11:12:45,151 [INFO ] WATERS; WK Summers project files; JSAI, 2001, App. #6; J. Frost project files (1999) -2025-09-30 11:12:45,151 [INFO ] Watson/Shomaker & Assoc., 5/97, Well Report, Drilling, Construction, and Testing, City of Santa Fe, Torreon Well No. 2, for PNM Water Services Santa Fe, NM; CDM, Jan 2000, Water Supply Analysis -2025-09-30 11:12:45,151 [INFO ] Well owner. -2025-09-30 11:12:45,152 [INFO ] Well also in PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM -2025-09-30 11:12:45,152 [INFO ] well depth from Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:12:45,152 [INFO ] Well in Meyers report: Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:12:45,152 [INFO ] Well info from inside well cap, presumably from driller? -2025-09-30 11:12:45,152 [INFO ] Well Log -2025-09-30 11:12:45,152 [INFO ] Well log and completion diagrams -2025-09-30 11:12:45,152 [INFO ] Well log and field check by Johnson; not previously in GWSI -2025-09-30 11:12:45,152 [INFO ] Well log and well completion diagrams -2025-09-30 11:12:45,152 [INFO ] Well log and well completion diagrams. WQ data from P. Longmire Santa Fe River 1985 Report -2025-09-30 11:12:45,153 [INFO ] Well log/record by GGI; field check by Johnson -2025-09-30 11:12:45,153 [INFO ] Well log; field check -2025-09-30 11:12:45,153 [INFO ] Well log; field check by Johnson -2025-09-30 11:12:45,153 [INFO ] well log; field check by Johnson; owner -2025-09-30 11:12:45,153 [INFO ] well log; Johnson field check -2025-09-30 11:12:45,153 [INFO ] Well Log; JSAI, 2001, App. #6 -2025-09-30 11:12:45,153 [INFO ] Well owner -2025-09-30 11:12:45,153 [INFO ] Well owner and old well record. -2025-09-30 11:12:45,154 [INFO ] Well owner and OSE site info. -2025-09-30 11:12:45,154 [INFO ] Well owner, and well record. -2025-09-30 11:12:45,154 [INFO ] Well owner. -2025-09-30 11:12:45,154 [INFO ] Well record. -2025-09-30 11:12:45,154 [INFO ] Well record; field check -2025-09-30 11:12:45,154 [INFO ] Well record; field check by Cruz/Frost -2025-09-30 11:12:45,154 [INFO ] well record; field check by Johnson -2025-09-30 11:12:45,154 [INFO ] Well record; field check by Johnson; owner -2025-09-30 11:12:45,154 [INFO ] Well record; field check by Lyman -2025-09-30 11:12:45,155 [INFO ] Well record; field check by Lyman; SWL measured by GGI/reported by Cooper, 2000, Rept for Roybal -2025-09-30 11:12:45,155 [INFO ] Well record; field check with SFC Utilities (Leonard Quintana 490-0065) -2025-09-30 11:12:45,155 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:12:45,155 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:12:45,155 [INFO ] WK Summers project files; WATERS; Water Industries, Inc., 1982, Testing of Eldorado Well #1, Jan. 1982; water levels from W-1 and EUI#1; JSAI, 2001, App. #6 -2025-09-30 11:12:45,155 [INFO ] WL from USGS; chemistry and other data from Lynn Brandvold with NMBGMR chemistry lab & OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:12:45,155 [INFO ] WQ also from MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources. -2025-09-30 11:12:45,155 [INFO ] WQ from Taos Soil & Water Conservation District -2025-09-30 11:12:45,156 [INFO ] Z. Spiegel, 1972, Interpretation and application of an aquifer performance test on well RG-20228 at Pojoaque Terrace trailer court site HC McDonald Property, Santa Fe County, NM, 9/14/72 -2025-09-30 11:13:01,665 [INFO ] Reached limit of 10 rows. Stopping migration. -2025-09-30 11:13:01,677 [INFO ] transfer_wells took 27.647673 seconds -2025-09-30 11:13:02,705 [INFO ] transfer_wellscreens took 1.027705 seconds -2025-09-30 11:13:02,705 [INFO ] -2025-09-30 11:13:02,706 [INFO ] ********** TRANSFERRING CONTACTS ********** -2025-09-30 11:13:06,296 [INFO ] Processing PointID: 221 EB-663 -2025-09-30 11:13:06,310 [WARNING ] first 'Thompson, Warren' Skipping physical address. Validation error: 1 validation error for CreateAddress -postal_code - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.11/v/string_type -2025-09-30 11:13:06,319 [CRITICAL] Skipping first contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} -[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] -[parameters: ('Warren Thompson', 'Los Atrevidos, Inc.', 'Owner', 'Primary', None, None, None, None, None, None, None, 'private')] -(Background on this error at: https://sqlalche.me/e/20/f405) -2025-09-30 11:13:06,329 [CRITICAL] Skipping second contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} -[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] -[parameters: ("Warren's son", 'Los Atrevidos, Inc.', 'Owner', 'Secondary', None, None, None, None, None, None, None, 'private')] -(Background on this error at: https://sqlalche.me/e/20/f405) -2025-09-30 11:13:06,332 [INFO ] Processing PointID: 441 EB-057 -2025-09-30 11:13:06,342 [INFO ] added first contact for PointID EB-057 -2025-09-30 11:13:06,343 [CRITICAL] Skipping second contact for PointID EB-057 due to validation error: 1 validation error for CreateContact - Value error, Either name or organization must be provided. [type=value_error, input_value={'thing_id': 8, 'release_...ails': [], 'phones': []}, input_type=dict] - For further information visit https://errors.pydantic.dev/2.11/v/value_error -2025-09-30 11:13:06,343 [INFO ] transfer_contacts took 3.63708 seconds -2025-09-30 11:13:06,343 [INFO ] -2025-09-30 11:13:06,343 [INFO ] ********** TRANSFERRING LINK IDS ********** -2025-09-30 11:13:08,328 [INFO ] Processing PointID: DE-0219, Thing ID: 1, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:13:08,334 [INFO ] Processing PointID: EB-057, Thing ID: 8, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:13:08,340 [INFO ] Processing PointID: BW-0131, Thing ID: 5, AlternateSiteID=11S9E22.441, AlternateSiteID2=None -2025-09-30 11:13:08,341 [INFO ] adding link id: BW-0131 -2025-09-30 11:13:08,360 [INFO ] Processing PointID: EB-663, Thing ID: 9, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:13:08,366 [INFO ] Processing PointID: TO-0225, Thing ID: 3, AlternateSiteID=6N8E11.42, AlternateSiteID2=None -2025-09-30 11:13:08,366 [INFO ] adding link id: TO-0225 -2025-09-30 11:13:08,379 [INFO ] Processing PointID: UC-0100, Thing ID: 6, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:13:08,384 [INFO ] Processing PointID: QY-0274, Thing ID: 4, AlternateSiteID=11.31.19.333, AlternateSiteID2=None -2025-09-30 11:13:08,385 [INFO ] adding link id: QY-0274 -2025-09-30 11:13:08,398 [INFO ] Processing PointID: PC-037, Thing ID: 10, AlternateSiteID=PW-060, AlternateSiteID2=None -2025-09-30 11:13:08,399 [INFO ] adding link id: PC-037 -2025-09-30 11:13:08,408 [INFO ] Processing PointID: NM-26878, Thing ID: 2, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:13:08,414 [INFO ] Processing PointID: QY-0181, Thing ID: 7, AlternateSiteID=11.30.14.143b, AlternateSiteID2=None -2025-09-30 11:13:08,414 [INFO ] adding link id: QY-0181 -2025-09-30 11:13:08,422 [INFO ] transfer_link_ids took 2.07784 seconds -2025-09-30 11:13:09,998 [WARNING ] Both OSEWellID and OSEWelltagID are null for DE-0219 -2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for NM-26878 -2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for TO-0225 -2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0274 -2025-09-30 11:13:09,999 [WARNING ] Both OSEWellID and OSEWelltagID are null for BW-0131 -2025-09-30 11:13:10,002 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for UC-0100 -2025-09-30 11:13:10,003 [WARNING ] OSEWellTagID is null for UC-0100 -2025-09-30 11:13:10,004 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0181 -2025-09-30 11:13:10,009 [WARNING ] OSEWellTagID is null for EB-057 -2025-09-30 11:13:10,028 [WARNING ] OSEWellTagID is null for EB-663 -2025-09-30 11:13:10,037 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for PC-037 -2025-09-30 11:13:10,037 [WARNING ] OSEWellTagID is null for PC-037 -2025-09-30 11:13:10,039 [INFO ] transfer_link_ids_welldata took 1.617317 seconds -2025-09-30 11:13:10,039 [INFO ] -2025-09-30 11:13:10,040 [INFO ] ********** TRANSFERRING GROUPS ********** -2025-09-30 11:13:10,997 [INFO ] Adding 2 things to group La Cienega, prefix EB -2025-09-30 11:13:11,030 [INFO ] Adding 2 things to group Espanola Basin, prefix EB -2025-09-30 11:13:11,064 [INFO ] Adding 1 things to group Union County, prefix UC -2025-09-30 11:13:11,170 [INFO ] Adding 1 things to group New Mexico, prefix NM -2025-09-30 11:13:11,255 [INFO ] Adding 2 things to group Quay County, prefix QY -2025-09-30 11:13:11,278 [INFO ] Adding 1 things to group Brackish Water, prefix BW -2025-09-30 11:13:11,327 [INFO ] Adding 1 things to group Torrance County, prefix TO -2025-09-30 11:13:11,386 [INFO ] Adding 1 things to group Placitas, prefix PC -2025-09-30 11:13:11,482 [INFO ] Adding 1 things to group Delaware Basin, prefix DE -2025-09-30 11:13:11,497 [INFO ] Adding 1 things to group ABCWUA, prefix NM -2025-09-30 11:13:11,536 [INFO ] transfer_groups took 1.49604 seconds -2025-09-30 11:13:11,536 [INFO ] -2025-09-30 11:13:11,536 [INFO ] ********** TRANSFERRING WATER LEVELS ********** -2025-09-30 11:13:15,354 [INFO ] Valid Measuring Agencies: -2025-09-30 11:13:15,354 [INFO ] NMBGMR -2025-09-30 11:13:15,354 [INFO ] NMT -2025-09-30 11:13:15,355 [INFO ] NPS -2025-09-30 11:13:15,355 [INFO ] SNL -2025-09-30 11:13:15,355 [INFO ] TSWCD -2025-09-30 11:13:15,355 [INFO ] USFS -2025-09-30 11:13:15,359 [INFO ] Processing PointID: EB-663 -2025-09-30 11:13:15,368 [INFO ] Created field event: . -2025-09-30 11:13:15,373 [INFO ] Created field activity: . -2025-09-30 11:13:15,377 [INFO ] Created contact: -2025-09-30 11:13:15,383 [INFO ] Created field event contact: -2025-09-30 11:13:15,384 [INFO ] Created sample: -2025-09-30 11:13:15,384 [INFO ] Created observation: -2025-09-30 11:13:15,417 [INFO ] Created field event: . -2025-09-30 11:13:15,420 [INFO ] Created field activity: . -2025-09-30 11:13:15,424 [INFO ] Created field event contact: -2025-09-30 11:13:15,425 [INFO ] Created sample: -2025-09-30 11:13:15,425 [INFO ] Created observation: -2025-09-30 11:13:15,441 [INFO ] transfer_water_levels took 3.90455 seconds -2025-09-30 11:13:15,441 [INFO ] transfer_all took 48.656553 seconds -2025-09-30 11:13:16,477 [INFO ] Uploaded log to gs://ocotillo/transfer_logs/transfer_2025-09-30T11h12m26s.log -2025-09-30 11:13:16,477 [INFO ] -2025-09-30 11:13:16,477 [INFO ] ********** END-------------------------------------- ********** diff --git a/transfer_2025-09-30T11h20m36s.log b/transfer_2025-09-30T11h20m36s.log deleted file mode 100644 index 9207bd06f..000000000 --- a/transfer_2025-09-30T11h20m36s.log +++ /dev/null @@ -1,750 +0,0 @@ -2025-09-30 11:20:36,132 [INFO ] -2025-09-30 11:20:36,132 [INFO ] ********** START-------------------------------------- ********** -2025-09-30 11:20:36,132 [INFO ] ********** STARTING TRANSFER ********** -2025-09-30 11:20:36,133 [INFO ] Erasing existing data and initializing lexicon and sensors -2025-09-30 11:20:36,133 [INFO ] Erasing existing data -2025-09-30 11:20:36,488 [INFO ] Recreating tables -2025-09-30 11:20:36,860 [INFO ] erase took 0.726654 seconds -2025-09-30 11:20:36,860 [INFO ] Initializing lexicon -2025-09-30 11:20:42,637 [INFO ] lexicon took 5.777187 seconds -2025-09-30 11:20:42,637 [INFO ] Initializing sensors -2025-09-30 11:20:42,646 [INFO ] sensor took 0.008465 seconds -2025-09-30 11:20:42,646 [INFO ] -2025-09-30 11:20:42,646 [INFO ] ********** TRANSFERRING WELLS ********** -2025-09-30 11:20:46,708 [INFO ] Valid WellData Datasources: -2025-09-30 11:20:46,708 [INFO ] (Author?), 1998, Geohydrology of River Bend Subdivision Taos County, New Mexico, Glorieta Geoscience, Inc. Appendix A. (Full report filed w/TV-121). -2025-09-30 11:20:46,708 [INFO ] 1) Author?, 1995, Town of Taos San Juan/Chama Diversion Proj., Phase 2, Vol. 1, Production Well & Observation Well Installation, Testing, and Determination of Aquifer Coefficients, GGI. 2) Water Level -2025-09-30 11:20:46,709 [INFO ] 1) Bernalillo County, Sara Chudnoff; 2) San Pedro Creek Estates HOA -2025-09-30 11:20:46,709 [INFO ] 1) BLM - Part of the Capitan Aquifer Observation-Well Network -2025-09-30 11:20:46,709 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 3) Sandia Report SAND2018-12018 NM Permian Basin -2025-09-30 11:20:46,709 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:20:46,709 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources -2025-09-30 11:20:46,709 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources 2) Pre-Design Groundwater Investigation at the Tailing Facil. ARCADIS -2025-09-30 11:20:46,710 [INFO ] 1) Drakos, P., Riesterer, J., Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, GGI (Filed w/TV-171). 2) Water Level Monitoring Prgm. -2025-09-30 11:20:46,710 [INFO ] 1) GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology; 2) USGS -2025-09-30 11:20:46,710 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) 3) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:20:46,710 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:20:46,711 [INFO ] 1) Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:20:46,711 [INFO ] 1) Sandia National Labs/ BLM Wells, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:20:46,711 [INFO ] 1) Turner, B., 1996, Water Availability for the El Mirador Subdvn, Taos Cty, NM, Turner Environ. Consult., Appd 2&3 (filed w/TV-229). 2) Vista del Valle report (filed w/TV-153). 3) Drakos, P. 2005, Ge -2025-09-30 11:20:46,711 [INFO ] 1) USGS - WL; 2) Brandvold - WQ -2025-09-30 11:20:46,711 [INFO ] 1) USGS - WLs 2) Brandvold -WQ -2025-09-30 11:20:46,711 [INFO ] 1) USGS - WLs 2) Brandvold -WQ, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia National Labs SAND2018-12018 NM Permian Basin -2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) David Chace of Hydro Resolutions -2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:20:46,712 [INFO ] 1) USGS 2) San Pedro Creek Estates HOA -2025-09-30 11:20:46,713 [INFO ] 1) USGS 2) Sandia National Labs/ BLM Well, 3) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:20:46,713 [INFO ] 1) USGS 2) Sandia National Labs/BLM Well -2025-09-30 11:20:46,713 [INFO ] 1) USGS and 2) Data from Lynn Brandvold with NMBGMR chemistry lab, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:20:46,713 [INFO ] 1) USGS, 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia Report SAND2018-12018 NM Permian Basin -2025-09-30 11:20:46,713 [INFO ] 1) USGS, 2) Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR -2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia National Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Lab Report SAND2018-12018 Water Resource Assessment in the NM Permian Basin. -2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) GW3: Geol. & Groundwater Res. of Eddy Cty. (1952) Hendrickson & Jones, NMBGMR, 4) SNL SAND2021-1869 -2025-09-30 11:20:46,714 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:20:46,715 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:20:46,715 [INFO ] 1) Well depth and screen info. from spreadsheet from mayor of Questa. 2) Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis. -2025-09-30 11:20:46,715 [INFO ] AGW Consultants, 12/85, Geohydro of R.San Marcos Property; Balleau GWA, 1999; field check -2025-09-30 11:20:46,715 [INFO ] AGW Consultants, 12/85, Geohydrology of Rancho San Marcos -2025-09-30 11:20:46,715 [INFO ] AGW Consultants, May 1984, Hydrogeology of the Santa Fe Downs Resort Area Near Santa Fe, Santa Fe County, NM -2025-09-30 11:20:46,715 [INFO ] AGWC, Inc., 1983, Hydrogeology of the Great Cloud Zen Center, Oct 1983 -2025-09-30 11:20:46,715 [INFO ] Also see: Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. (Filed w/TV-103). -2025-09-30 11:20:46,716 [INFO ] American Ground Water Consultants, 1983, Hydrogeology of the Villa Marika Property, October 1983. -2025-09-30 11:20:46,716 [INFO ] AMP visited this well on 5/25/2022 but we didn't do a well inventory. -2025-09-30 11:20:46,716 [INFO ] ARCADIS Project B0046795.0019, Early Design Actions-Pre-Design Tailing Facility Groundwater Invest. Results from Monitoring Wells MW-43, MW-44 and MW-45 (May 1, 2015). -2025-09-30 11:20:46,716 [INFO ] ARCADIS well/lithologic log -2025-09-30 11:20:46,716 [INFO ] Author (?), 1998, Geohydrology of River Bend Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. Also in NMGS Gdbk 55 pg 396. -2025-09-30 11:20:46,716 [INFO ] Balleau Groundwater, 2001, CDEX1 Completion Report -2025-09-30 11:20:46,716 [INFO ] Balleau Groundwater, 2002, CDPROD1 Completion Report, 2/02 -2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., Oct 2007, Injection Demonstration Well -- Well Completion Report -2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well A -- Well Completion Report -2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well B -- Well Completion Report -2025-09-30 11:20:46,717 [INFO ] Balleau Groundwater, Inc., written communication, 11/27/2007 -2025-09-30 11:20:46,717 [INFO ] Balleau GW, 2002, CDPROD Completion Report; well log -2025-09-30 11:20:46,717 [INFO ] Balleau GWA, 1999; Balleau GWA -2025-09-30 11:20:46,718 [INFO ] Balleau GWA, 1999; field check -2025-09-30 11:20:46,718 [INFO ] Balleau GWA, 1999; field check; Jenkins, 1977, Geohydro Investigation of Turquoise Trail Subdivision -2025-09-30 11:20:46,718 [INFO ] Bjorklund, L.J. (1957) Reconnaissance of Groundwater Conditions in the Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:20:46,718 [INFO ] Black & Veatch Consulting Engineers, 1978, Construction and Testing Report Buckman Well No. 2; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 -2025-09-30 11:20:46,718 [INFO ] Black & Veatch Consulting Engrs, 1978, Construction and Testing Rept Buckman Well No. 1; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:20:46,718 [INFO ] Bob Hubbard -2025-09-30 11:20:46,718 [INFO ] Bureau scientists performed a pump test on this well. -2025-09-30 11:20:46,718 [INFO ] C. Borchert, written comm.; WATERS -2025-09-30 11:20:46,719 [INFO ] Carrol Wood, well owner. -2025-09-30 11:20:46,719 [INFO ] Cathie. -2025-09-30 11:20:46,719 [INFO ] CB00107524CCA -2025-09-30 11:20:46,719 [INFO ] CDM completion log to NMED SW Bureau -2025-09-30 11:20:46,719 [INFO ] CDM well completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau -2025-09-30 11:20:46,719 [INFO ] CH2M Hill report to NMED UST Bureau -2025-09-30 11:20:46,719 [INFO ] CH2M Hill water level measurements at WWTP (entered into db). -2025-09-30 11:20:46,720 [INFO ] Charles Heaton, Sinagua Consultants, 1999, Well Hydrology Report Elmer Garcia Property, Aug 1999; County Records; well log; field check -2025-09-30 11:20:46,720 [INFO ] Charles Walker -2025-09-30 11:20:46,720 [INFO ] Chemistry data from Lynn Brandvold with NMBGMR chemistry lab. NMBGMR visited the site after chem. data input. -2025-09-30 11:20:46,720 [INFO ] Chemistry from Matt Sophy -2025-09-30 11:20:46,720 [INFO ] Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:20:46,720 [INFO ] Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR -2025-09-30 11:20:46,720 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; CDM, Jan 2001 -2025-09-30 11:20:46,720 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:20:46,721 [INFO ] City of Santa Fe; OSE records; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:20:46,721 [INFO ] Claudia Borchert, 2002, MS Thesis -2025-09-30 11:20:46,721 [INFO ] Compiled by Susan VonGonten, NMED UST Bureau -2025-09-30 11:20:46,721 [INFO ] Consulting Professionals, Inc, Hydrogeologic Rept La Tierra Subdn, Phase 4, Santa Fe Cnty, Dec1978 -2025-09-30 11:20:46,721 [INFO ] Consulting Professionals, Inc., VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75; well log -2025-09-30 11:20:46,721 [INFO ] Cooper, 1991, Geohydro Rept for Country Boarding Kennel, 5/1991 -2025-09-30 11:20:46,721 [INFO ] Cooper, 1995, Garcia Ranch report; Wilson, 1978, SFC water plan Table 1-28; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis. -2025-09-30 11:20:46,722 [INFO ] Cooper, 1995, rept to Garcia Ranch; Kuckleman, 2003 -2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., 1995, Geohydrology Report for Cottonwood Ranch Subdn, Santa Fe Cty, NM, April 1995 -2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., 1998, Geohydrology for WK Jones, Santa Fe Cnty, Oct 1998 -2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrologic Report for Rancho De Los Cuervos, Santa Fe Cnty, Sept1986; Berman Tract -2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrology Report for Frank M Gallegos & Andrew M Leyba, Santa Fe Cnty, Oct, 1999 -2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrology Report for Friendly Construction, Inc., Santa Fe Cnty, July 1994 -2025-09-30 11:20:46,722 [INFO ] Cooper, D. R., Geohydrology Report for Tano Vista Grande, Santa Fe Cnty, NM, Nov 1996 -2025-09-30 11:20:46,723 [INFO ] Cooper, D. R., Geohydrology Rept for Marvin Pollock & Bettina Lancaster, Santa Fe Cnty, May 1994 -2025-09-30 11:20:46,723 [INFO ] Cooper, D.R., Geohydrology Rept for El Prado Subdn, Santa Fe Cnty, Sept 1994 -2025-09-30 11:20:46,723 [INFO ] Cooper, D.R., Santa Fe Design Assoc, Geohydrology Rept for Rancho Oso Loco, Santa Fe Cnty, 1985 -2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology for Rancho De Los Ninos, Santa Fe Cnty, NM, April 1999; Rick Borrego -2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology Report for Bob Shipp, Santa Fe County, NM, June 1995 -2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology Report for Heartstone Development LLC, Dec 2001 -2025-09-30 11:20:46,723 [INFO ] Cooper, Dennis R., Geohydrology Report for James B. Alley Jr., Santa Fe Cnty, NM, March 1995 -2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., Geohydrology Report for Lawrence Tuchman, Santa Fe Cnty, Oct 1994; Frost & Assoc., Santa Fe County WQ Monitoring, June 1996 -2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., Geohydrology Report For Los Suenos, Santa Fe County, NM, April 1994 -2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., Geohydrology Rept for Jeffrey Jacobs & Thad Bowman, Santa Fe Cnty, Jan 1996 -2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., July 1995, Analysis of water levels in wells on Garcia Ranch, unpub consult rept -2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis R., July 1995, Unpub report to Garcia Ranch; well log; WATERS; USGS field notes -2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis, 1990, Geohydrology Report for San Juan Complex Partnership Ltd., Sept 1990; Field check by Johnson; well log; SFO files -2025-09-30 11:20:46,724 [INFO ] Cooper, Dennis, 1993, Geohydrology Rept for Neighbors, Inc., Santa Fe Cnty, Dec 1993; well log Joe Briscoe -2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis, 2000, Geohydro Rept for Roybal Subdivision, Santa Fe Cnty, NM, Oct 2000; field check -2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis, Geohydrol Rept for Hacienda Del Cerezo, Santa Fe Cnty, NM, Jan 1994; well logs -2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis, Geohydrology Rept for B. Howard & J.Morris, Santa Fe Cnty, NM, Dec 1994 -2025-09-30 11:20:46,725 [INFO ] Cooper, Dennis,1991, Geohydrology Rept for Sheila Cooper; field check by Johnson -2025-09-30 11:20:46,725 [INFO ] Cooper, Geohydro Report for Land Ventures, LLC, 6/2001; field check by Johnson; well log -2025-09-30 11:20:46,725 [INFO ] Cooper, Geohydrology Rept for Welsh Family Ltd Partnership, Santa Fe Cnty, March 1995 -2025-09-30 11:20:46,726 [INFO ] Corbin Consulting, Inc., 2005, Geohydrology Report (RG-27728-S) Longanecker Property. March 8, 2005 -2025-09-30 11:20:46,726 [INFO ] Corbin Consulting, Inc., 2005, Geo-Hydrology Report McMillan Subdivision, June 6, 2005 -2025-09-30 11:20:46,726 [INFO ] Corbin, J., 2004, Constant Property Geohydrology Report, Corbin Consulting Inc. June 3, 2004. Field checked. -2025-09-30 11:20:46,726 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005 (EB-618) -2025-09-30 11:20:46,727 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005; (EB-618) -2025-09-30 11:20:46,727 [INFO ] Corbin, James, 2005. -2025-09-30 11:20:46,727 [INFO ] County records; WATERS; drilling log -2025-09-30 11:20:46,727 [INFO ] County records; well log -2025-09-30 11:20:46,727 [INFO ] CT890 also at same site, cinfusing records not sure which well is correct, this one has a log -2025-09-30 11:20:46,727 [INFO ] Cuttings from NMBG. Bill White has cuttings. Geophysics: gamma ray, neutron, 3-arm-caliper, resistivitity, single pt resistance, SP, temperature profile -2025-09-30 11:20:46,728 [INFO ] Dames & Moore, Inc., 1995, Geohydroloy Report Komis Estates for Southwest Surveying Co., Inc., Dec. 1995; J. Corbin personal communication, 2005 -2025-09-30 11:20:46,728 [INFO ] Daniel B. Stephens & Associates report on Campbell Ranch subdivision wells -2025-09-30 11:20:46,728 [INFO ] Daniel B. Stevens & Associates consultant report (AMP\data\datasets\Campbell Ranch Bernalillo County) -2025-09-30 11:20:46,728 [INFO ] Darr, M.J., 2006, Geohydrologic Investigation Report: Proposed "Ocotillo" Subdivision, Taos County, NM. MJDarrconsult, Inc / Hydroscience Assoc. Inc, 2006, Analysis of Aquifer Test Run Using RG-87080 -2025-09-30 11:20:46,728 [INFO ] Darr, M.J., 2008, Geohydrologic Investigation Report: Proposed Los Llanos Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. -2025-09-30 11:20:46,729 [INFO ] Darr, Michael J., 2007, Geohydrologic Investigation Report: Proposed "Golf Country" Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. -2025-09-30 11:20:46,729 [INFO ] Data from Groundwater Report 2: Geology & Groundwater Resources of San Miguel County, NM. (1951) NMBGMR by R.L. Griggs and G.E. Hendrickson. -2025-09-30 11:20:46,729 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab. -2025-09-30 11:20:46,729 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab., OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:20:46,729 [INFO ] Data from owner well testing via NMBGMR water lab. -2025-09-30 11:20:46,729 [INFO ] David Chace of Hydro Resolutions -2025-09-30 11:20:46,730 [INFO ] David Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 -2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrolgoy of the Las Dos, Phase II Area, Santa Fe County, NM, October 1982 -2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrologic Conditions at the San Juan Residences, Santa Fe Cnty, April 1982 -2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 -2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; -2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; Steinberger log of R1 test hole, K.Summers files -2025-09-30 11:20:46,730 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; WK Summers project files -2025-09-30 11:20:46,731 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979 -2025-09-30 11:20:46,731 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; Mourant; Spiegel & Baldwin, p 241 -2025-09-30 11:20:46,731 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; WATERS -2025-09-30 11:20:46,731 [INFO ] David N. Jenkins, Geohydrologic Conditions at the Thorpe Condominiums, Santa Fe Cnty, Nov 1982 -2025-09-30 11:20:46,731 [INFO ] David Updegraff & William Lyons, 1978, Geohydrology of the Hyde Park Estates Unit 3 Subdiv'n, Aug 1978 -2025-09-30 11:20:46,731 [INFO ] DBStephens report to NMED UST Bureau -2025-09-30 11:20:46,731 [INFO ] depth made up by GCR based on nearby wells, no actual data -2025-09-30 11:20:46,732 [INFO ] depth made up by GCR, no actual data, assume similar to well K-14 (UC 30) -2025-09-30 11:20:46,732 [INFO ] Discussion of Geology, Hydrogeology, and Water Quality of the Tailings Area, Molycorp Facility, Taos County, NM, 1995, South Pass Resources, Inc. -2025-09-30 11:20:46,732 [INFO ] Drakos, P. & Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. Also, Water Level Monitoring Prgm. 2002-2 -2025-09-30 11:20:46,732 [INFO ] Drakos, P. and Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level -2025-09-30 11:20:46,732 [INFO ] Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. -2025-09-30 11:20:46,732 [INFO ] Drakos, P., et al., 2004, Hydrologic Characteristics of Basin-Fill Aquifers in the Southern San Luis Basin, NM, NMGS Guidebook 55, pg. 391. -2025-09-30 11:20:46,733 [INFO ] Drakos, P., Hodgins, M., 2000, Drilling & Testing Report, Bureau of Reclamation 2000-Ft. Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. 2) Water Level Monitoring Prgm. 2002-2007, GGI -2025-09-30 11:20:46,733 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. & Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Ft. Deep Nested Piezometer/Expl. Well (BOR-2) & 2100-Ft. Deep Production Well (BOR-3), Paseo del Canon We -2025-09-30 11:20:46,733 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. and Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR-2) & 2100-Feet Deep Production Well (BOR-3), Paseo de -2025-09-30 11:20:46,733 [INFO ] Drakos, P., Riesterer, J., and Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level Monitor -2025-09-30 11:20:46,733 [INFO ] Driller's log; OSE network WLs -2025-09-30 11:20:46,733 [INFO ] dubiousOSE match, depth and location are off -2025-09-30 11:20:46,733 [INFO ] Duncan, 2004. -2025-09-30 11:20:46,733 [INFO ] Duncan, 2004; field check by Johnson 12-22-05 -2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; Frost, 1999, ElDorado Area Water & Sanitation District Project files -2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study -2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study. -2025-09-30 11:20:46,734 [INFO ] Duncan, 2004; JSAI, 2001, App. #6 -2025-09-30 11:20:46,734 [INFO ] Exploratory & Shallow Well Drilling Rio Grande Watershed Study-Phase 1 San Acacia Surface Water/Groundwater Investigation (Dec. 5, 2003) S.S. Papadopulos & Associates for US Army Corps of Engineer -2025-09-30 11:20:46,734 [INFO ] Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94 -2025-09-30 11:20:46,734 [INFO ] Field check by Johnson -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson, Cruz, Frost; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; Cooper, 1995, report to Garcia Ranch; Borton field notes -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 2/14/2002 -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 7/2/98 -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; owner info -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; WATERS -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; WATERS; Mourant -2025-09-30 11:20:46,735 [INFO ] Field check by Johnson; WATERS; sample site for Anderholm, 1994 USGS WRI Report 94-4078 -2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well log -2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well log; owner -2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well log; SFO files -2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well record -2025-09-30 11:20:46,736 [INFO ] Field check by Johnson; well/owner records -2025-09-30 11:20:46,736 [INFO ] Field check by Lyman -2025-09-30 11:20:46,736 [INFO ] Field check with Lyman and BLM realtor Hal Knox; plat map -2025-09-30 11:20:46,736 [INFO ] Field check, WATERS -2025-09-30 11:20:46,737 [INFO ] Field check; owner -2025-09-30 11:20:46,737 [INFO ] Field check; owner; well log -2025-09-30 11:20:46,737 [INFO ] Field check; WATERS -2025-09-30 11:20:46,737 [INFO ] Field check; WATERS. OSE Well Record. -2025-09-30 11:20:46,737 [INFO ] Field check; WATERS.OSE Well Record. -2025-09-30 11:20:46,737 [INFO ] Field check; well log -2025-09-30 11:20:46,737 [INFO ] Field check; well logg -2025-09-30 11:20:46,737 [INFO ] Field check; well record -2025-09-30 11:20:46,738 [INFO ] Field checked -2025-09-30 11:20:46,738 [INFO ] Field checked, WATERS -2025-09-30 11:20:46,738 [INFO ] Field checked, Well owners recollection of well info -2025-09-30 11:20:46,738 [INFO ] Field checked. WATERS. OSE Well Record. -2025-09-30 11:20:46,738 [INFO ] Field checked; WATERS -2025-09-30 11:20:46,738 [INFO ] Field checked; WATERS. OSE Well Record. -2025-09-30 11:20:46,738 [INFO ] Field checks; WATERS; well record. -2025-09-30 11:20:46,739 [INFO ] Finch & Petronis (JS&A), Sept. 2006, Hydrogeologic Report for the Galisteo Basin Preserve, Santa Fe County, NM, for Commonweal Conservancy, unpub. consultant report -2025-09-30 11:20:46,739 [INFO ] Finch, S.T., Jr., 2001, Hydrogeologic Evaluation of T-255 Et. Al., Near Carrizozo, New Mexico, John Shomaker & Associates, Inc. -2025-09-30 11:20:46,739 [INFO ] Finch, Steven T., and Melis, Erwin A., October 2008, Hydrogeologic evaluation of ground-water supply for the Spaceport America Site near Upham, NM, John Shomaker & Associates. -2025-09-30 11:20:46,739 [INFO ] Fleming, WM, Geohydrology Report for the Matthews Property, Santa Fe County, July 26, 1991 -2025-09-30 11:20:46,739 [INFO ] Foreman -2025-09-30 11:20:46,739 [INFO ] Frost MWB notes, 1994 -2025-09-30 11:20:46,740 [INFO ] Frost MWB Survey notes -2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe Cnty Ground Water Levels, 1995-96 Results; GWSI; USGS log books; well record -2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996 -2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; field check -2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Lewis database; NMED DWB (1999) via Jemez y Sangre Database (2000) -2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Mourant -2025-09-30 11:20:46,740 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnso -2025-09-30 11:20:46,741 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnson -2025-09-30 11:20:46,741 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; well record -2025-09-30 11:20:46,741 [INFO ] Frost, 1999; WATERS -2025-09-30 11:20:46,741 [INFO ] Frost, MWB Survey notes; D.Koning log review -2025-09-30 11:20:46,741 [INFO ] Full EPA ID #TB-B011-150811-21 -2025-09-30 11:20:46,741 [INFO ] Full EPA ID #TB-B023-150814-021 -2025-09-30 11:20:46,741 [INFO ] Full EPA ID #TD-D001-150812-21 -2025-09-30 11:20:46,742 [INFO ] Full EPA ID #TD-D003-150812-21 -2025-09-30 11:20:46,742 [INFO ] Garrabrant, L.A., 1993, Water resources of Taos County, NM: USGS WRIR 93-4107. -2025-09-30 11:20:46,742 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Cuttings archived in our core shed. -2025-09-30 11:20:46,742 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Pump test from driller (JSAI). Cuttings/chip boards archived in our core shed. -2025-09-30 11:20:46,742 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons -2025-09-30 11:20:46,742 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons; map -2025-09-30 11:20:46,742 [INFO ] Geohydrology Assoc., Inc. lithologic log to NMED SW Bureau; field check by Johnson -2025-09-30 11:20:46,743 [INFO ] Geohydrology Assoc., Inc., 1988, Hydrogeologic Investigation of Cottonwood Estates, 2//88; WATERS -2025-09-30 11:20:46,743 [INFO ] Geophysics: dual induction guard, dual spaced neutron,microlog, high-resol temp log. WQ: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. -2025-09-30 11:20:46,743 [INFO ] GGI -2025-09-30 11:20:46,743 [INFO ] GGI report (has WQ sample). Requested from P. Drakos; have not received response. -2025-09-30 11:20:46,743 [INFO ] GGI report for NMED UST Bureau -2025-09-30 11:20:46,743 [INFO ] GGI report to NMED UST Bureau -2025-09-30 11:20:46,744 [INFO ] GGI reports: 1) 2001 report on RP-2500 in Town of Taos, 2) Water Level Monitoring -2025-09-30 11:20:46,744 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, NM,3/19/92; Sangre de Cristo Estates rept -2025-09-30 11:20:46,744 [INFO ] GGI, 100-Yr Water Availability Santa Fe Metro Center, 12/01; AND La Cienega de Santa Fe Proj, 10/91 -2025-09-30 11:20:46,744 [INFO ] GGI, 1988, Geohydrology of the Picture Rock Development Co. Property, Santa Fe, May, 1988. -2025-09-30 11:20:46,744 [INFO ] GGI, 1989, Geohydrology of the Baird Joint Venture Property, Taos County, NM, Glorieta Geoscience, Inc. -2025-09-30 11:20:46,744 [INFO ] GGI, 1989, Reconnaissance Geohydrology of the Lumpkins Property, Santa Fe County, NM, August 1989 -2025-09-30 11:20:46,744 [INFO ] GGI, 1990, Geohydrology of the Bajo Del Cielo Subdivision, Santa Fe County, NM. Dec. 1990 -2025-09-30 11:20:46,745 [INFO ] GGI, 1990, Geohydrology of the Beaver and Henry Properties, Santa Fe Cnty, Aug 1990 -2025-09-30 11:20:46,745 [INFO ] GGI, 1991, Geohydrology of the Walker Property, Santa Fe, May, 1991. -2025-09-30 11:20:46,745 [INFO ] GGI, 1995, Geohydrology of the Santa Fe Opera Tract Prop, Santa Fe Cnty, 3/95; G.Ellis; well log -2025-09-30 11:20:46,745 [INFO ] GGI, 1995, Geohydrology of the Vereda Serena Property, Santa Fe, October, 1995. -2025-09-30 11:20:46,745 [INFO ] GGI, 1995, Production well and observation well installation, testing, and determination of aquifer coefficients: unpub consultant report for Town of Taos, March 1995 -2025-09-30 11:20:46,745 [INFO ] GGI, 1998, Ground Water Conditions in the Vicinity of the Gonzales Tract San Marcos Arroyo Santa Fe County, NM, Dec. 1998 -2025-09-30 11:20:46,745 [INFO ] GGI, 2001, Geohydrologic report for the Village at Eldorado, July, 2001. -2025-09-30 11:20:46,746 [INFO ] GGI, 2001, Vista del Valle Subdivision Report, Taos County, New Mexico -2025-09-30 11:20:46,746 [INFO ] GGI, 2002, Addendum To: Reconnaissance Geohydrologic Characterization of Tesuque Ridge, 8/28/2002 -2025-09-30 11:20:46,746 [INFO ] GGI, 2002, Reconnaissance Geohydrologic Characterization of Tesuque Ridge Subdivn, 7/17/02 -2025-09-30 11:20:46,746 [INFO ] GGI, 2003, Geohydrologic Report for the Luna Rosa LLC Equestrian Center Property, July 2003. -2025-09-30 11:20:46,746 [INFO ] GGI, 2003, Reconnaissance Geohydrology report of the Clements Property, Santa Fe, April, 2003. -2025-09-30 11:20:46,746 [INFO ] GGI, 2003, Reconnaissance Water Availability Assessment of the Santa Fe Waldorf School - High School -2025-09-30 11:20:46,746 [INFO ] GGI, 2004, Geohydrology of the Estancia Subdivision, Santa Fe County, December, 2004 -2025-09-30 11:20:46,746 [INFO ] GGI, 2004, Reconnaissance Geohydrology Report for the Beaty Property, Santa Fe Cty, Dec. 22, 2004. -2025-09-30 11:20:46,747 [INFO ] GGI, Chapter VI Geohydrology of the La Cienega de Santa Fe Project, Oct 1991; GGI, 100-Yr Water Availability, Downs at Santa Fe, March 2001 for Pojoaque Pueblo Development Corp -2025-09-30 11:20:46,747 [INFO ] GGI, Geohydro of Naiche Property, 12/92; field check by Johnson; well recd -2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrologic report for the Rancho San Lucas Subdivision, Feb 2002 -2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of La Canada Subdivision, Santa Fe County, NM, July 1985 -2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of Pop's Convenience Store, Santa Fe County, NM, Sept 29, 1997 -2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of the Brenner Property, Santa Fe County, NM, Aug 1990 -2025-09-30 11:20:46,747 [INFO ] GGI, Geohydrology of the Bryant Prop, Santa Fe Cnty, May 1995; GGI, San Ysidro de Tesuque, May 1990 -2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Bryant Property, Santa Fe County, NM, May 1995; GGI, 1989 -2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Circle Drive Compound Prop, Santa Fe Cnty, May 1991 -2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Hansen Property, Santa Fe County, NM, June 1990 -2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Insight Investments Property, Santa Fe Cnty, NM, 2/20/90 -2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the Lane Property, Santa Fe Cnty, NM, 4/29/92 -2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the McElvain/Patania Property, 6/92 -2025-09-30 11:20:46,748 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990 -2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990; GGI, Geohydrology of the Santa Fe Arroyo Hondo Vistas Subdivision, SFe County, Aug. 1989 -2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Migel Property, Santa Fe Cnty, 2/90; GGI, Geohydro of McMahon Prop 10/90 -2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Mountain Vista Subdivision, Santa Fe County, July 10, 2002 -2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Myers Property, Santa Fe Cnty, July 1992 -2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Naiche Property, Santa Fe County, NM, Dec 1992 -2025-09-30 11:20:46,749 [INFO ] GGI, Geohydrology of the Prince Property, 8/91; McElvain-Patania Prop, 6/92 -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Santa Fe Animal Shelter Site, Santa Fe County, NM, May 15, 2002 -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Santa Fe Opera Tr, Santa Fe Cnty, 3/95; GGI, San Ysidro de Tesuque, 5/90 -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Shulman Property, Santa Fe Cnty, April 1990 -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Vrtiak Property, Santa Fe Cnty, June, 1991 -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the West Alameda Proj, Santa Fe Cnty, NM, Jan 1989 -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, March 19, 1992 -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct 14, 1994; GGI, Bryant Prop; WATERS -2025-09-30 11:20:46,750 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct, 1994; GGI, Sangre de Cr Est, Jan 1989 -2025-09-30 11:20:46,751 [INFO ] GGI, Geohydrology Rept for Rancho San Lucas, Santa Fe Cnty, NM, Feb 2002; Geophysical logs -2025-09-30 11:20:46,751 [INFO ] GGI, January 2005 Alexsis Geohydrology report (by Meghan Hodgins). -2025-09-30 11:20:46,751 [INFO ] GGI, Reconnaissance Geohydrology Report, Leibman Property, Santa Fe County, NM. March 23, 1994 -2025-09-30 11:20:46,751 [INFO ] GGI, Reconnaissance Geohydrology Report, Neufeld Property, Santa Fe Cnty, Nov 1988 -2025-09-30 11:20:46,751 [INFO ] Glorieta Geoscience Inc. -2025-09-30 11:20:46,751 [INFO ] Glorieta Geoscience, Inc., 2006, Geohydrology and Water Availability for Phase 1, Santa Fe Canyon Ranch Subdivision, Santa Fe County, NM, March 22, 2006. -2025-09-30 11:20:46,751 [INFO ] GW-1: Geology & Ground-Water Resources of the Eastern Part of Colfax Cty, NM (1948) Griggs, Roy L., NMBGMR -2025-09-30 11:20:46,751 [INFO ] GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology -2025-09-30 11:20:46,752 [INFO ] GW-4: Geology & Groundwater Res. of NE Socorro Cty, NM (1955) Spiegel, Zane, NM Bureau of Geology -2025-09-30 11:20:46,752 [INFO ] GW5: Geology and Ground-Water Resources of Torrance County, NM (1957) R.E. Smith, NM Bureau of Geology -2025-09-30 11:20:46,752 [INFO ] GW9: Groundwater Resources & Geology of Quay County, NM (1966) Charles Berkstresser, Jr. & Walter A. Mourant, NM Bureau of Geology -2025-09-30 11:20:46,752 [INFO ] GWSI -2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; field check by Johnson -2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; field check by Johnson; D.Koning log review -2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; OFR 89-37; field check by Johnson; D.Koning log review -2025-09-30 11:20:46,752 [INFO ] GWSI/USGS well sheet; WATERS -2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; WATERS; Cooper, 1995; field check by Johnson -2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; WATERS; field check by Johnson -2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson -2025-09-30 11:20:46,753 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson. -2025-09-30 11:20:46,753 [INFO ] GWSI; D.Koning log review -2025-09-30 11:20:46,753 [INFO ] GWSI; D.Koning log review; D.Koning log review -2025-09-30 11:20:46,753 [INFO ] GWSI; field check by Johnson -2025-09-30 11:20:46,754 [INFO ] GWSI; field check by Johnson; D.Koning log review -2025-09-30 11:20:46,754 [INFO ] GWSI; field check Johnson -2025-09-30 11:20:46,754 [INFO ] GWSI; Mourant; well record; field check by Johnson -2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log books; field check by Johnson -2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log sheets; field check by Johnson; field check by Lyman and SFC Utilities -2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log sheets; well log; field check by Johnson -2025-09-30 11:20:46,754 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson -2025-09-30 11:20:46,755 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson; field check by Lyman and SFC Utilities -2025-09-30 11:20:46,755 [INFO ] GWSI; USGS logbooks; field check by Johnson -2025-09-30 11:20:46,755 [INFO ] GWSI; USGS logbooks; Frost, 1996, Santa Fe County GWLs, 1995-96 Results, 1/96; K.Summers notes from 11/16/70 aquifer test; Frost, 1999, written comm. -2025-09-30 11:20:46,755 [INFO ] GWSI; USGS well sheet; field check by Johnson -2025-09-30 11:20:46,755 [INFO ] GWSI; USGS well sheet; well log; Johnson, 2003; VeneKlasen, 2/86, Geohydro Rept Arroyo Hondo West -2025-09-30 11:20:46,755 [INFO ] GWSI; USGS well sheets; field check by Johnson -2025-09-30 11:20:46,756 [INFO ] GWSI; water right declaration; field check by Johnson -2025-09-30 11:20:46,756 [INFO ] GWSI; water right declaration; field check Johnson; Aqua Drilling well log. WQ from Longmire -2025-09-30 11:20:46,756 [INFO ] GWSI; WATERS -2025-09-30 11:20:46,756 [INFO ] GWSI; well log; field check by Johnson -2025-09-30 11:20:46,756 [INFO ] GWSI; well record; field check by Johnson -2025-09-30 11:20:46,756 [INFO ] Hall, J., 2010, Blackstone Ranch Well RG-82913 48-hr Pumping Test, Taos, NM, GGI. -2025-09-30 11:20:46,756 [INFO ] Heaton (Sinagua Consultants), Well Hydro Report Capitol Ford Body Shop, Jan 1999 -2025-09-30 11:20:46,756 [INFO ] Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:20:46,757 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601 -2025-09-30 11:20:46,757 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8 -2025-09-30 11:20:46,757 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:20:46,757 [INFO ] HR-1: Geology & Ground-Water Resources of Central & Western Dona Ana County, NM (1971) King, W.E., Hawley, J.W., Taylor, A.M. and Wilson, R.P. New Mexico Bureau of Geology -2025-09-30 11:20:46,757 [INFO ] HR5: Groundwater in the Sandia and Northern Manzano Mtns, NM (1980) Frank B. Titus, NM Bureau of Geology -2025-09-30 11:20:46,757 [INFO ] Huff, G.F. (1996) Analysis of Ground-water data for selected wells near Holloman AFB, NM, 1950-1995. USGS WRIR-96-4116. -2025-09-30 11:20:46,758 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, 1988. -2025-09-30 11:20:46,758 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, March 17, 1988. -2025-09-30 11:20:46,758 [INFO ] Hydrologic and hydrogeologic analysis for the Guadalupe Mtn. ground-water discharge plan. June 1984, Water Resources Associates, Inc. -2025-09-30 11:20:46,758 [INFO ] Hydroscience Associates, Inc., 2006, Analysis of Aquifer Test Run Using Well RG-87082, Taos County, New Mexico. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:20:46,758 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:20:46,758 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:20:46,758 [INFO ] Information as personal communication from GGI -2025-09-30 11:20:46,758 [INFO ] Inventoried previously on 4/21/2015 as part of Clovis-Portales project -2025-09-30 11:20:46,759 [INFO ] Inventoried previously on 6/2/2015 as part of Clovis-Portales project -2025-09-30 11:20:46,759 [INFO ] J. Corbin, 2007 written communication -2025-09-30 11:20:46,759 [INFO ] J. Corbin, 2007, written communication -2025-09-30 11:20:46,759 [INFO ] J.Frost, 1999; WATERS -2025-09-30 11:20:46,759 [INFO ] Jemez y Sangre (2000); NMED DWB Info Sheet; WATERS -2025-09-30 11:20:46,759 [INFO ] Jenkins, 1979, Geohydrology of the Vista Subdivn, 12/79; C.A. Coonce & Assoc., 1977, Montoya Subdivn Water Availability Study for Cipriano Martinez, 12/77 -2025-09-30 11:20:46,759 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate -2025-09-30 11:20:46,759 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate. also Jenkins, Dec 1979, Geohydrology of the Vista Subdivision -2025-09-30 11:20:46,760 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978 -2025-09-30 11:20:46,760 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978. OSE Well Record. -2025-09-30 11:20:46,760 [INFO ] Jenkins, David,- Geohydrologic Investigation of the Turquoise Trail Subdivision, SF Cnty, July 1977 -2025-09-30 11:20:46,760 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn -2025-09-30 11:20:46,760 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn; Corbin Consulting, Inc., Mar 8, 2005, Geohydrology Report Longanecker Property -2025-09-30 11:20:46,760 [INFO ] JHA, May 2004, Well Report Buckman Wells No. 10-13, City of Santa Fe -2025-09-30 11:20:46,760 [INFO ] John Shomaker & Assoc., April 1995, Well report Sangre de Cristo Water Company Buckman Well No. 3a; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09, written comm. -2025-09-30 11:20:46,761 [INFO ] John Shomaker & Assoc, 1999, Well Report: Drilling, Construction, & Testing Hickox Well No. 2, 5/99; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning review -2025-09-30 11:20:46,761 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR -2025-09-30 11:20:46,761 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR. -2025-09-30 11:20:46,761 [INFO ] JSA completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau -2025-09-30 11:20:46,761 [INFO ] JSAI Well report for Proposed Desalination Well Field, City of Alamogordo, NM. June 2006. -2025-09-30 11:20:46,761 [INFO ] Kendall Taylor -2025-09-30 11:20:46,761 [INFO ] Kendall Taylor and drill log -2025-09-30 11:20:46,762 [INFO ] Kendall Taylor; OSE well log -2025-09-30 11:20:46,762 [INFO ] L. Sherson @ USGS determined that all but one water level taken by contractors for OSE at 334819108084801 were really taken from this location 334819108084601. Level on 9/25/2008 was at *4801 NM-15416 -2025-09-30 11:20:46,762 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:20:46,762 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). Part of OSE network, so thought it would have been in their system already. -2025-09-30 11:20:46,762 [INFO ] Lewis database of city wells; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:20:46,762 [INFO ] Lewis database, 2001; Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94; Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98 -2025-09-30 11:20:46,762 [INFO ] Lithlog personal communication w/GGI. -2025-09-30 11:20:46,763 [INFO ] local individuals: Layne Preslar, Bob Hubbard -2025-09-30 11:20:46,763 [INFO ] Longmire, Patrick, July 1985, Hydrogeochemical Study Along the Santa Fe River; field check -2025-09-30 11:20:46,763 [INFO ] Longmire, Patrick, July 1985. A Hydrogeochemical Study Along the Valley of the Santa Fe River -2025-09-30 11:20:46,763 [INFO ] Lou Wilkerson -2025-09-30 11:20:46,763 [INFO ] Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018 -2025-09-30 11:20:46,763 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. -2025-09-30 11:20:46,763 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. References additional well tests by M.J. Darr. -2025-09-30 11:20:46,763 [INFO ] Mark Defibaugh -2025-09-30 11:20:46,764 [INFO ] Martinez Surveying Co., [Hydrogeologic Report for] Miller Subdivision, Jan 1984 -2025-09-30 11:20:46,764 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multi -2025-09-30 11:20:46,764 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multip -2025-09-30 11:20:46,764 [INFO ] McLean, J.S. (1970) Saline Ground-Water Resources of the Tularosa Basin, NM. Office of Saline Water, R&D Progress Rpt 561 -2025-09-30 11:20:46,764 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:20:46,764 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 (1980 water level) -2025-09-30 11:20:46,764 [INFO ] MJ Darr (July 2006) Pump Test of WL-0007. -2025-09-30 11:20:46,765 [INFO ] Mourant; GWSI; field check by Johnson; USGS well schedules -2025-09-30 11:20:46,765 [INFO ] Mourant; GWSI; field check by Johnson; well log. -2025-09-30 11:20:46,765 [INFO ] MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources -2025-09-30 11:20:46,765 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:20:46,765 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron/Socorro/Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:20:46,765 [INFO ] NA03200901BBB -2025-09-30 11:20:46,765 [INFO ] NA03200912ACC -2025-09-30 11:20:46,766 [INFO ] NA03201066BBB -2025-09-30 11:20:46,766 [INFO ] NA03300814CCC -2025-09-30 11:20:46,766 [INFO ] NA03300914CCC -2025-09-30 11:20:46,766 [INFO ] NA03300921CCC -2025-09-30 11:20:46,766 [INFO ] NA03300922ACC -2025-09-30 11:20:46,766 [INFO ] NA03300933CAB -2025-09-30 11:20:46,766 [INFO ] NA03300933CAB2 -2025-09-30 11:20:46,767 [INFO ] NA03300935DBB -2025-09-30 11:20:46,767 [INFO ] NA03300936DBB -2025-09-30 11:20:46,767 [INFO ] NA03301014DDD -2025-09-30 11:20:46,767 [INFO ] NA03301019CCD -2025-09-30 11:20:46,767 [INFO ] NA03301020CCB -2025-09-30 11:20:46,767 [INFO ] NMBG -2025-09-30 11:20:46,767 [INFO ] NMBGMR -2025-09-30 11:20:46,767 [INFO ] NMBGMR & USGS -2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; Camp Dresser & McKee, Jan. 2000, -2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); OSE 2005 WL field sheets; WATERS -2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS. OSE Well Record. -2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; J. Corbin, written communication, 2007 -2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project files; JSAI, 2001,App. #6 -2025-09-30 11:20:46,768 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; JSAI (2001) App. #6 -2025-09-30 11:20:46,769 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; Minton log and pump test; JS&A, 2001 well log and water levels -2025-09-30 11:20:46,769 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; Summer's project files; Minton log; Frost, 1996, Review of El Dorado area water production and GW resource, June '96; JSAI, 2001, App. #6 -2025-09-30 11:20:46,769 [INFO ] NMED Solid Waste Bureau monitoring reports. -2025-09-30 11:20:46,769 [INFO ] NMED Spring Survey and Monitor Well Survey -2025-09-30 11:20:46,769 [INFO ] NMED SW Bureau data report, URS Corp.; written communications from NMED SolidWaste Bureau -2025-09-30 11:20:46,769 [INFO ] NMED SWP Atlas online -2025-09-30 11:20:46,770 [INFO ] NMOSE POD only -2025-09-30 11:20:46,770 [INFO ] NMOSE Well log -2025-09-30 11:20:46,770 [INFO ] No well inventory form for this site. Just coordinates, photo and well log. -2025-09-30 11:20:46,770 [INFO ] NRCS Well development document (Excel spreadsheet) -2025-09-30 11:20:46,770 [INFO ] OCD AP-100 report by Conestoga-Rovers & Associates -2025-09-30 11:20:46,770 [INFO ] OCD AP-101 Report by Arcadis U.S. Inc. -2025-09-30 11:20:46,770 [INFO ] OCD AP-104 Report by Conestoga-Rovers and Associates -2025-09-30 11:20:46,771 [INFO ] OCD AP-105 Report by GHD -2025-09-30 11:20:46,771 [INFO ] OCD AP-107 Report by Arcadis U.S. Inc -2025-09-30 11:20:46,771 [INFO ] OCD AP-112 Report by Larson & Associates, Inc. -2025-09-30 11:20:46,771 [INFO ] OCD AP-114 Report by Tasman Geosciences -2025-09-30 11:20:46,771 [INFO ] OCD AP-115 Report by Conestoga-Rovers and Associates -2025-09-30 11:20:46,771 [INFO ] OCD AP-118 Report by GHD -2025-09-30 11:20:46,771 [INFO ] OCD AP-120 Report by GHD Services Inc. -2025-09-30 11:20:46,772 [INFO ] OCD AP-56 Report by GHD -2025-09-30 11:20:46,772 [INFO ] OCD AP-62 Report by R.T. Hicks Consultants, Ltd -2025-09-30 11:20:46,772 [INFO ] OCD AP-71 Report by Rice Operating Company -2025-09-30 11:20:46,772 [INFO ] OCD AP-73 Report by Enviro Clean Cardinal LLC -2025-09-30 11:20:46,772 [INFO ] OCD AP-75 Report by Rice Environmental Consulting & Safety, LLC -2025-09-30 11:20:46,772 [INFO ] OCD AP-87 Report by by Tetra Tech -2025-09-30 11:20:46,772 [INFO ] OCD AP-88 Report by Tetra Tech -2025-09-30 11:20:46,773 [INFO ] OCD AP-91 Report by Talon/LPE -2025-09-30 11:20:46,773 [INFO ] OCD AP-94 Report by Tetra Tech -2025-09-30 11:20:46,773 [INFO ] OCD AP-95 report by Tetra Tech -2025-09-30 11:20:46,773 [INFO ] OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:20:46,773 [INFO ] OFR-51: Hydrogeology of the San Agustin Plains, NM (1973) Blodgett, Daniel D. and Titus, Frank B., NMBGMR -2025-09-30 11:20:46,773 [INFO ] Onwer -2025-09-30 11:20:46,773 [INFO ] Original data and chemistry from Lynn Brandvold with NMBGMR chemistry lab. We visited site in July 2015 took GPS location and found well record. -2025-09-30 11:20:46,774 [INFO ] OSE -2025-09-30 11:20:46,774 [INFO ] OSE and Foreman. -2025-09-30 11:20:46,774 [INFO ] OSE database. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:20:46,774 [INFO ] OSE field notes -2025-09-30 11:20:46,774 [INFO ] OSE field sheet -2025-09-30 11:20:46,774 [INFO ] OSE macth doubtful, usgs depth is much different, 311 vs 375 -2025-09-30 11:20:46,775 [INFO ] OSE POD record -2025-09-30 11:20:46,775 [INFO ] OSE POD record. -2025-09-30 11:20:46,775 [INFO ] OSE Record and owner recollection -2025-09-30 11:20:46,775 [INFO ] OSE records -2025-09-30 11:20:46,775 [INFO ] OSE records and owner recollection. -2025-09-30 11:20:46,775 [INFO ] OSE records and well owner records. -2025-09-30 11:20:46,775 [INFO ] OSE records online. -2025-09-30 11:20:46,775 [INFO ] OSE Records, some info from well owner -2025-09-30 11:20:46,776 [INFO ] OSE Records, well owner provided info. -2025-09-30 11:20:46,776 [INFO ] OSE Records, well owner recollection. -2025-09-30 11:20:46,776 [INFO ] OSE Records. -2025-09-30 11:20:46,776 [INFO ] OSE Records. Gary Goss at TWSD. -2025-09-30 11:20:46,776 [INFO ] OSE records. PN031 may not be it. Well is very old. -2025-09-30 11:20:46,776 [INFO ] OSE WATERS site -2025-09-30 11:20:46,776 [INFO ] OSE website -2025-09-30 11:20:46,777 [INFO ] OSE website info, no well record. Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:20:46,777 [INFO ] OSE website, no well record. -2025-09-30 11:20:46,777 [INFO ] OSE website, no well record. Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:20:46,777 [INFO ] OSE website, well record available at OSE office. -2025-09-30 11:20:46,777 [INFO ] OSE website, well record maybe available at OSE office. -2025-09-30 11:20:46,777 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 -2025-09-30 11:20:46,777 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09 -2025-09-30 11:20:46,777 [INFO ] OSE well log. Some data from USGS. Overlapping site data. -2025-09-30 11:20:46,778 [INFO ] OSE Well record -2025-09-30 11:20:46,778 [INFO ] OSE well record and owner -2025-09-30 11:20:46,778 [INFO ] OSE well record and owner info -2025-09-30 11:20:46,778 [INFO ] OSE well record and site visit -2025-09-30 11:20:46,778 [INFO ] OSE Well Record and well owner -2025-09-30 11:20:46,778 [INFO ] OSE well record. -2025-09-30 11:20:46,779 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:20:46,779 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project file and Sandia Drilling well log -2025-09-30 11:20:46,779 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:20:46,779 [INFO ] Owner -2025-09-30 11:20:46,779 [INFO ] Owner - well dirlled in 60s. -2025-09-30 11:20:46,779 [INFO ] owner - well drilled by father, using septic auger. -2025-09-30 11:20:46,779 [INFO ] Owner - well drilled in 50's. owner has some records. -2025-09-30 11:20:46,780 [INFO ] Owner and OSE record -2025-09-30 11:20:46,780 [INFO ] Owner and OSE site. -2025-09-30 11:20:46,780 [INFO ] Owner and OSE well record. -2025-09-30 11:20:46,780 [INFO ] Owner and well record. -2025-09-30 11:20:46,780 [INFO ] Owner field check; WATERS -2025-09-30 11:20:46,780 [INFO ] Owner recollection -2025-09-30 11:20:46,780 [INFO ] Owner recollection and limited OSE records. -2025-09-30 11:20:46,781 [INFO ] Owner recollection and OSE POD record. -2025-09-30 11:20:46,781 [INFO ] Owner recollection of well depth and water level -2025-09-30 11:20:46,781 [INFO ] Owner recollection. -2025-09-30 11:20:46,781 [INFO ] Owner recollection; OSE Records -2025-09-30 11:20:46,781 [INFO ] Owner. -2025-09-30 11:20:46,781 [INFO ] Owner. OSE well records -2025-09-30 11:20:46,781 [INFO ] P. Drakos, et al., 2004, Chemical & Isotopic Constraints on Source-Waters and Connectivity of Basin-Fill Aquifers in the Southern San Luis Basin, NM. NMGS Guidebook 55, pg 405. -2025-09-30 11:20:46,782 [INFO ] PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM -2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID # S264) -2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S037) -2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S040) -2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S101) -2025-09-30 11:20:46,782 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S146) -2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S164) -2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S220) -2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S265) -2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. -2025-09-30 11:20:46,783 [INFO ] Plummer, LN, Bexfield, LM, et al., 2004 Geochem. Characterization of Grd-water Flow in the Santa Fe Grp Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. -2025-09-30 11:20:46,783 [INFO ] Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis -2025-09-30 11:20:46,783 [INFO ] Pretty certain C011 is Burns EPA sample. -2025-09-30 11:20:46,784 [INFO ] Prindle-Hinds well completion log to NMED SW Bureau -2025-09-30 11:20:46,784 [INFO ] Pump test performed as noted in Meyers report. USGS WRI 94-4125 -2025-09-30 11:20:46,784 [INFO ] Ranch foreman. -2025-09-30 11:20:46,784 [INFO ] Rankin, Dale, 2005, Personal Communication USGS Well Drilling Reports -2025-09-30 11:20:46,784 [INFO ] Reardon et al. (2021) Addendum to Water Res. Assessment NM Permian Basin SAND2021-1869 -2025-09-30 11:20:46,784 [INFO ] Reardon, et al. (2021) Addendum to Water Res. Assessment in NM Permian Basin. SAND2021-1869. -2025-09-30 11:20:46,784 [INFO ] RGDSSP12 -2025-09-30 11:20:46,785 [INFO ] Romero -2025-09-30 11:20:46,785 [INFO ] San Pedro Creek Estates HOA -2025-09-30 11:20:46,785 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files -2025-09-30 11:20:46,785 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files; DKoning cutting review -2025-09-30 11:20:46,785 [INFO ] Sandia National Labs/ BLM Wells -2025-09-30 11:20:46,785 [INFO ] Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:20:46,785 [INFO ] Sangre de Cristo/OSE, WATERS, Borchert report, Watson and Rappuhn/Shomaker & Assoc., 4/99, WellReport: Drilling, Construction and Testing, City of Santa Fe Northwest Area Test Well; D.Koning review -2025-09-30 11:20:46,785 [INFO ] Santa Fe County records; well log; field check -2025-09-30 11:20:46,786 [INFO ] Santa Fe County Utilities field notes; -2025-09-30 11:20:46,786 [INFO ] SECOR report to NMED UST Bureau -2025-09-30 11:20:46,786 [INFO ] Shoemaker & Fleming, MWB Survey, 1990; Mourant, 1980 -2025-09-30 11:20:46,786 [INFO ] Shomaker & Associates, 2004, Well Report Buckman Wells No. 10-13 City of Santa Fe, New Mexico, May 2004; C. Borchert, written communication, 3/23/09 -2025-09-30 11:20:46,786 [INFO ] Shomaker & Associates, April 2003, Well Report: Drilling, Construction, and Testing of SF Buckman 9; C. Borchert, written communication, 3/23/09 -2025-09-30 11:20:46,786 [INFO ] Site check; well record -2025-09-30 11:20:46,786 [INFO ] Site visit by Johnson during drilling; drillers report; J. Corbin, written communication, 2007 -2025-09-30 11:20:46,786 [INFO ] Slinglerland & Borton, Geohydro of Avanti Business Park, 8/85 (App F to GGI, Santa Fe Metro, 12/01); lithologic log by GGI, review by D.Koning -2025-09-30 11:20:46,787 [INFO ] SNL report for manual water level and water quality -2025-09-30 11:20:46,787 [INFO ] Some chemistry from EPA via NM Health Dept. -2025-09-30 11:20:46,787 [INFO ] Some data from USGS. Overlapping site data. -2025-09-30 11:20:46,787 [INFO ] Some data from USGS. Overlapping site data. Aquifer type from USGS. -2025-09-30 11:20:46,787 [INFO ] Some data from USGS. Overlapping site data. Formation pick from USGS. -2025-09-30 11:20:46,787 [INFO ] Some limited WQ measurements at well and nearby stream. Filed. Not entered. -2025-09-30 11:20:46,788 [INFO ] Some water levels from USGS -2025-09-30 11:20:46,788 [INFO ] Some WL's from Lee Foster Well Services -2025-09-30 11:20:46,788 [INFO ] Some WLs from USGS & Dames and Moore (4/11/1986). Some WQ from Vail Engineering (Sept. 1993). -2025-09-30 11:20:46,788 [INFO ] Souder-Miller & Assoc., 1995, Unpublished Consultant's Report, Fig 2, well completion diagram -2025-09-30 11:20:46,788 [INFO ] Source data for some chemistry for this location is from the US EPA. -2025-09-30 11:20:46,788 [INFO ] Source data for this location is from the US EPA & NMED water quality. -2025-09-30 11:20:46,788 [INFO ] Source data for this location is from the US EPA. -2025-09-30 11:20:46,789 [INFO ] T.Decker, written comm., 2000 (letter to B.McLean "Testing - EUI Well #15", 2/25/2000); -2025-09-30 11:20:46,789 [INFO ] Taos Soil & Water Concervation District -2025-09-30 11:20:46,789 [INFO ] Taos Soil & Water Conservation District -2025-09-30 11:20:46,789 [INFO ] Taos Soil & Water Conservation District water sample study. -2025-09-30 11:20:46,789 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM -2025-09-30 11:20:46,789 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM; field check by Johnson -2025-09-30 11:20:46,789 [INFO ] Theis, C.V., Taylor, Jr., G.C., and Murray, C.R. (1941) Thermal Waters of the Hot Springs Artesian Basin Sierra County, New Mexico. U.S. Geological Survey in cooperation with State Engineer of New Mex -2025-09-30 11:20:46,789 [INFO ] TSWCD -2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Apdx. 2 & 3. (Data from Drakos, GGI, 1996) Report filed w/TV-229. Al -2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Appendices 1, 3, 4 -2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, pg. 7, Table 1. -2025-09-30 11:20:46,790 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivison, Taos County, New Mexico, Turner Environmental Consultants, Pg. 18, Table 1, and Appendices 2,3. (Data from Jenkins in 1982). Ful -2025-09-30 11:20:46,790 [INFO ] undeclared well. -2025-09-30 11:20:46,790 [INFO ] URS Corp. for Chevron -2025-09-30 11:20:46,791 [INFO ] USFS - Espanola Ranger District - Range Improvement records. -2025-09-30 11:20:46,791 [INFO ] USGS & Garrabrant, L.A. (1993) Water Resources of Taos County, NM USGS WRIR 93-4107 (chemistry sample). This well matched to Garrabrant well via notes from Tony Benson's Sunshine notebooks. -2025-09-30 11:20:46,791 [INFO ] USGS & Myers, Everheart, Wilson (1994) Geohydrol. Of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, WRI 94-4125 -2025-09-30 11:20:46,791 [INFO ] USGS & NMED SWP Atlas online -2025-09-30 11:20:46,791 [INFO ] USGS & Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:20:46,791 [INFO ] USGS & Texas Water Development Board -2025-09-30 11:20:46,791 [INFO ] USGS & Winograd, I.J. (1959) Ground-water Conditions & Geology of Sunshine Valley & Western Taos Cty, NM, NMSEO, Tech. Report #12. & Garrabrant, L.A. (1993) USGS WRIR 93-4107 -2025-09-30 11:20:46,792 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:20:46,792 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:20:46,792 [INFO ] USGS and Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:20:46,792 [INFO ] USGS Chem Analysis Sheet from R.L. Borton Files. 1970; WATERS; C.Borchert, 3/23/09, written communication -2025-09-30 11:20:46,792 [INFO ] USGS Drillers reports -2025-09-30 11:20:46,792 [INFO ] USGS drillers reports; D.Koning cuttings review -2025-09-30 11:20:46,792 [INFO ] USGS drilling reports; D.Koning cutting review -2025-09-30 11:20:46,792 [INFO ] USGS Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:20:46,793 [INFO ] USGS, chemistry from Lynn Brandvold with NMBGMR chemistry lab, OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:20:46,793 [INFO ] USGS. POD log not available. -2025-09-30 11:20:46,793 [INFO ] USGS. Well screens/WQ from Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:20:46,793 [INFO ] USGS/OSE water-level data sheets; WATERS -2025-09-30 11:20:46,793 [INFO ] USGS; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:20:46,793 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, New Mexico, NM OSE Technical Report 8. -2025-09-30 11:20:46,794 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, NM, OSE Technical Report 8. -2025-09-30 11:20:46,794 [INFO ] USGS; Screens from NPS water level and well documentation -2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc, 1984, Remuda Ridge Warehouse, Santa Fe County, NM, October 1984 -2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc, Inc., 1982, Geohydrology Rept, Pecos Trail Subdn, Santa Fe Cnty, Aug 1982 -2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc., 1984, Geohydrology Report, Hondo Trails Subdn, Santa Fe Cnty, Dec 1984 -2025-09-30 11:20:46,794 [INFO ] VeneKlasen & Assoc., Inc., 1986, Geohydrology Report, Talbot Subdivision, May 1986 -2025-09-30 11:20:46,794 [INFO ] VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75 -2025-09-30 11:20:46,795 [INFO ] Veneklasen, 1977, Geohydro Lanphere -- Rio Villa Subdivision, AguaFria Rd, 5/77 -2025-09-30 11:20:46,795 [INFO ] Veneklasen, 1977, Hydrogeologic Report La Tierra Subdivn, Phase III, May 1977, Consulting Prof Inc -2025-09-30 11:20:46,795 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977 -2025-09-30 11:20:46,795 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977; field check Cruz/Frost -2025-09-30 11:20:46,795 [INFO ] Veneklasen, 1980, Geohydro of Santiago Subdivision, 10/80 -2025-09-30 11:20:46,795 [INFO ] VeneKlasen, 6/75, Hydrogeo Rept La Tierra; field check by Johnson -2025-09-30 11:20:46,795 [INFO ] VeneKlasen, Hydrogeologic Report for La Tierra Subdivision 6/75; well log; field check Johnson -2025-09-30 11:20:46,795 [INFO ] Water chemistry from TSWCD. Fairly sure this is COS-11, eventhough there is a descrepency between well log depth and well depth on chemistry sheet. -2025-09-30 11:20:46,796 [INFO ] Water Quality: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. -2025-09-30 11:20:46,796 [INFO ] WATERS; field check -2025-09-30 11:20:46,796 [INFO ] WATERS; Lewis database, 2001; VeneKlasen, 1975, Hydrogeologic Report LaTierra, 6/75; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review; C.Borchert, 3/23/09, written comm -2025-09-30 11:20:46,796 [INFO ] WATERS; WK Summers project files; JSAI, 2001, App. #6; J. Frost project files (1999) -2025-09-30 11:20:46,796 [INFO ] Watson/Shomaker & Assoc., 5/97, Well Report, Drilling, Construction, and Testing, City of Santa Fe, Torreon Well No. 2, for PNM Water Services Santa Fe, NM; CDM, Jan 2000, Water Supply Analysis -2025-09-30 11:20:46,796 [INFO ] Well owner. -2025-09-30 11:20:46,796 [INFO ] Well also in PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM -2025-09-30 11:20:46,797 [INFO ] well depth from Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:20:46,797 [INFO ] Well in Meyers report: Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:20:46,797 [INFO ] Well info from inside well cap, presumably from driller? -2025-09-30 11:20:46,797 [INFO ] Well Log -2025-09-30 11:20:46,797 [INFO ] Well log and completion diagrams -2025-09-30 11:20:46,797 [INFO ] Well log and field check by Johnson; not previously in GWSI -2025-09-30 11:20:46,797 [INFO ] Well log and well completion diagrams -2025-09-30 11:20:46,797 [INFO ] Well log and well completion diagrams. WQ data from P. Longmire Santa Fe River 1985 Report -2025-09-30 11:20:46,798 [INFO ] Well log/record by GGI; field check by Johnson -2025-09-30 11:20:46,798 [INFO ] Well log; field check -2025-09-30 11:20:46,798 [INFO ] Well log; field check by Johnson -2025-09-30 11:20:46,798 [INFO ] well log; field check by Johnson; owner -2025-09-30 11:20:46,798 [INFO ] well log; Johnson field check -2025-09-30 11:20:46,798 [INFO ] Well Log; JSAI, 2001, App. #6 -2025-09-30 11:20:46,798 [INFO ] Well owner -2025-09-30 11:20:46,799 [INFO ] Well owner and old well record. -2025-09-30 11:20:46,799 [INFO ] Well owner and OSE site info. -2025-09-30 11:20:46,799 [INFO ] Well owner, and well record. -2025-09-30 11:20:46,799 [INFO ] Well owner. -2025-09-30 11:20:46,799 [INFO ] Well record. -2025-09-30 11:20:46,799 [INFO ] Well record; field check -2025-09-30 11:20:46,799 [INFO ] Well record; field check by Cruz/Frost -2025-09-30 11:20:46,799 [INFO ] well record; field check by Johnson -2025-09-30 11:20:46,800 [INFO ] Well record; field check by Johnson; owner -2025-09-30 11:20:46,800 [INFO ] Well record; field check by Lyman -2025-09-30 11:20:46,800 [INFO ] Well record; field check by Lyman; SWL measured by GGI/reported by Cooper, 2000, Rept for Roybal -2025-09-30 11:20:46,800 [INFO ] Well record; field check with SFC Utilities (Leonard Quintana 490-0065) -2025-09-30 11:20:46,800 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:20:46,800 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:20:46,800 [INFO ] WK Summers project files; WATERS; Water Industries, Inc., 1982, Testing of Eldorado Well #1, Jan. 1982; water levels from W-1 and EUI#1; JSAI, 2001, App. #6 -2025-09-30 11:20:46,800 [INFO ] WL from USGS; chemistry and other data from Lynn Brandvold with NMBGMR chemistry lab & OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:20:46,801 [INFO ] WQ also from MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources. -2025-09-30 11:20:46,801 [INFO ] WQ from Taos Soil & Water Conservation District -2025-09-30 11:20:46,801 [INFO ] Z. Spiegel, 1972, Interpretation and application of an aquifer performance test on well RG-20228 at Pojoaque Terrace trailer court site HC McDonald Property, Santa Fe County, NM, 9/14/72 -2025-09-30 11:21:03,167 [INFO ] Reached limit of 10 rows. Stopping migration. -2025-09-30 11:21:03,181 [INFO ] transfer_wells took 20.534257 seconds -2025-09-30 11:21:04,200 [INFO ] transfer_wellscreens took 1.018381 seconds -2025-09-30 11:21:04,200 [INFO ] -2025-09-30 11:21:04,200 [INFO ] ********** TRANSFERRING CONTACTS ********** -2025-09-30 11:21:07,865 [INFO ] Processing PointID: 221 EB-663 -2025-09-30 11:21:07,879 [WARNING ] first 'Thompson, Warren' Skipping physical address. Validation error: 1 validation error for CreateAddress -postal_code - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.11/v/string_type -2025-09-30 11:21:07,890 [CRITICAL] Skipping first contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} -[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] -[parameters: ('Warren Thompson', 'Los Atrevidos, Inc.', 'Owner', 'Primary', None, None, None, None, None, None, None, 'private')] -(Background on this error at: https://sqlalche.me/e/20/f405) -2025-09-30 11:21:07,900 [CRITICAL] Skipping second contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} -[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] -[parameters: ("Warren's son", 'Los Atrevidos, Inc.', 'Owner', 'Secondary', None, None, None, None, None, None, None, 'private')] -(Background on this error at: https://sqlalche.me/e/20/f405) -2025-09-30 11:21:07,903 [INFO ] Processing PointID: 441 EB-057 -2025-09-30 11:21:07,915 [INFO ] added first contact for PointID EB-057 -2025-09-30 11:21:07,915 [CRITICAL] Skipping second contact for PointID EB-057 due to validation error: 1 validation error for CreateContact - Value error, Either name or organization must be provided. [type=value_error, input_value={'thing_id': 8, 'release_...ails': [], 'phones': []}, input_type=dict] - For further information visit https://errors.pydantic.dev/2.11/v/value_error -2025-09-30 11:21:07,915 [INFO ] transfer_contacts took 3.714991 seconds -2025-09-30 11:21:07,915 [INFO ] -2025-09-30 11:21:07,916 [INFO ] ********** TRANSFERRING LINK IDS ********** -2025-09-30 11:21:09,870 [INFO ] Processing PointID: DE-0219, Thing ID: 1, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:21:09,876 [INFO ] Processing PointID: EB-057, Thing ID: 8, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:21:09,881 [INFO ] Processing PointID: BW-0131, Thing ID: 5, AlternateSiteID=11S9E22.441, AlternateSiteID2=None -2025-09-30 11:21:09,882 [INFO ] adding link id: BW-0131 -2025-09-30 11:21:09,896 [INFO ] Processing PointID: EB-663, Thing ID: 9, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:21:09,902 [INFO ] Processing PointID: TO-0225, Thing ID: 3, AlternateSiteID=6N8E11.42, AlternateSiteID2=None -2025-09-30 11:21:09,902 [INFO ] adding link id: TO-0225 -2025-09-30 11:21:09,912 [INFO ] Processing PointID: UC-0100, Thing ID: 6, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:21:09,916 [INFO ] Processing PointID: QY-0274, Thing ID: 4, AlternateSiteID=11.31.19.333, AlternateSiteID2=None -2025-09-30 11:21:09,917 [INFO ] adding link id: QY-0274 -2025-09-30 11:21:09,926 [INFO ] Processing PointID: PC-037, Thing ID: 10, AlternateSiteID=PW-060, AlternateSiteID2=None -2025-09-30 11:21:09,926 [INFO ] adding link id: PC-037 -2025-09-30 11:21:09,935 [INFO ] Processing PointID: NM-26878, Thing ID: 2, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:21:09,940 [INFO ] Processing PointID: QY-0181, Thing ID: 7, AlternateSiteID=11.30.14.143b, AlternateSiteID2=None -2025-09-30 11:21:09,941 [INFO ] adding link id: QY-0181 -2025-09-30 11:21:09,948 [INFO ] transfer_link_ids took 2.032392 seconds -2025-09-30 11:21:11,515 [WARNING ] Both OSEWellID and OSEWelltagID are null for DE-0219 -2025-09-30 11:21:11,515 [WARNING ] Both OSEWellID and OSEWelltagID are null for NM-26878 -2025-09-30 11:21:11,516 [WARNING ] Both OSEWellID and OSEWelltagID are null for TO-0225 -2025-09-30 11:21:11,516 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0274 -2025-09-30 11:21:11,516 [WARNING ] Both OSEWellID and OSEWelltagID are null for BW-0131 -2025-09-30 11:21:11,519 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for UC-0100 -2025-09-30 11:21:11,519 [WARNING ] OSEWellTagID is null for UC-0100 -2025-09-30 11:21:11,522 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0181 -2025-09-30 11:21:11,526 [WARNING ] OSEWellTagID is null for EB-057 -2025-09-30 11:21:11,546 [WARNING ] OSEWellTagID is null for EB-663 -2025-09-30 11:21:11,555 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for PC-037 -2025-09-30 11:21:11,556 [WARNING ] OSEWellTagID is null for PC-037 -2025-09-30 11:21:11,558 [INFO ] transfer_link_ids_welldata took 1.609227 seconds -2025-09-30 11:21:11,558 [INFO ] -2025-09-30 11:21:11,558 [INFO ] ********** TRANSFERRING GROUPS ********** -2025-09-30 11:21:12,442 [INFO ] Adding 2 things to group La Cienega, prefix EB -2025-09-30 11:21:12,474 [INFO ] Adding 2 things to group Espanola Basin, prefix EB -2025-09-30 11:21:12,512 [INFO ] Adding 1 things to group Union County, prefix UC -2025-09-30 11:21:12,620 [INFO ] Adding 1 things to group New Mexico, prefix NM -2025-09-30 11:21:12,711 [INFO ] Adding 2 things to group Quay County, prefix QY -2025-09-30 11:21:12,735 [INFO ] Adding 1 things to group Brackish Water, prefix BW -2025-09-30 11:21:12,784 [INFO ] Adding 1 things to group Torrance County, prefix TO -2025-09-30 11:21:12,856 [INFO ] Adding 1 things to group Placitas, prefix PC -2025-09-30 11:21:13,008 [INFO ] Adding 1 things to group Delaware Basin, prefix DE -2025-09-30 11:21:13,033 [INFO ] Adding 1 things to group ABCWUA, prefix NM -2025-09-30 11:21:13,078 [INFO ] transfer_groups took 1.519745 seconds -2025-09-30 11:21:13,078 [INFO ] -2025-09-30 11:21:13,079 [INFO ] ********** TRANSFERRING WATER LEVELS ********** -2025-09-30 11:21:17,440 [INFO ] Valid Measuring Agencies: -2025-09-30 11:21:17,440 [INFO ] NMBGMR -2025-09-30 11:21:17,441 [INFO ] NMT -2025-09-30 11:21:17,441 [INFO ] NPS -2025-09-30 11:21:17,441 [INFO ] SNL -2025-09-30 11:21:17,441 [INFO ] TSWCD -2025-09-30 11:21:17,441 [INFO ] USFS -2025-09-30 11:21:17,444 [INFO ] Processing PointID: EB-663 -2025-09-30 11:21:17,452 [INFO ] Created field event: ID 1 | Date 2018-05-04 04:47:00+00:00 | Thing ID 9 | Thing Name EB-663. -2025-09-30 11:21:17,457 [INFO ] Created field activity: ID 1 | Type groundwater level. -2025-09-30 11:21:17,461 [INFO ] Created contact: ID 4 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR -2025-09-30 11:21:17,465 [INFO ] Created field event contact: ID 1 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR -2025-09-30 11:21:17,466 [INFO ] Created sample: ID None | Date 2018-05-04 04:47:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) -2025-09-30 11:21:17,466 [INFO ] Created observation: ID None | DT 2018-05-04 04:47:00+00:00 | Value 282.84 | MPHeight 2.79 -2025-09-30 11:21:17,492 [INFO ] Created field event: ID 2 | Date 2015-04-13 00:00:00+00:00 | Thing ID 9 | Thing Name EB-663. -2025-09-30 11:21:17,496 [INFO ] Created field activity: ID 2 | Type groundwater level. -2025-09-30 11:21:17,499 [INFO ] Created field event contact: ID 2 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR -2025-09-30 11:21:17,500 [INFO ] Created sample: ID None | Date 2015-04-13 00:00:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) -2025-09-30 11:21:17,500 [INFO ] Created observation: ID None | DT 2015-04-13 00:00:00+00:00 | Value 285.46 | MPHeight 2.79 -2025-09-30 11:21:17,518 [INFO ] transfer_water_levels took 4.439545 seconds -2025-09-30 11:21:17,518 [INFO ] transfer_all took 41.38597 seconds -2025-09-30 11:21:18,511 [INFO ] Uploaded log to gs://ocotillo/transfer_logs/transfer_2025-09-30T11h20m36s.log -2025-09-30 11:21:18,512 [INFO ] -2025-09-30 11:21:18,512 [INFO ] ********** END-------------------------------------- ********** diff --git a/transfer_2025-09-30T11h33m04s.log b/transfer_2025-09-30T11h33m04s.log deleted file mode 100644 index 7d64f6127..000000000 --- a/transfer_2025-09-30T11h33m04s.log +++ /dev/null @@ -1,750 +0,0 @@ -2025-09-30 11:33:04,318 [INFO ] -2025-09-30 11:33:04,318 [INFO ] ********** START-------------------------------------- ********** -2025-09-30 11:33:04,319 [INFO ] ********** STARTING TRANSFER ********** -2025-09-30 11:33:04,319 [INFO ] Erasing existing data and initializing lexicon and sensors -2025-09-30 11:33:04,319 [INFO ] Erasing existing data -2025-09-30 11:33:04,675 [INFO ] Recreating tables -2025-09-30 11:33:04,961 [INFO ] erase took 0.642332 seconds -2025-09-30 11:33:04,962 [INFO ] Initializing lexicon -2025-09-30 11:33:10,792 [INFO ] lexicon took 5.829925 seconds -2025-09-30 11:33:10,792 [INFO ] Initializing sensors -2025-09-30 11:33:10,800 [INFO ] sensor took 0.008076 seconds -2025-09-30 11:33:10,801 [INFO ] -2025-09-30 11:33:10,801 [INFO ] ********** TRANSFERRING WELLS ********** -2025-09-30 11:33:14,878 [INFO ] Valid WellData Datasources: -2025-09-30 11:33:14,878 [INFO ] (Author?), 1998, Geohydrology of River Bend Subdivision Taos County, New Mexico, Glorieta Geoscience, Inc. Appendix A. (Full report filed w/TV-121). -2025-09-30 11:33:14,878 [INFO ] 1) Author?, 1995, Town of Taos San Juan/Chama Diversion Proj., Phase 2, Vol. 1, Production Well & Observation Well Installation, Testing, and Determination of Aquifer Coefficients, GGI. 2) Water Level -2025-09-30 11:33:14,879 [INFO ] 1) Bernalillo County, Sara Chudnoff; 2) San Pedro Creek Estates HOA -2025-09-30 11:33:14,879 [INFO ] 1) BLM - Part of the Capitan Aquifer Observation-Well Network -2025-09-30 11:33:14,879 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 3) Sandia Report SAND2018-12018 NM Permian Basin -2025-09-30 11:33:14,879 [INFO ] 1) BLM, 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:33:14,879 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources -2025-09-30 11:33:14,880 [INFO ] 1) Discussion of Geology, Hydrogeol., & H2O Quality of Tailings Area, Molycorp Facility, Taos Cty, NM, 1995, South Pass Resources 2) Pre-Design Groundwater Investigation at the Tailing Facil. ARCADIS -2025-09-30 11:33:14,880 [INFO ] 1) Drakos, P., Riesterer, J., Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, GGI (Filed w/TV-171). 2) Water Level Monitoring Prgm. -2025-09-30 11:33:14,880 [INFO ] 1) GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology; 2) USGS -2025-09-30 11:33:14,880 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) 3) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:33:14,880 [INFO ] 1) Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:33:14,880 [INFO ] 1) Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:33:14,881 [INFO ] 1) Sandia National Labs/ BLM Wells, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:33:14,881 [INFO ] 1) Turner, B., 1996, Water Availability for the El Mirador Subdvn, Taos Cty, NM, Turner Environ. Consult., Appd 2&3 (filed w/TV-229). 2) Vista del Valle report (filed w/TV-153). 3) Drakos, P. 2005, Ge -2025-09-30 11:33:14,881 [INFO ] 1) USGS - WL; 2) Brandvold - WQ -2025-09-30 11:33:14,881 [INFO ] 1) USGS - WLs 2) Brandvold -WQ -2025-09-30 11:33:14,881 [INFO ] 1) USGS - WLs 2) Brandvold -WQ, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:33:14,881 [INFO ] 1) USGS 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia National Labs SAND2018-12018 NM Permian Basin -2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) David Chace of Hydro Resolutions -2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) San Pedro Creek Estates HOA -2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) Sandia National Labs/ BLM Well, 3) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:33:14,882 [INFO ] 1) USGS 2) Sandia National Labs/BLM Well -2025-09-30 11:33:14,882 [INFO ] 1) USGS and 2) Data from Lynn Brandvold with NMBGMR chemistry lab, 3) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) BLM, 3) Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38, 4) Sandia Report SAND2018-12018 NM Permian Basin -2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR -2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia National Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia Natl. Lab Report SAND2018-12018 Water Resource Assessment in the NM Permian Basin. -2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:33:14,883 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) GW3: Geol. & Groundwater Res. of Eddy Cty. (1952) Hendrickson & Jones, NMBGMR, 4) SNL SAND2021-1869 -2025-09-30 11:33:14,884 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin, 3) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:33:14,884 [INFO ] 1) USGS, 2) Sandia Natl. Labs Report SAND2021-1869 -2025-09-30 11:33:14,884 [INFO ] 1) Well depth and screen info. from spreadsheet from mayor of Questa. 2) Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis. -2025-09-30 11:33:14,884 [INFO ] AGW Consultants, 12/85, Geohydro of R.San Marcos Property; Balleau GWA, 1999; field check -2025-09-30 11:33:14,884 [INFO ] AGW Consultants, 12/85, Geohydrology of Rancho San Marcos -2025-09-30 11:33:14,884 [INFO ] AGW Consultants, May 1984, Hydrogeology of the Santa Fe Downs Resort Area Near Santa Fe, Santa Fe County, NM -2025-09-30 11:33:14,884 [INFO ] AGWC, Inc., 1983, Hydrogeology of the Great Cloud Zen Center, Oct 1983 -2025-09-30 11:33:14,884 [INFO ] Also see: Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. (Filed w/TV-103). -2025-09-30 11:33:14,885 [INFO ] American Ground Water Consultants, 1983, Hydrogeology of the Villa Marika Property, October 1983. -2025-09-30 11:33:14,885 [INFO ] AMP visited this well on 5/25/2022 but we didn't do a well inventory. -2025-09-30 11:33:14,885 [INFO ] ARCADIS Project B0046795.0019, Early Design Actions-Pre-Design Tailing Facility Groundwater Invest. Results from Monitoring Wells MW-43, MW-44 and MW-45 (May 1, 2015). -2025-09-30 11:33:14,885 [INFO ] ARCADIS well/lithologic log -2025-09-30 11:33:14,885 [INFO ] Author (?), 1998, Geohydrology of River Bend Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. Also in NMGS Gdbk 55 pg 396. -2025-09-30 11:33:14,885 [INFO ] Balleau Groundwater, 2001, CDEX1 Completion Report -2025-09-30 11:33:14,885 [INFO ] Balleau Groundwater, 2002, CDPROD1 Completion Report, 2/02 -2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., Oct 2007, Injection Demonstration Well -- Well Completion Report -2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well A -- Well Completion Report -2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., Oct 2007, Observation Well B -- Well Completion Report -2025-09-30 11:33:14,886 [INFO ] Balleau Groundwater, Inc., written communication, 11/27/2007 -2025-09-30 11:33:14,886 [INFO ] Balleau GW, 2002, CDPROD Completion Report; well log -2025-09-30 11:33:14,886 [INFO ] Balleau GWA, 1999; Balleau GWA -2025-09-30 11:33:14,887 [INFO ] Balleau GWA, 1999; field check -2025-09-30 11:33:14,887 [INFO ] Balleau GWA, 1999; field check; Jenkins, 1977, Geohydro Investigation of Turquoise Trail Subdivision -2025-09-30 11:33:14,887 [INFO ] Bjorklund, L.J. (1957) Reconnaissance of Groundwater Conditions in the Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:33:14,887 [INFO ] Black & Veatch Consulting Engineers, 1978, Construction and Testing Report Buckman Well No. 2; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 -2025-09-30 11:33:14,887 [INFO ] Black & Veatch Consulting Engrs, 1978, Construction and Testing Rept Buckman Well No. 1; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:33:14,887 [INFO ] Bob Hubbard -2025-09-30 11:33:14,887 [INFO ] Bureau scientists performed a pump test on this well. -2025-09-30 11:33:14,887 [INFO ] C. Borchert, written comm.; WATERS -2025-09-30 11:33:14,888 [INFO ] Carrol Wood, well owner. -2025-09-30 11:33:14,888 [INFO ] Cathie. -2025-09-30 11:33:14,888 [INFO ] CB00107524CCA -2025-09-30 11:33:14,888 [INFO ] CDM completion log to NMED SW Bureau -2025-09-30 11:33:14,888 [INFO ] CDM well completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau -2025-09-30 11:33:14,888 [INFO ] CH2M Hill report to NMED UST Bureau -2025-09-30 11:33:14,888 [INFO ] CH2M Hill water level measurements at WWTP (entered into db). -2025-09-30 11:33:14,888 [INFO ] Charles Heaton, Sinagua Consultants, 1999, Well Hydrology Report Elmer Garcia Property, Aug 1999; County Records; well log; field check -2025-09-30 11:33:14,889 [INFO ] Charles Walker -2025-09-30 11:33:14,889 [INFO ] Chemistry data from Lynn Brandvold with NMBGMR chemistry lab. NMBGMR visited the site after chem. data input. -2025-09-30 11:33:14,889 [INFO ] Chemistry from Matt Sophy -2025-09-30 11:33:14,889 [INFO ] Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:33:14,889 [INFO ] Circular 26: Water Well Records and Well Water Quality in Southwestern San Agustin Plains, Catron Cty, NM (1954) Bushman, F.X. and Valentine, C.P., NMBGMR -2025-09-30 11:33:14,889 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; CDM, Jan 2001 -2025-09-30 11:33:14,889 [INFO ] City of Santa Fe; OSE records. NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:33:14,889 [INFO ] City of Santa Fe; OSE records; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:33:14,890 [INFO ] Claudia Borchert, 2002, MS Thesis -2025-09-30 11:33:14,890 [INFO ] Compiled by Susan VonGonten, NMED UST Bureau -2025-09-30 11:33:14,890 [INFO ] Consulting Professionals, Inc, Hydrogeologic Rept La Tierra Subdn, Phase 4, Santa Fe Cnty, Dec1978 -2025-09-30 11:33:14,890 [INFO ] Consulting Professionals, Inc., VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75; well log -2025-09-30 11:33:14,890 [INFO ] Cooper, 1991, Geohydro Rept for Country Boarding Kennel, 5/1991 -2025-09-30 11:33:14,890 [INFO ] Cooper, 1995, Garcia Ranch report; Wilson, 1978, SFC water plan Table 1-28; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis. -2025-09-30 11:33:14,890 [INFO ] Cooper, 1995, rept to Garcia Ranch; Kuckleman, 2003 -2025-09-30 11:33:14,890 [INFO ] Cooper, D. R., 1995, Geohydrology Report for Cottonwood Ranch Subdn, Santa Fe Cty, NM, April 1995 -2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., 1998, Geohydrology for WK Jones, Santa Fe Cnty, Oct 1998 -2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrologic Report for Rancho De Los Cuervos, Santa Fe Cnty, Sept1986; Berman Tract -2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Report for Frank M Gallegos & Andrew M Leyba, Santa Fe Cnty, Oct, 1999 -2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Report for Friendly Construction, Inc., Santa Fe Cnty, July 1994 -2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Report for Tano Vista Grande, Santa Fe Cnty, NM, Nov 1996 -2025-09-30 11:33:14,891 [INFO ] Cooper, D. R., Geohydrology Rept for Marvin Pollock & Bettina Lancaster, Santa Fe Cnty, May 1994 -2025-09-30 11:33:14,891 [INFO ] Cooper, D.R., Geohydrology Rept for El Prado Subdn, Santa Fe Cnty, Sept 1994 -2025-09-30 11:33:14,892 [INFO ] Cooper, D.R., Santa Fe Design Assoc, Geohydrology Rept for Rancho Oso Loco, Santa Fe Cnty, 1985 -2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology for Rancho De Los Ninos, Santa Fe Cnty, NM, April 1999; Rick Borrego -2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for Bob Shipp, Santa Fe County, NM, June 1995 -2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for Heartstone Development LLC, Dec 2001 -2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for James B. Alley Jr., Santa Fe Cnty, NM, March 1995 -2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report for Lawrence Tuchman, Santa Fe Cnty, Oct 1994; Frost & Assoc., Santa Fe County WQ Monitoring, June 1996 -2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Report For Los Suenos, Santa Fe County, NM, April 1994 -2025-09-30 11:33:14,892 [INFO ] Cooper, Dennis R., Geohydrology Rept for Jeffrey Jacobs & Thad Bowman, Santa Fe Cnty, Jan 1996 -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis R., July 1995, Analysis of water levels in wells on Garcia Ranch, unpub consult rept -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis R., July 1995, Unpub report to Garcia Ranch; well log; WATERS; USGS field notes -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, 1990, Geohydrology Report for San Juan Complex Partnership Ltd., Sept 1990; Field check by Johnson; well log; SFO files -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, 1993, Geohydrology Rept for Neighbors, Inc., Santa Fe Cnty, Dec 1993; well log Joe Briscoe -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, 2000, Geohydro Rept for Roybal Subdivision, Santa Fe Cnty, NM, Oct 2000; field check -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, Geohydrol Rept for Hacienda Del Cerezo, Santa Fe Cnty, NM, Jan 1994; well logs -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis, Geohydrology Rept for B. Howard & J.Morris, Santa Fe Cnty, NM, Dec 1994 -2025-09-30 11:33:14,893 [INFO ] Cooper, Dennis,1991, Geohydrology Rept for Sheila Cooper; field check by Johnson -2025-09-30 11:33:14,894 [INFO ] Cooper, Geohydro Report for Land Ventures, LLC, 6/2001; field check by Johnson; well log -2025-09-30 11:33:14,894 [INFO ] Cooper, Geohydrology Rept for Welsh Family Ltd Partnership, Santa Fe Cnty, March 1995 -2025-09-30 11:33:14,894 [INFO ] Corbin Consulting, Inc., 2005, Geohydrology Report (RG-27728-S) Longanecker Property. March 8, 2005 -2025-09-30 11:33:14,894 [INFO ] Corbin Consulting, Inc., 2005, Geo-Hydrology Report McMillan Subdivision, June 6, 2005 -2025-09-30 11:33:14,894 [INFO ] Corbin, J., 2004, Constant Property Geohydrology Report, Corbin Consulting Inc. June 3, 2004. Field checked. -2025-09-30 11:33:14,894 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005 (EB-618) -2025-09-30 11:33:14,894 [INFO ] Corbin, James, 2005, Reconnaissance Report McMillan Property. Feb. 28, 2005; (EB-618) -2025-09-30 11:33:14,894 [INFO ] Corbin, James, 2005. -2025-09-30 11:33:14,895 [INFO ] County records; WATERS; drilling log -2025-09-30 11:33:14,895 [INFO ] County records; well log -2025-09-30 11:33:14,895 [INFO ] CT890 also at same site, cinfusing records not sure which well is correct, this one has a log -2025-09-30 11:33:14,895 [INFO ] Cuttings from NMBG. Bill White has cuttings. Geophysics: gamma ray, neutron, 3-arm-caliper, resistivitity, single pt resistance, SP, temperature profile -2025-09-30 11:33:14,895 [INFO ] Dames & Moore, Inc., 1995, Geohydroloy Report Komis Estates for Southwest Surveying Co., Inc., Dec. 1995; J. Corbin personal communication, 2005 -2025-09-30 11:33:14,895 [INFO ] Daniel B. Stephens & Associates report on Campbell Ranch subdivision wells -2025-09-30 11:33:14,895 [INFO ] Daniel B. Stevens & Associates consultant report (AMP\data\datasets\Campbell Ranch Bernalillo County) -2025-09-30 11:33:14,895 [INFO ] Darr, M.J., 2006, Geohydrologic Investigation Report: Proposed "Ocotillo" Subdivision, Taos County, NM. MJDarrconsult, Inc / Hydroscience Assoc. Inc, 2006, Analysis of Aquifer Test Run Using RG-87080 -2025-09-30 11:33:14,896 [INFO ] Darr, M.J., 2008, Geohydrologic Investigation Report: Proposed Los Llanos Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. -2025-09-30 11:33:14,896 [INFO ] Darr, Michael J., 2007, Geohydrologic Investigation Report: Proposed "Golf Country" Subdivision, Taos County, New Mexico, MJDarrconsult, Inc. -2025-09-30 11:33:14,896 [INFO ] Data from Groundwater Report 2: Geology & Groundwater Resources of San Miguel County, NM. (1951) NMBGMR by R.L. Griggs and G.E. Hendrickson. -2025-09-30 11:33:14,896 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab. -2025-09-30 11:33:14,896 [INFO ] Data from Lynn Brandvold with NMBGMR chemistry lab., OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:33:14,896 [INFO ] Data from owner well testing via NMBGMR water lab. -2025-09-30 11:33:14,896 [INFO ] David Chace of Hydro Resolutions -2025-09-30 11:33:14,896 [INFO ] David Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrolgoy of the Las Dos, Phase II Area, Santa Fe County, NM, October 1982 -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrologic Conditions at the San Juan Residences, Santa Fe Cnty, April 1982 -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983 -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; Steinberger log of R1 test hole, K.Summers files -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Los Vaqueros Subdn, Santa Fe Cnty, May 1983; WK Summers project files -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979 -2025-09-30 11:33:14,897 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; Mourant; Spiegel & Baldwin, p 241 -2025-09-30 11:33:14,898 [INFO ] David N Jenkins, Geohydrology of the Vista Subdivision, Santa Fe County, Dec 1979; WATERS -2025-09-30 11:33:14,898 [INFO ] David N. Jenkins, Geohydrologic Conditions at the Thorpe Condominiums, Santa Fe Cnty, Nov 1982 -2025-09-30 11:33:14,898 [INFO ] David Updegraff & William Lyons, 1978, Geohydrology of the Hyde Park Estates Unit 3 Subdiv'n, Aug 1978 -2025-09-30 11:33:14,898 [INFO ] DBStephens report to NMED UST Bureau -2025-09-30 11:33:14,898 [INFO ] depth made up by GCR based on nearby wells, no actual data -2025-09-30 11:33:14,898 [INFO ] depth made up by GCR, no actual data, assume similar to well K-14 (UC 30) -2025-09-30 11:33:14,898 [INFO ] Discussion of Geology, Hydrogeology, and Water Quality of the Tailings Area, Molycorp Facility, Taos County, NM, 1995, South Pass Resources, Inc. -2025-09-30 11:33:14,898 [INFO ] Drakos, P. & Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. Also, Water Level Monitoring Prgm. 2002-2 -2025-09-30 11:33:14,899 [INFO ] Drakos, P. and Hodgins, M., 2000, Drilling and Testing Report, Bureau of Reclamation 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level -2025-09-30 11:33:14,899 [INFO ] Drakos, P., 2007, Geohydrology of the Estancias Atalaya Subdivision, Taos County, New Mexico, Glorieta Geoscience, Inc. -2025-09-30 11:33:14,899 [INFO ] Drakos, P., et al., 2004, Hydrologic Characteristics of Basin-Fill Aquifers in the Southern San Luis Basin, NM, NMGS Guidebook 55, pg. 391. -2025-09-30 11:33:14,899 [INFO ] Drakos, P., Hodgins, M., 2000, Drilling & Testing Report, Bureau of Reclamation 2000-Ft. Deep Nested Piezometer/Exploratory Well (BOR #1), Taos, NM, GGI. 2) Water Level Monitoring Prgm. 2002-2007, GGI -2025-09-30 11:33:14,899 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. & Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Ft. Deep Nested Piezometer/Expl. Well (BOR-2) & 2100-Ft. Deep Production Well (BOR-3), Paseo del Canon We -2025-09-30 11:33:14,899 [INFO ] Drakos, P., Hodgins, M., Lazarus, J. and Riesterer, J, 2002, Drilling & Testing Report, BOR 2000-Feet Deep Nested Piezometer/Exploratory Well (BOR-2) & 2100-Feet Deep Production Well (BOR-3), Paseo de -2025-09-30 11:33:14,899 [INFO ] Drakos, P., Riesterer, J., and Lazarus, J., 2007, Drilling and Completion Report, Rio Pueblo 3200 Feet Deep Production Well (RG-37303-S), Taos, NM, Glorieta Geoscience, Inc. Also, Water Level Monitor -2025-09-30 11:33:14,899 [INFO ] Driller's log; OSE network WLs -2025-09-30 11:33:14,900 [INFO ] dubiousOSE match, depth and location are off -2025-09-30 11:33:14,900 [INFO ] Duncan, 2004. -2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; field check by Johnson 12-22-05 -2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; Frost, 1999, ElDorado Area Water & Sanitation District Project files -2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study -2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; J.Frost, 1999, Eldorado Area WQ study. -2025-09-30 11:33:14,900 [INFO ] Duncan, 2004; JSAI, 2001, App. #6 -2025-09-30 11:33:14,900 [INFO ] Exploratory & Shallow Well Drilling Rio Grande Watershed Study-Phase 1 San Acacia Surface Water/Groundwater Investigation (Dec. 5, 2003) S.S. Papadopulos & Associates for US Army Corps of Engineer -2025-09-30 11:33:14,901 [INFO ] Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94 -2025-09-30 11:33:14,901 [INFO ] Field check by Johnson -2025-09-30 11:33:14,901 [INFO ] Field check by Johnson, Cruz, Frost; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review -2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; Cooper, 1995, report to Garcia Ranch; Borton field notes -2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 2/14/2002 -2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; Kuckleman Pump Service, report of visit 7/2/98 -2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; owner info -2025-09-30 11:33:14,901 [INFO ] Field check by Johnson; WATERS -2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; WATERS; Mourant -2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; WATERS; sample site for Anderholm, 1994 USGS WRI Report 94-4078 -2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well log -2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well log; owner -2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well log; SFO files -2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well record -2025-09-30 11:33:14,902 [INFO ] Field check by Johnson; well/owner records -2025-09-30 11:33:14,903 [INFO ] Field check by Lyman -2025-09-30 11:33:14,903 [INFO ] Field check with Lyman and BLM realtor Hal Knox; plat map -2025-09-30 11:33:14,903 [INFO ] Field check, WATERS -2025-09-30 11:33:14,903 [INFO ] Field check; owner -2025-09-30 11:33:14,903 [INFO ] Field check; owner; well log -2025-09-30 11:33:14,903 [INFO ] Field check; WATERS -2025-09-30 11:33:14,903 [INFO ] Field check; WATERS. OSE Well Record. -2025-09-30 11:33:14,904 [INFO ] Field check; WATERS.OSE Well Record. -2025-09-30 11:33:14,904 [INFO ] Field check; well log -2025-09-30 11:33:14,904 [INFO ] Field check; well logg -2025-09-30 11:33:14,904 [INFO ] Field check; well record -2025-09-30 11:33:14,904 [INFO ] Field checked -2025-09-30 11:33:14,904 [INFO ] Field checked, WATERS -2025-09-30 11:33:14,904 [INFO ] Field checked, Well owners recollection of well info -2025-09-30 11:33:14,904 [INFO ] Field checked. WATERS. OSE Well Record. -2025-09-30 11:33:14,905 [INFO ] Field checked; WATERS -2025-09-30 11:33:14,905 [INFO ] Field checked; WATERS. OSE Well Record. -2025-09-30 11:33:14,905 [INFO ] Field checks; WATERS; well record. -2025-09-30 11:33:14,905 [INFO ] Finch & Petronis (JS&A), Sept. 2006, Hydrogeologic Report for the Galisteo Basin Preserve, Santa Fe County, NM, for Commonweal Conservancy, unpub. consultant report -2025-09-30 11:33:14,905 [INFO ] Finch, S.T., Jr., 2001, Hydrogeologic Evaluation of T-255 Et. Al., Near Carrizozo, New Mexico, John Shomaker & Associates, Inc. -2025-09-30 11:33:14,905 [INFO ] Finch, Steven T., and Melis, Erwin A., October 2008, Hydrogeologic evaluation of ground-water supply for the Spaceport America Site near Upham, NM, John Shomaker & Associates. -2025-09-30 11:33:14,905 [INFO ] Fleming, WM, Geohydrology Report for the Matthews Property, Santa Fe County, July 26, 1991 -2025-09-30 11:33:14,905 [INFO ] Foreman -2025-09-30 11:33:14,906 [INFO ] Frost MWB notes, 1994 -2025-09-30 11:33:14,906 [INFO ] Frost MWB Survey notes -2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe Cnty Ground Water Levels, 1995-96 Results; GWSI; USGS log books; well record -2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996 -2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; field check -2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Lewis database; NMED DWB (1999) via Jemez y Sangre Database (2000) -2025-09-30 11:33:14,906 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results, Jan 1996; Mourant -2025-09-30 11:33:14,907 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnso -2025-09-30 11:33:14,907 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; fieldchk by Johnson -2025-09-30 11:33:14,907 [INFO ] Frost, 1996, Santa Fe County Ground Water Levels, 1995-96 Results; Mourant; GWSI; well record -2025-09-30 11:33:14,907 [INFO ] Frost, 1999; WATERS -2025-09-30 11:33:14,907 [INFO ] Frost, MWB Survey notes; D.Koning log review -2025-09-30 11:33:14,907 [INFO ] Full EPA ID #TB-B011-150811-21 -2025-09-30 11:33:14,907 [INFO ] Full EPA ID #TB-B023-150814-021 -2025-09-30 11:33:14,908 [INFO ] Full EPA ID #TD-D001-150812-21 -2025-09-30 11:33:14,908 [INFO ] Full EPA ID #TD-D003-150812-21 -2025-09-30 11:33:14,908 [INFO ] Garrabrant, L.A., 1993, Water resources of Taos County, NM: USGS WRIR 93-4107. -2025-09-30 11:33:14,908 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Cuttings archived in our core shed. -2025-09-30 11:33:14,908 [INFO ] Geohydrologic Assessment of the Augustin Plains Ranch Area, NM (Tech. Memorandum), March 2, 2012, Geoscience. Pump test from driller (JSAI). Cuttings/chip boards archived in our core shed. -2025-09-30 11:33:14,908 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons -2025-09-30 11:33:14,908 [INFO ] Geohydrology Assoc., Inc. 1983, Geohydrology of Rancho Viejo Prop, SFC, NM, Feb 1983, LMCoons; map -2025-09-30 11:33:14,908 [INFO ] Geohydrology Assoc., Inc. lithologic log to NMED SW Bureau; field check by Johnson -2025-09-30 11:33:14,909 [INFO ] Geohydrology Assoc., Inc., 1988, Hydrogeologic Investigation of Cottonwood Estates, 2//88; WATERS -2025-09-30 11:33:14,909 [INFO ] Geophysics: dual induction guard, dual spaced neutron,microlog, high-resol temp log. WQ: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. -2025-09-30 11:33:14,909 [INFO ] GGI -2025-09-30 11:33:14,909 [INFO ] GGI report (has WQ sample). Requested from P. Drakos; have not received response. -2025-09-30 11:33:14,909 [INFO ] GGI report for NMED UST Bureau -2025-09-30 11:33:14,909 [INFO ] GGI report to NMED UST Bureau -2025-09-30 11:33:14,909 [INFO ] GGI reports: 1) 2001 report on RP-2500 in Town of Taos, 2) Water Level Monitoring -2025-09-30 11:33:14,909 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, NM,3/19/92; Sangre de Cristo Estates rept -2025-09-30 11:33:14,910 [INFO ] GGI, 100-Yr Water Availability Santa Fe Metro Center, 12/01; AND La Cienega de Santa Fe Proj, 10/91 -2025-09-30 11:33:14,910 [INFO ] GGI, 1988, Geohydrology of the Picture Rock Development Co. Property, Santa Fe, May, 1988. -2025-09-30 11:33:14,910 [INFO ] GGI, 1989, Geohydrology of the Baird Joint Venture Property, Taos County, NM, Glorieta Geoscience, Inc. -2025-09-30 11:33:14,910 [INFO ] GGI, 1989, Reconnaissance Geohydrology of the Lumpkins Property, Santa Fe County, NM, August 1989 -2025-09-30 11:33:14,910 [INFO ] GGI, 1990, Geohydrology of the Bajo Del Cielo Subdivision, Santa Fe County, NM. Dec. 1990 -2025-09-30 11:33:14,910 [INFO ] GGI, 1990, Geohydrology of the Beaver and Henry Properties, Santa Fe Cnty, Aug 1990 -2025-09-30 11:33:14,910 [INFO ] GGI, 1991, Geohydrology of the Walker Property, Santa Fe, May, 1991. -2025-09-30 11:33:14,910 [INFO ] GGI, 1995, Geohydrology of the Santa Fe Opera Tract Prop, Santa Fe Cnty, 3/95; G.Ellis; well log -2025-09-30 11:33:14,911 [INFO ] GGI, 1995, Geohydrology of the Vereda Serena Property, Santa Fe, October, 1995. -2025-09-30 11:33:14,911 [INFO ] GGI, 1995, Production well and observation well installation, testing, and determination of aquifer coefficients: unpub consultant report for Town of Taos, March 1995 -2025-09-30 11:33:14,911 [INFO ] GGI, 1998, Ground Water Conditions in the Vicinity of the Gonzales Tract San Marcos Arroyo Santa Fe County, NM, Dec. 1998 -2025-09-30 11:33:14,911 [INFO ] GGI, 2001, Geohydrologic report for the Village at Eldorado, July, 2001. -2025-09-30 11:33:14,911 [INFO ] GGI, 2001, Vista del Valle Subdivision Report, Taos County, New Mexico -2025-09-30 11:33:14,911 [INFO ] GGI, 2002, Addendum To: Reconnaissance Geohydrologic Characterization of Tesuque Ridge, 8/28/2002 -2025-09-30 11:33:14,911 [INFO ] GGI, 2002, Reconnaissance Geohydrologic Characterization of Tesuque Ridge Subdivn, 7/17/02 -2025-09-30 11:33:14,911 [INFO ] GGI, 2003, Geohydrologic Report for the Luna Rosa LLC Equestrian Center Property, July 2003. -2025-09-30 11:33:14,912 [INFO ] GGI, 2003, Reconnaissance Geohydrology report of the Clements Property, Santa Fe, April, 2003. -2025-09-30 11:33:14,912 [INFO ] GGI, 2003, Reconnaissance Water Availability Assessment of the Santa Fe Waldorf School - High School -2025-09-30 11:33:14,912 [INFO ] GGI, 2004, Geohydrology of the Estancia Subdivision, Santa Fe County, December, 2004 -2025-09-30 11:33:14,912 [INFO ] GGI, 2004, Reconnaissance Geohydrology Report for the Beaty Property, Santa Fe Cty, Dec. 22, 2004. -2025-09-30 11:33:14,912 [INFO ] GGI, Chapter VI Geohydrology of the La Cienega de Santa Fe Project, Oct 1991; GGI, 100-Yr Water Availability, Downs at Santa Fe, March 2001 for Pojoaque Pueblo Development Corp -2025-09-30 11:33:14,912 [INFO ] GGI, Geohydro of Naiche Property, 12/92; field check by Johnson; well recd -2025-09-30 11:33:14,912 [INFO ] GGI, Geohydrologic report for the Rancho San Lucas Subdivision, Feb 2002 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of La Canada Subdivision, Santa Fe County, NM, July 1985 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of Pop's Convenience Store, Santa Fe County, NM, Sept 29, 1997 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Brenner Property, Santa Fe County, NM, Aug 1990 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Bryant Prop, Santa Fe Cnty, May 1995; GGI, San Ysidro de Tesuque, May 1990 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Bryant Property, Santa Fe County, NM, May 1995; GGI, 1989 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Circle Drive Compound Prop, Santa Fe Cnty, May 1991 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Hansen Property, Santa Fe County, NM, June 1990 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Insight Investments Property, Santa Fe Cnty, NM, 2/20/90 -2025-09-30 11:33:14,913 [INFO ] GGI, Geohydrology of the Lane Property, Santa Fe Cnty, NM, 4/29/92 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the McElvain/Patania Property, 6/92 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the McMahon Property, Santa Fe Cnty, Oct 1990; GGI, Geohydrology of the Santa Fe Arroyo Hondo Vistas Subdivision, SFe County, Aug. 1989 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Migel Property, Santa Fe Cnty, 2/90; GGI, Geohydro of McMahon Prop 10/90 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Mountain Vista Subdivision, Santa Fe County, July 10, 2002 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Myers Property, Santa Fe Cnty, July 1992 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Naiche Property, Santa Fe County, NM, Dec 1992 -2025-09-30 11:33:14,914 [INFO ] GGI, Geohydrology of the Prince Property, 8/91; McElvain-Patania Prop, 6/92 -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Santa Fe Animal Shelter Site, Santa Fe County, NM, May 15, 2002 -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Santa Fe Opera Tr, Santa Fe Cnty, 3/95; GGI, San Ysidro de Tesuque, 5/90 -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Shulman Property, Santa Fe Cnty, April 1990 -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Vrtiak Property, Santa Fe Cnty, June, 1991 -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the West Alameda Proj, Santa Fe Cnty, NM, Jan 1989 -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Woods Property, Santa Fe Cnty, March 19, 1992 -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct 14, 1994; GGI, Bryant Prop; WATERS -2025-09-30 11:33:14,915 [INFO ] GGI, Geohydrology of the Yamada Property, Santa Fe Cnty, Oct, 1994; GGI, Sangre de Cr Est, Jan 1989 -2025-09-30 11:33:14,916 [INFO ] GGI, Geohydrology Rept for Rancho San Lucas, Santa Fe Cnty, NM, Feb 2002; Geophysical logs -2025-09-30 11:33:14,916 [INFO ] GGI, January 2005 Alexsis Geohydrology report (by Meghan Hodgins). -2025-09-30 11:33:14,916 [INFO ] GGI, Reconnaissance Geohydrology Report, Leibman Property, Santa Fe County, NM. March 23, 1994 -2025-09-30 11:33:14,916 [INFO ] GGI, Reconnaissance Geohydrology Report, Neufeld Property, Santa Fe Cnty, Nov 1988 -2025-09-30 11:33:14,916 [INFO ] Glorieta Geoscience Inc. -2025-09-30 11:33:14,916 [INFO ] Glorieta Geoscience, Inc., 2006, Geohydrology and Water Availability for Phase 1, Santa Fe Canyon Ranch Subdivision, Santa Fe County, NM, March 22, 2006. -2025-09-30 11:33:14,916 [INFO ] GW-1: Geology & Ground-Water Resources of the Eastern Part of Colfax Cty, NM (1948) Griggs, Roy L., NMBGMR -2025-09-30 11:33:14,916 [INFO ] GW3: Geology and Ground-Water Resources of Eddy County, NM (1952) G.E. Hendrickson & R.S. Jones, NM Bureau of Geology -2025-09-30 11:33:14,917 [INFO ] GW-4: Geology & Groundwater Res. of NE Socorro Cty, NM (1955) Spiegel, Zane, NM Bureau of Geology -2025-09-30 11:33:14,917 [INFO ] GW5: Geology and Ground-Water Resources of Torrance County, NM (1957) R.E. Smith, NM Bureau of Geology -2025-09-30 11:33:14,917 [INFO ] GW9: Groundwater Resources & Geology of Quay County, NM (1966) Charles Berkstresser, Jr. & Walter A. Mourant, NM Bureau of Geology -2025-09-30 11:33:14,917 [INFO ] GWSI -2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; field check by Johnson -2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; field check by Johnson; D.Koning log review -2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; OFR 89-37; field check by Johnson; D.Koning log review -2025-09-30 11:33:14,917 [INFO ] GWSI/USGS well sheet; WATERS -2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; WATERS; Cooper, 1995; field check by Johnson -2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; WATERS; field check by Johnson -2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson -2025-09-30 11:33:14,918 [INFO ] GWSI/USGS well sheet; well record; field check by Johnson. -2025-09-30 11:33:14,918 [INFO ] GWSI; D.Koning log review -2025-09-30 11:33:14,918 [INFO ] GWSI; D.Koning log review; D.Koning log review -2025-09-30 11:33:14,918 [INFO ] GWSI; field check by Johnson -2025-09-30 11:33:14,919 [INFO ] GWSI; field check by Johnson; D.Koning log review -2025-09-30 11:33:14,919 [INFO ] GWSI; field check Johnson -2025-09-30 11:33:14,919 [INFO ] GWSI; Mourant; well record; field check by Johnson -2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log books; field check by Johnson -2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log sheets; field check by Johnson; field check by Lyman and SFC Utilities -2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log sheets; well log; field check by Johnson -2025-09-30 11:33:14,919 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson -2025-09-30 11:33:14,920 [INFO ] GWSI; USGS log sheets; well record; field check by Johnson; field check by Lyman and SFC Utilities -2025-09-30 11:33:14,920 [INFO ] GWSI; USGS logbooks; field check by Johnson -2025-09-30 11:33:14,920 [INFO ] GWSI; USGS logbooks; Frost, 1996, Santa Fe County GWLs, 1995-96 Results, 1/96; K.Summers notes from 11/16/70 aquifer test; Frost, 1999, written comm. -2025-09-30 11:33:14,920 [INFO ] GWSI; USGS well sheet; field check by Johnson -2025-09-30 11:33:14,920 [INFO ] GWSI; USGS well sheet; well log; Johnson, 2003; VeneKlasen, 2/86, Geohydro Rept Arroyo Hondo West -2025-09-30 11:33:14,920 [INFO ] GWSI; USGS well sheets; field check by Johnson -2025-09-30 11:33:14,920 [INFO ] GWSI; water right declaration; field check by Johnson -2025-09-30 11:33:14,920 [INFO ] GWSI; water right declaration; field check Johnson; Aqua Drilling well log. WQ from Longmire -2025-09-30 11:33:14,921 [INFO ] GWSI; WATERS -2025-09-30 11:33:14,921 [INFO ] GWSI; well log; field check by Johnson -2025-09-30 11:33:14,921 [INFO ] GWSI; well record; field check by Johnson -2025-09-30 11:33:14,921 [INFO ] Hall, J., 2010, Blackstone Ranch Well RG-82913 48-hr Pumping Test, Taos, NM, GGI. -2025-09-30 11:33:14,921 [INFO ] Heaton (Sinagua Consultants), Well Hydro Report Capitol Ford Body Shop, Jan 1999 -2025-09-30 11:33:14,921 [INFO ] Hiss, W.L. (1973) Capitan Aquifer Observation-Well Network Carlsbad to Jal, NM, OSE Technical Report #38. -2025-09-30 11:33:14,921 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601 -2025-09-30 11:33:14,921 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8 -2025-09-30 11:33:14,922 [INFO ] Hood, J.W. and Kister, L.R. (1962) Saline-Water Resources of NM. USGS Water-Supply Paper 1601; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:33:14,922 [INFO ] HR-1: Geology & Ground-Water Resources of Central & Western Dona Ana County, NM (1971) King, W.E., Hawley, J.W., Taylor, A.M. and Wilson, R.P. New Mexico Bureau of Geology -2025-09-30 11:33:14,922 [INFO ] HR5: Groundwater in the Sandia and Northern Manzano Mtns, NM (1980) Frank B. Titus, NM Bureau of Geology -2025-09-30 11:33:14,922 [INFO ] Huff, G.F. (1996) Analysis of Ground-water data for selected wells near Holloman AFB, NM, 1950-1995. USGS WRIR-96-4116. -2025-09-30 11:33:14,922 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, 1988. -2025-09-30 11:33:14,922 [INFO ] Hydrogeology and Underflow Estimates in the Vicinity of the Proposed Guadalupe Mountain Tailings Facility, Dames & Moore, March 17, 1988. -2025-09-30 11:33:14,922 [INFO ] Hydrologic and hydrogeologic analysis for the Guadalupe Mtn. ground-water discharge plan. June 1984, Water Resources Associates, Inc. -2025-09-30 11:33:14,923 [INFO ] Hydroscience Associates, Inc., 2006, Analysis of Aquifer Test Run Using Well RG-87082, Taos County, New Mexico. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:33:14,923 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:33:14,923 [INFO ] Info. from technical memorandums on construction\development of supply & observation wells. Chemistry in Excel spreadsheet (See documents in Aquifer_mapping\BrackishWater\BW_database\BOR-Desal-Wells) -2025-09-30 11:33:14,923 [INFO ] Information as personal communication from GGI -2025-09-30 11:33:14,923 [INFO ] Inventoried previously on 4/21/2015 as part of Clovis-Portales project -2025-09-30 11:33:14,923 [INFO ] Inventoried previously on 6/2/2015 as part of Clovis-Portales project -2025-09-30 11:33:14,923 [INFO ] J. Corbin, 2007 written communication -2025-09-30 11:33:14,923 [INFO ] J. Corbin, 2007, written communication -2025-09-30 11:33:14,924 [INFO ] J.Frost, 1999; WATERS -2025-09-30 11:33:14,924 [INFO ] Jemez y Sangre (2000); NMED DWB Info Sheet; WATERS -2025-09-30 11:33:14,924 [INFO ] Jenkins, 1979, Geohydrology of the Vista Subdivn, 12/79; C.A. Coonce & Assoc., 1977, Montoya Subdivn Water Availability Study for Cipriano Martinez, 12/77 -2025-09-30 11:33:14,924 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate -2025-09-30 11:33:14,924 [INFO ] Jenkins, 1980, Geohydro Rept for Rancho Caballero; IN Jenkins 1982, Geohydro Las Cuadras de Ocate. also Jenkins, Dec 1979, Geohydrology of the Vista Subdivision -2025-09-30 11:33:14,924 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978 -2025-09-30 11:33:14,924 [INFO ] Jenkins, D.L., 1978, Supplemental Geohydrologic Data for the Proposed Los Caminitos Subdivision, Phase 1, Santa Fe, NM. Sept. 1978. OSE Well Record. -2025-09-30 11:33:14,924 [INFO ] Jenkins, David,- Geohydrologic Investigation of the Turquoise Trail Subdivision, SF Cnty, July 1977 -2025-09-30 11:33:14,925 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn -2025-09-30 11:33:14,925 [INFO ] Jenkins, July 1977, Geohydrologic Investigation of Turquoise Trail Subdvn; Corbin Consulting, Inc., Mar 8, 2005, Geohydrology Report Longanecker Property -2025-09-30 11:33:14,925 [INFO ] JHA, May 2004, Well Report Buckman Wells No. 10-13, City of Santa Fe -2025-09-30 11:33:14,925 [INFO ] John Shomaker & Assoc., April 1995, Well report Sangre de Cristo Water Company Buckman Well No. 3a; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09, written comm. -2025-09-30 11:33:14,925 [INFO ] John Shomaker & Assoc, 1999, Well Report: Drilling, Construction, & Testing Hickox Well No. 2, 5/99; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning review -2025-09-30 11:33:14,925 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR -2025-09-30 11:33:14,925 [INFO ] Johnson, P., et al. (2005) Hydrogeology & Water Resource Assessment of the Pueblo of Picuris, Taos County, NM. NMBGMR. -2025-09-30 11:33:14,926 [INFO ] JSA completion log to NMED SW Bureau; written communications from NMED SolidWaste Bureau -2025-09-30 11:33:14,926 [INFO ] JSAI Well report for Proposed Desalination Well Field, City of Alamogordo, NM. June 2006. -2025-09-30 11:33:14,926 [INFO ] Kendall Taylor -2025-09-30 11:33:14,926 [INFO ] Kendall Taylor and drill log -2025-09-30 11:33:14,926 [INFO ] Kendall Taylor; OSE well log -2025-09-30 11:33:14,926 [INFO ] L. Sherson @ USGS determined that all but one water level taken by contractors for OSE at 334819108084801 were really taken from this location 334819108084601. Level on 9/25/2008 was at *4801 NM-15416 -2025-09-30 11:33:14,926 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:33:14,926 [INFO ] Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). Part of OSE network, so thought it would have been in their system already. -2025-09-30 11:33:14,927 [INFO ] Lewis database of city wells; field check by Johnson; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis -2025-09-30 11:33:14,927 [INFO ] Lewis database, 2001; Faith Engineering, Inc., 1994, Pump Test Report for the Alto St Well, 12/5/94; Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98 -2025-09-30 11:33:14,927 [INFO ] Lithlog personal communication w/GGI. -2025-09-30 11:33:14,927 [INFO ] local individuals: Layne Preslar, Bob Hubbard -2025-09-30 11:33:14,927 [INFO ] Longmire, Patrick, July 1985, Hydrogeochemical Study Along the Santa Fe River; field check -2025-09-30 11:33:14,927 [INFO ] Longmire, Patrick, July 1985. A Hydrogeochemical Study Along the Valley of the Santa Fe River -2025-09-30 11:33:14,927 [INFO ] Lou Wilkerson -2025-09-30 11:33:14,928 [INFO ] Lowry, T.S., et al. (2018) Water Resource Assessment in the NM Permian Basin, Sandia Report SAND2018-12018 -2025-09-30 11:33:14,928 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. -2025-09-30 11:33:14,928 [INFO ] M.J. Darr consulting letter to Roy Cunnyngham, 2006. References additional well tests by M.J. Darr. -2025-09-30 11:33:14,928 [INFO ] Mark Defibaugh -2025-09-30 11:33:14,928 [INFO ] Martinez Surveying Co., [Hydrogeologic Report for] Miller Subdivision, Jan 1984 -2025-09-30 11:33:14,928 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multi -2025-09-30 11:33:14,928 [INFO ] McCoy, Annie M. and Peery, Roger, 2008, Water-Availability Assessment for Miranda Canyon Preserve Subdivision, Taos County, NM, John Shomaker & Associates. Full report in file called "Reports w/multip -2025-09-30 11:33:14,928 [INFO ] McLean, J.S. (1970) Saline Ground-Water Resources of the Tularosa Basin, NM. Office of Saline Water, R&D Progress Rpt 561 -2025-09-30 11:33:14,929 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:33:14,929 [INFO ] Meyers et al, 1994, USGS WRI 94-4125 (1980 water level) -2025-09-30 11:33:14,929 [INFO ] MJ Darr (July 2006) Pump Test of WL-0007. -2025-09-30 11:33:14,929 [INFO ] Mourant; GWSI; field check by Johnson; USGS well schedules -2025-09-30 11:33:14,929 [INFO ] Mourant; GWSI; field check by Johnson; well log. -2025-09-30 11:33:14,929 [INFO ] MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources -2025-09-30 11:33:14,929 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:33:14,930 [INFO ] Myers, Everheart, Wilson (1994) Geohydrol. of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron/Socorro/Sierra Cty, NM, USGS WRI 94-4125 -2025-09-30 11:33:14,930 [INFO ] NA03200901BBB -2025-09-30 11:33:14,930 [INFO ] NA03200912ACC -2025-09-30 11:33:14,930 [INFO ] NA03201066BBB -2025-09-30 11:33:14,930 [INFO ] NA03300814CCC -2025-09-30 11:33:14,930 [INFO ] NA03300914CCC -2025-09-30 11:33:14,930 [INFO ] NA03300921CCC -2025-09-30 11:33:14,931 [INFO ] NA03300922ACC -2025-09-30 11:33:14,931 [INFO ] NA03300933CAB -2025-09-30 11:33:14,931 [INFO ] NA03300933CAB2 -2025-09-30 11:33:14,931 [INFO ] NA03300935DBB -2025-09-30 11:33:14,931 [INFO ] NA03300936DBB -2025-09-30 11:33:14,931 [INFO ] NA03301014DDD -2025-09-30 11:33:14,931 [INFO ] NA03301019CCD -2025-09-30 11:33:14,931 [INFO ] NA03301020CCB -2025-09-30 11:33:14,932 [INFO ] NMBG -2025-09-30 11:33:14,932 [INFO ] NMBGMR -2025-09-30 11:33:14,932 [INFO ] NMBGMR & USGS -2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000). Shomaker, J.W., 1998, Sustainable Ground-Water Production from City Well Field, Santa Fe, NM, 4/98; Camp Dresser & McKee, Jan. 2000, -2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); OSE 2005 WL field sheets; WATERS -2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:33:14,932 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS. OSE Well Record. -2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; J. Corbin, written communication, 2007 -2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project files; JSAI, 2001,App. #6 -2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; JSAI (2001) App. #6 -2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K.Summers project files; Minton log and pump test; JS&A, 2001 well log and water levels -2025-09-30 11:33:14,933 [INFO ] NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; Summer's project files; Minton log; Frost, 1996, Review of El Dorado area water production and GW resource, June '96; JSAI, 2001, App. #6 -2025-09-30 11:33:14,933 [INFO ] NMED Solid Waste Bureau monitoring reports. -2025-09-30 11:33:14,933 [INFO ] NMED Spring Survey and Monitor Well Survey -2025-09-30 11:33:14,934 [INFO ] NMED SW Bureau data report, URS Corp.; written communications from NMED SolidWaste Bureau -2025-09-30 11:33:14,934 [INFO ] NMED SWP Atlas online -2025-09-30 11:33:14,934 [INFO ] NMOSE POD only -2025-09-30 11:33:14,934 [INFO ] NMOSE Well log -2025-09-30 11:33:14,934 [INFO ] No well inventory form for this site. Just coordinates, photo and well log. -2025-09-30 11:33:14,934 [INFO ] NRCS Well development document (Excel spreadsheet) -2025-09-30 11:33:14,934 [INFO ] OCD AP-100 report by Conestoga-Rovers & Associates -2025-09-30 11:33:14,934 [INFO ] OCD AP-101 Report by Arcadis U.S. Inc. -2025-09-30 11:33:14,935 [INFO ] OCD AP-104 Report by Conestoga-Rovers and Associates -2025-09-30 11:33:14,935 [INFO ] OCD AP-105 Report by GHD -2025-09-30 11:33:14,935 [INFO ] OCD AP-107 Report by Arcadis U.S. Inc -2025-09-30 11:33:14,935 [INFO ] OCD AP-112 Report by Larson & Associates, Inc. -2025-09-30 11:33:14,935 [INFO ] OCD AP-114 Report by Tasman Geosciences -2025-09-30 11:33:14,935 [INFO ] OCD AP-115 Report by Conestoga-Rovers and Associates -2025-09-30 11:33:14,935 [INFO ] OCD AP-118 Report by GHD -2025-09-30 11:33:14,936 [INFO ] OCD AP-120 Report by GHD Services Inc. -2025-09-30 11:33:14,936 [INFO ] OCD AP-56 Report by GHD -2025-09-30 11:33:14,936 [INFO ] OCD AP-62 Report by R.T. Hicks Consultants, Ltd -2025-09-30 11:33:14,936 [INFO ] OCD AP-71 Report by Rice Operating Company -2025-09-30 11:33:14,936 [INFO ] OCD AP-73 Report by Enviro Clean Cardinal LLC -2025-09-30 11:33:14,936 [INFO ] OCD AP-75 Report by Rice Environmental Consulting & Safety, LLC -2025-09-30 11:33:14,936 [INFO ] OCD AP-87 Report by by Tetra Tech -2025-09-30 11:33:14,937 [INFO ] OCD AP-88 Report by Tetra Tech -2025-09-30 11:33:14,937 [INFO ] OCD AP-91 Report by Talon/LPE -2025-09-30 11:33:14,937 [INFO ] OCD AP-94 Report by Tetra Tech -2025-09-30 11:33:14,937 [INFO ] OCD AP-95 report by Tetra Tech -2025-09-30 11:33:14,937 [INFO ] OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:33:14,937 [INFO ] OFR-51: Hydrogeology of the San Agustin Plains, NM (1973) Blodgett, Daniel D. and Titus, Frank B., NMBGMR -2025-09-30 11:33:14,937 [INFO ] Onwer -2025-09-30 11:33:14,938 [INFO ] Original data and chemistry from Lynn Brandvold with NMBGMR chemistry lab. We visited site in July 2015 took GPS location and found well record. -2025-09-30 11:33:14,938 [INFO ] OSE -2025-09-30 11:33:14,938 [INFO ] OSE and Foreman. -2025-09-30 11:33:14,938 [INFO ] OSE database. Lauren Sherson established USGS Site ID for the NGWMN project (5/29/18 - KP). -2025-09-30 11:33:14,938 [INFO ] OSE field notes -2025-09-30 11:33:14,938 [INFO ] OSE field sheet -2025-09-30 11:33:14,938 [INFO ] OSE macth doubtful, usgs depth is much different, 311 vs 375 -2025-09-30 11:33:14,939 [INFO ] OSE POD record -2025-09-30 11:33:14,939 [INFO ] OSE POD record. -2025-09-30 11:33:14,939 [INFO ] OSE Record and owner recollection -2025-09-30 11:33:14,939 [INFO ] OSE records -2025-09-30 11:33:14,939 [INFO ] OSE records and owner recollection. -2025-09-30 11:33:14,939 [INFO ] OSE records and well owner records. -2025-09-30 11:33:14,939 [INFO ] OSE records online. -2025-09-30 11:33:14,940 [INFO ] OSE Records, some info from well owner -2025-09-30 11:33:14,940 [INFO ] OSE Records, well owner provided info. -2025-09-30 11:33:14,940 [INFO ] OSE Records, well owner recollection. -2025-09-30 11:33:14,940 [INFO ] OSE Records. -2025-09-30 11:33:14,940 [INFO ] OSE Records. Gary Goss at TWSD. -2025-09-30 11:33:14,940 [INFO ] OSE records. PN031 may not be it. Well is very old. -2025-09-30 11:33:14,940 [INFO ] OSE WATERS site -2025-09-30 11:33:14,941 [INFO ] OSE website -2025-09-30 11:33:14,941 [INFO ] OSE website info, no well record. Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:33:14,941 [INFO ] OSE website, no well record. -2025-09-30 11:33:14,941 [INFO ] OSE website, no well record. Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:33:14,941 [INFO ] OSE website, well record available at OSE office. -2025-09-30 11:33:14,941 [INFO ] OSE website, well record maybe available at OSE office. -2025-09-30 11:33:14,941 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C. Borchert, written communication, 3/23/09 -2025-09-30 11:33:14,942 [INFO ] OSE Well Log and PNM Public Water System Information Sheet; NMED DWB (1999) via Jemez y Sangre Database (2000); Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; C.Borchert, 3/23/09 -2025-09-30 11:33:14,942 [INFO ] OSE well log. Some data from USGS. Overlapping site data. -2025-09-30 11:33:14,942 [INFO ] OSE Well record -2025-09-30 11:33:14,942 [INFO ] OSE well record and owner -2025-09-30 11:33:14,942 [INFO ] OSE well record and owner info -2025-09-30 11:33:14,942 [INFO ] OSE well record and site visit -2025-09-30 11:33:14,942 [INFO ] OSE Well Record and well owner -2025-09-30 11:33:14,942 [INFO ] OSE well record. -2025-09-30 11:33:14,943 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:33:14,943 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS; K. Summers project file and Sandia Drilling well log -2025-09-30 11:33:14,943 [INFO ] OSE Well Record. NMED DWB (1999) via Jemez y Sangre Database (2000); WATERS -2025-09-30 11:33:14,943 [INFO ] Owner -2025-09-30 11:33:14,943 [INFO ] Owner - well dirlled in 60s. -2025-09-30 11:33:14,943 [INFO ] owner - well drilled by father, using septic auger. -2025-09-30 11:33:14,943 [INFO ] Owner - well drilled in 50's. owner has some records. -2025-09-30 11:33:14,944 [INFO ] Owner and OSE record -2025-09-30 11:33:14,944 [INFO ] Owner and OSE site. -2025-09-30 11:33:14,944 [INFO ] Owner and OSE well record. -2025-09-30 11:33:14,944 [INFO ] Owner and well record. -2025-09-30 11:33:14,944 [INFO ] Owner field check; WATERS -2025-09-30 11:33:14,944 [INFO ] Owner recollection -2025-09-30 11:33:14,944 [INFO ] Owner recollection and limited OSE records. -2025-09-30 11:33:14,944 [INFO ] Owner recollection and OSE POD record. -2025-09-30 11:33:14,945 [INFO ] Owner recollection of well depth and water level -2025-09-30 11:33:14,945 [INFO ] Owner recollection. -2025-09-30 11:33:14,945 [INFO ] Owner recollection; OSE Records -2025-09-30 11:33:14,945 [INFO ] Owner. -2025-09-30 11:33:14,945 [INFO ] Owner. OSE well records -2025-09-30 11:33:14,945 [INFO ] P. Drakos, et al., 2004, Chemical & Isotopic Constraints on Source-Waters and Connectivity of Basin-Fill Aquifers in the Southern San Luis Basin, NM. NMGS Guidebook 55, pg 405. -2025-09-30 11:33:14,945 [INFO ] PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM -2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID # S264) -2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S037) -2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S040) -2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S101) -2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S146) -2025-09-30 11:33:14,946 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S164) -2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S220) -2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 (ID #S265) -2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. -2025-09-30 11:33:14,947 [INFO ] Plummer, LN, Bexfield, LM, et al., 2004 Geochem. Characterization of Grd-water Flow in the Santa Fe Grp Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131. -2025-09-30 11:33:14,947 [INFO ] Pre-design groundwater investigation at the tailing facility - Final work plan. April 24, 2013, Arcadis -2025-09-30 11:33:14,947 [INFO ] Pretty certain C011 is Burns EPA sample. -2025-09-30 11:33:14,947 [INFO ] Prindle-Hinds well completion log to NMED SW Bureau -2025-09-30 11:33:14,947 [INFO ] Pump test performed as noted in Meyers report. USGS WRI 94-4125 -2025-09-30 11:33:14,948 [INFO ] Ranch foreman. -2025-09-30 11:33:14,948 [INFO ] Rankin, Dale, 2005, Personal Communication USGS Well Drilling Reports -2025-09-30 11:33:14,948 [INFO ] Reardon et al. (2021) Addendum to Water Res. Assessment NM Permian Basin SAND2021-1869 -2025-09-30 11:33:14,948 [INFO ] Reardon, et al. (2021) Addendum to Water Res. Assessment in NM Permian Basin. SAND2021-1869. -2025-09-30 11:33:14,948 [INFO ] RGDSSP12 -2025-09-30 11:33:14,948 [INFO ] Romero -2025-09-30 11:33:14,948 [INFO ] San Pedro Creek Estates HOA -2025-09-30 11:33:14,949 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files -2025-09-30 11:33:14,949 [INFO ] Sandia Drilling well log from JSA, 2001, App. 6; Frost & Assoc., 1996, Review of El Dorado Area Water Production and GW Resource, June 1996; WKSummers files; DKoning cutting review -2025-09-30 11:33:14,949 [INFO ] Sandia National Labs/ BLM Wells -2025-09-30 11:33:14,949 [INFO ] Sandia Natl. Labs Report SAND2018-12018 Water Assessment in the NM Permian Basin -2025-09-30 11:33:14,949 [INFO ] Sangre de Cristo/OSE, WATERS, Borchert report, Watson and Rappuhn/Shomaker & Assoc., 4/99, WellReport: Drilling, Construction and Testing, City of Santa Fe Northwest Area Test Well; D.Koning review -2025-09-30 11:33:14,949 [INFO ] Santa Fe County records; well log; field check -2025-09-30 11:33:14,949 [INFO ] Santa Fe County Utilities field notes; -2025-09-30 11:33:14,950 [INFO ] SECOR report to NMED UST Bureau -2025-09-30 11:33:14,950 [INFO ] Shoemaker & Fleming, MWB Survey, 1990; Mourant, 1980 -2025-09-30 11:33:14,950 [INFO ] Shomaker & Associates, 2004, Well Report Buckman Wells No. 10-13 City of Santa Fe, New Mexico, May 2004; C. Borchert, written communication, 3/23/09 -2025-09-30 11:33:14,950 [INFO ] Shomaker & Associates, April 2003, Well Report: Drilling, Construction, and Testing of SF Buckman 9; C. Borchert, written communication, 3/23/09 -2025-09-30 11:33:14,950 [INFO ] Site check; well record -2025-09-30 11:33:14,950 [INFO ] Site visit by Johnson during drilling; drillers report; J. Corbin, written communication, 2007 -2025-09-30 11:33:14,950 [INFO ] Slinglerland & Borton, Geohydro of Avanti Business Park, 8/85 (App F to GGI, Santa Fe Metro, 12/01); lithologic log by GGI, review by D.Koning -2025-09-30 11:33:14,950 [INFO ] SNL report for manual water level and water quality -2025-09-30 11:33:14,951 [INFO ] Some chemistry from EPA via NM Health Dept. -2025-09-30 11:33:14,951 [INFO ] Some data from USGS. Overlapping site data. -2025-09-30 11:33:14,951 [INFO ] Some data from USGS. Overlapping site data. Aquifer type from USGS. -2025-09-30 11:33:14,951 [INFO ] Some data from USGS. Overlapping site data. Formation pick from USGS. -2025-09-30 11:33:14,951 [INFO ] Some limited WQ measurements at well and nearby stream. Filed. Not entered. -2025-09-30 11:33:14,951 [INFO ] Some water levels from USGS -2025-09-30 11:33:14,952 [INFO ] Some WL's from Lee Foster Well Services -2025-09-30 11:33:14,952 [INFO ] Some WLs from USGS & Dames and Moore (4/11/1986). Some WQ from Vail Engineering (Sept. 1993). -2025-09-30 11:33:14,952 [INFO ] Souder-Miller & Assoc., 1995, Unpublished Consultant's Report, Fig 2, well completion diagram -2025-09-30 11:33:14,952 [INFO ] Source data for some chemistry for this location is from the US EPA. -2025-09-30 11:33:14,952 [INFO ] Source data for this location is from the US EPA & NMED water quality. -2025-09-30 11:33:14,952 [INFO ] Source data for this location is from the US EPA. -2025-09-30 11:33:14,952 [INFO ] T.Decker, written comm., 2000 (letter to B.McLean "Testing - EUI Well #15", 2/25/2000); -2025-09-30 11:33:14,952 [INFO ] Taos Soil & Water Concervation District -2025-09-30 11:33:14,953 [INFO ] Taos Soil & Water Conservation District -2025-09-30 11:33:14,953 [INFO ] Taos Soil & Water Conservation District water sample study. -2025-09-30 11:33:14,953 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM -2025-09-30 11:33:14,953 [INFO ] Tetra Tech EM, Inc., Aug 2004, Geohydrologic Report for Proposed Suerte del Sur Subdivision, Santa Fe County, NM; field check by Johnson -2025-09-30 11:33:14,953 [INFO ] Theis, C.V., Taylor, Jr., G.C., and Murray, C.R. (1941) Thermal Waters of the Hot Springs Artesian Basin Sierra County, New Mexico. U.S. Geological Survey in cooperation with State Engineer of New Mex -2025-09-30 11:33:14,953 [INFO ] TSWCD -2025-09-30 11:33:14,953 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Apdx. 2 & 3. (Data from Drakos, GGI, 1996) Report filed w/TV-229. Al -2025-09-30 11:33:14,954 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, Appendices 1, 3, 4 -2025-09-30 11:33:14,954 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivision, Taos County, New Mexico, Turner Environmental Consultants, pg. 7, Table 1. -2025-09-30 11:33:14,954 [INFO ] Turner, B., 1996, The Water Availability for the El Mirador Subdivison, Taos County, New Mexico, Turner Environmental Consultants, Pg. 18, Table 1, and Appendices 2,3. (Data from Jenkins in 1982). Ful -2025-09-30 11:33:14,954 [INFO ] undeclared well. -2025-09-30 11:33:14,954 [INFO ] URS Corp. for Chevron -2025-09-30 11:33:14,954 [INFO ] USFS - Espanola Ranger District - Range Improvement records. -2025-09-30 11:33:14,954 [INFO ] USGS & Garrabrant, L.A. (1993) Water Resources of Taos County, NM USGS WRIR 93-4107 (chemistry sample). This well matched to Garrabrant well via notes from Tony Benson's Sunshine notebooks. -2025-09-30 11:33:14,955 [INFO ] USGS & Myers, Everheart, Wilson (1994) Geohydrol. Of San Agustin Basin, Alamosa Creek Basin upstream from Monticello Box & Upper Gila Basin in parts of Catron, Socorro & Sierra Cty, NM, WRI 94-4125 -2025-09-30 11:33:14,955 [INFO ] USGS & NMED SWP Atlas online -2025-09-30 11:33:14,955 [INFO ] USGS & Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:33:14,955 [INFO ] USGS & Texas Water Development Board -2025-09-30 11:33:14,955 [INFO ] USGS & Winograd, I.J. (1959) Ground-water Conditions & Geology of Sunshine Valley & Western Taos Cty, NM, NMSEO, Tech. Report #12. & Garrabrant, L.A. (1993) USGS WRIR 93-4107 -2025-09-30 11:33:14,955 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:33:14,955 [INFO ] USGS & Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:33:14,956 [INFO ] USGS and Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:33:14,956 [INFO ] USGS Chem Analysis Sheet from R.L. Borton Files. 1970; WATERS; C.Borchert, 3/23/09, written communication -2025-09-30 11:33:14,956 [INFO ] USGS Drillers reports -2025-09-30 11:33:14,956 [INFO ] USGS drillers reports; D.Koning cuttings review -2025-09-30 11:33:14,956 [INFO ] USGS drilling reports; D.Koning cutting review -2025-09-30 11:33:14,956 [INFO ] USGS Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:33:14,956 [INFO ] USGS, chemistry from Lynn Brandvold with NMBGMR chemistry lab, OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:33:14,957 [INFO ] USGS. POD log not available. -2025-09-30 11:33:14,957 [INFO ] USGS. Well screens/WQ from Plummer, LN, Bexfield, LM, et al. (2004) Geochem. Characterization of Ground-water Flow in the Santa Fe Group Aquifer System, Middle Rio Grande Basin, NM. USGS WRI-03-4131 -2025-09-30 11:33:14,957 [INFO ] USGS/OSE water-level data sheets; WATERS -2025-09-30 11:33:14,957 [INFO ] USGS; Bjorklund, L.J. (1957) Recon. of Groundwater Conditions in Crow Flats Area Otero Cty, NM, OSE Tech Rep 8. -2025-09-30 11:33:14,957 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, New Mexico, NM OSE Technical Report 8. -2025-09-30 11:33:14,957 [INFO ] USGS; Bjorklund, L.J. (1957) Reconnaissance of Ground-water Conditions in the Crow Flats Area Otero County, NM, OSE Technical Report 8. -2025-09-30 11:33:14,957 [INFO ] USGS; Screens from NPS water level and well documentation -2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc, 1984, Remuda Ridge Warehouse, Santa Fe County, NM, October 1984 -2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc, Inc., 1982, Geohydrology Rept, Pecos Trail Subdn, Santa Fe Cnty, Aug 1982 -2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc., 1984, Geohydrology Report, Hondo Trails Subdn, Santa Fe Cnty, Dec 1984 -2025-09-30 11:33:14,958 [INFO ] VeneKlasen & Assoc., Inc., 1986, Geohydrology Report, Talbot Subdivision, May 1986 -2025-09-30 11:33:14,958 [INFO ] VeneKlasen, 1975, Hydrogeologic Report for La Tierra Subdivision, 6/75 -2025-09-30 11:33:14,958 [INFO ] Veneklasen, 1977, Geohydro Lanphere -- Rio Villa Subdivision, AguaFria Rd, 5/77 -2025-09-30 11:33:14,958 [INFO ] Veneklasen, 1977, Hydrogeologic Report La Tierra Subdivn, Phase III, May 1977, Consulting Prof Inc -2025-09-30 11:33:14,958 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977 -2025-09-30 11:33:14,959 [INFO ] VeneKlasen, 1977, Hydrogeologic Rept La Tierra Ph. III, May 1977; field check Cruz/Frost -2025-09-30 11:33:14,959 [INFO ] Veneklasen, 1980, Geohydro of Santiago Subdivision, 10/80 -2025-09-30 11:33:14,959 [INFO ] VeneKlasen, 6/75, Hydrogeo Rept La Tierra; field check by Johnson -2025-09-30 11:33:14,959 [INFO ] VeneKlasen, Hydrogeologic Report for La Tierra Subdivision 6/75; well log; field check Johnson -2025-09-30 11:33:14,959 [INFO ] Water chemistry from TSWCD. Fairly sure this is COS-11, eventhough there is a descrepency between well log depth and well depth on chemistry sheet. -2025-09-30 11:33:14,959 [INFO ] Water Quality: Sorrell, John D. and Banet, Christopher, Karavas Tract Exploratory Well, Nov. 1993, Bureau of Indian Affairs. -2025-09-30 11:33:14,959 [INFO ] WATERS; field check -2025-09-30 11:33:14,960 [INFO ] WATERS; Lewis database, 2001; VeneKlasen, 1975, Hydrogeologic Report LaTierra, 6/75; Camp Dresser & McKee, Inc., Jan 2001, Water Supply Analysis; D.Koning log review; C.Borchert, 3/23/09, written comm -2025-09-30 11:33:14,960 [INFO ] WATERS; WK Summers project files; JSAI, 2001, App. #6; J. Frost project files (1999) -2025-09-30 11:33:14,960 [INFO ] Watson/Shomaker & Assoc., 5/97, Well Report, Drilling, Construction, and Testing, City of Santa Fe, Torreon Well No. 2, for PNM Water Services Santa Fe, NM; CDM, Jan 2000, Water Supply Analysis -2025-09-30 11:33:14,960 [INFO ] Well owner. -2025-09-30 11:33:14,960 [INFO ] Well also in PhD thesis by Mayer, J.R. (1995) Role of Fractures in Regional GW Flow: Field Evidence and Model Results from the Basin/Range of TX and NM -2025-09-30 11:33:14,960 [INFO ] well depth from Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:33:14,960 [INFO ] Well in Meyers report: Meyers et al, 1994, USGS WRI 94-4125 -2025-09-30 11:33:14,960 [INFO ] Well info from inside well cap, presumably from driller? -2025-09-30 11:33:14,961 [INFO ] Well Log -2025-09-30 11:33:14,961 [INFO ] Well log and completion diagrams -2025-09-30 11:33:14,961 [INFO ] Well log and field check by Johnson; not previously in GWSI -2025-09-30 11:33:14,961 [INFO ] Well log and well completion diagrams -2025-09-30 11:33:14,961 [INFO ] Well log and well completion diagrams. WQ data from P. Longmire Santa Fe River 1985 Report -2025-09-30 11:33:14,961 [INFO ] Well log/record by GGI; field check by Johnson -2025-09-30 11:33:14,961 [INFO ] Well log; field check -2025-09-30 11:33:14,961 [INFO ] Well log; field check by Johnson -2025-09-30 11:33:14,962 [INFO ] well log; field check by Johnson; owner -2025-09-30 11:33:14,962 [INFO ] well log; Johnson field check -2025-09-30 11:33:14,962 [INFO ] Well Log; JSAI, 2001, App. #6 -2025-09-30 11:33:14,962 [INFO ] Well owner -2025-09-30 11:33:14,962 [INFO ] Well owner and old well record. -2025-09-30 11:33:14,962 [INFO ] Well owner and OSE site info. -2025-09-30 11:33:14,962 [INFO ] Well owner, and well record. -2025-09-30 11:33:14,962 [INFO ] Well owner. -2025-09-30 11:33:14,963 [INFO ] Well record. -2025-09-30 11:33:14,963 [INFO ] Well record; field check -2025-09-30 11:33:14,963 [INFO ] Well record; field check by Cruz/Frost -2025-09-30 11:33:14,963 [INFO ] well record; field check by Johnson -2025-09-30 11:33:14,963 [INFO ] Well record; field check by Johnson; owner -2025-09-30 11:33:14,963 [INFO ] Well record; field check by Lyman -2025-09-30 11:33:14,963 [INFO ] Well record; field check by Lyman; SWL measured by GGI/reported by Cooper, 2000, Rept for Roybal -2025-09-30 11:33:14,964 [INFO ] Well record; field check with SFC Utilities (Leonard Quintana 490-0065) -2025-09-30 11:33:14,964 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12 -2025-09-30 11:33:14,964 [INFO ] Winograd, I.J., 1959, Ground-water Conditions and Geology of Sunshine Valley and Western Taos County, NM, State of New Mexico, State Engineer Office, Technical Report #12. -2025-09-30 11:33:14,964 [INFO ] WK Summers project files; WATERS; Water Industries, Inc., 1982, Testing of Eldorado Well #1, Jan. 1982; water levels from W-1 and EUI#1; JSAI, 2001, App. #6 -2025-09-30 11:33:14,964 [INFO ] WL from USGS; chemistry and other data from Lynn Brandvold with NMBGMR chemistry lab & OFR-469 Hydrogeology & Water Resources of the Placitas Area -2025-09-30 11:33:14,964 [INFO ] WQ also from MS thesis by Sigstedt, S. (2010) Environmental Tracers in Groundwater of the Salt Basin, NM and Implications for Water Resources. -2025-09-30 11:33:14,964 [INFO ] WQ from Taos Soil & Water Conservation District -2025-09-30 11:33:14,965 [INFO ] Z. Spiegel, 1972, Interpretation and application of an aquifer performance test on well RG-20228 at Pojoaque Terrace trailer court site HC McDonald Property, Santa Fe County, NM, 9/14/72 -2025-09-30 11:33:32,306 [INFO ] Reached limit of 10 rows. Stopping migration. -2025-09-30 11:33:32,319 [INFO ] transfer_wells took 21.517522 seconds -2025-09-30 11:33:33,324 [INFO ] transfer_wellscreens took 1.005512 seconds -2025-09-30 11:33:33,325 [INFO ] -2025-09-30 11:33:33,325 [INFO ] ********** TRANSFERRING CONTACTS ********** -2025-09-30 11:33:38,363 [INFO ] Processing PointID: 221 EB-663 -2025-09-30 11:33:38,377 [WARNING ] first 'Thompson, Warren' Skipping physical address. Validation error: 1 validation error for CreateAddress -postal_code - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.11/v/string_type -2025-09-30 11:33:38,394 [CRITICAL] Skipping first contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} -[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] -[parameters: ('Warren Thompson', 'Los Atrevidos, Inc.', 'Owner', 'Primary', None, None, None, None, None, None, None, 'private')] -(Background on this error at: https://sqlalche.me/e/20/f405) -2025-09-30 11:33:38,403 [CRITICAL] Skipping second contact for PointID EB-663 due to validation error: (pg8000.dbapi.ProgrammingError) {'S': 'ERROR', 'V': 'ERROR', 'C': '23503', 'M': 'insert or update on table "contact" violates foreign key constraint "contact_organization_fkey"', 'D': 'Key (organization)=(Los Atrevidos, Inc.) is not present in table "lexicon_term".', 's': 'public', 't': 'contact', 'n': 'contact_organization_fkey', 'F': 'ri_triggers.c', 'L': '2599', 'R': 'ri_ReportViolation'} -[SQL: INSERT INTO contact (name, organization, role, contact_type, nma_pk_owners, nma_pk_waterlevels, search_vector, created_by_name, created_by_id, updated_by_name, updated_by_id, release_status) VALUES (%s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR, %s::VARCHAR) RETURNING contact.id, contact.created_at] -[parameters: ("Warren's son", 'Los Atrevidos, Inc.', 'Owner', 'Secondary', None, None, None, None, None, None, None, 'private')] -(Background on this error at: https://sqlalche.me/e/20/f405) -2025-09-30 11:33:38,407 [INFO ] Processing PointID: 441 EB-057 -2025-09-30 11:33:38,417 [INFO ] added first contact for PointID EB-057 -2025-09-30 11:33:38,418 [CRITICAL] Skipping second contact for PointID EB-057 due to validation error: 1 validation error for CreateContact - Value error, Either name or organization must be provided. [type=value_error, input_value={'thing_id': 8, 'release_...ails': [], 'phones': []}, input_type=dict] - For further information visit https://errors.pydantic.dev/2.11/v/value_error -2025-09-30 11:33:38,418 [INFO ] transfer_contacts took 5.092971 seconds -2025-09-30 11:33:38,418 [INFO ] -2025-09-30 11:33:38,418 [INFO ] ********** TRANSFERRING LINK IDS ********** -2025-09-30 11:33:40,318 [INFO ] Processing PointID: DE-0219, Thing ID: 1, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:33:40,323 [INFO ] Processing PointID: EB-057, Thing ID: 8, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:33:40,329 [INFO ] Processing PointID: BW-0131, Thing ID: 5, AlternateSiteID=11S9E22.441, AlternateSiteID2=None -2025-09-30 11:33:40,329 [INFO ] adding link id: BW-0131 -2025-09-30 11:33:40,340 [INFO ] Processing PointID: EB-663, Thing ID: 9, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:33:40,344 [INFO ] Processing PointID: TO-0225, Thing ID: 3, AlternateSiteID=6N8E11.42, AlternateSiteID2=None -2025-09-30 11:33:40,345 [INFO ] adding link id: TO-0225 -2025-09-30 11:33:40,353 [INFO ] Processing PointID: UC-0100, Thing ID: 6, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:33:40,358 [INFO ] Processing PointID: QY-0274, Thing ID: 4, AlternateSiteID=11.31.19.333, AlternateSiteID2=None -2025-09-30 11:33:40,359 [INFO ] adding link id: QY-0274 -2025-09-30 11:33:40,367 [INFO ] Processing PointID: PC-037, Thing ID: 10, AlternateSiteID=PW-060, AlternateSiteID2=None -2025-09-30 11:33:40,367 [INFO ] adding link id: PC-037 -2025-09-30 11:33:40,376 [INFO ] Processing PointID: NM-26878, Thing ID: 2, AlternateSiteID=None, AlternateSiteID2=None -2025-09-30 11:33:40,381 [INFO ] Processing PointID: QY-0181, Thing ID: 7, AlternateSiteID=11.30.14.143b, AlternateSiteID2=None -2025-09-30 11:33:40,381 [INFO ] adding link id: QY-0181 -2025-09-30 11:33:40,388 [INFO ] transfer_link_ids took 1.969871 seconds -2025-09-30 11:33:41,950 [WARNING ] Both OSEWellID and OSEWelltagID are null for DE-0219 -2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for NM-26878 -2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for TO-0225 -2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0274 -2025-09-30 11:33:41,951 [WARNING ] Both OSEWellID and OSEWelltagID are null for BW-0131 -2025-09-30 11:33:41,955 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for UC-0100 -2025-09-30 11:33:41,955 [WARNING ] OSEWellTagID is null for UC-0100 -2025-09-30 11:33:41,957 [WARNING ] Both OSEWellID and OSEWelltagID are null for QY-0181 -2025-09-30 11:33:41,961 [WARNING ] OSEWellTagID is null for EB-057 -2025-09-30 11:33:41,979 [WARNING ] OSEWellTagID is null for EB-663 -2025-09-30 11:33:41,987 [WARNING ] OSEPOD is "X", "?", or "exempt", id=X for PC-037 -2025-09-30 11:33:41,987 [WARNING ] OSEWellTagID is null for PC-037 -2025-09-30 11:33:41,989 [INFO ] transfer_link_ids_welldata took 1.600086 seconds -2025-09-30 11:33:41,989 [INFO ] -2025-09-30 11:33:41,989 [INFO ] ********** TRANSFERRING GROUPS ********** -2025-09-30 11:33:42,926 [INFO ] Adding 2 things to group La Cienega, prefix EB -2025-09-30 11:33:42,958 [INFO ] Adding 2 things to group Espanola Basin, prefix EB -2025-09-30 11:33:42,991 [INFO ] Adding 1 things to group Union County, prefix UC -2025-09-30 11:33:43,094 [INFO ] Adding 1 things to group New Mexico, prefix NM -2025-09-30 11:33:43,182 [INFO ] Adding 2 things to group Quay County, prefix QY -2025-09-30 11:33:43,206 [INFO ] Adding 1 things to group Brackish Water, prefix BW -2025-09-30 11:33:43,256 [INFO ] Adding 1 things to group Torrance County, prefix TO -2025-09-30 11:33:43,314 [INFO ] Adding 1 things to group Placitas, prefix PC -2025-09-30 11:33:43,411 [INFO ] Adding 1 things to group Delaware Basin, prefix DE -2025-09-30 11:33:43,427 [INFO ] Adding 1 things to group ABCWUA, prefix NM -2025-09-30 11:33:43,464 [INFO ] transfer_groups took 1.474405 seconds -2025-09-30 11:33:43,464 [INFO ] -2025-09-30 11:33:43,464 [INFO ] ********** TRANSFERRING WATER LEVELS ********** -2025-09-30 11:34:47,942 [INFO ] Valid Measuring Agencies: -2025-09-30 11:34:47,942 [INFO ] NMBGMR -2025-09-30 11:34:47,942 [INFO ] NMT -2025-09-30 11:34:47,942 [INFO ] NPS -2025-09-30 11:34:47,942 [INFO ] SNL -2025-09-30 11:34:47,943 [INFO ] TSWCD -2025-09-30 11:34:47,943 [INFO ] USFS -2025-09-30 11:34:47,946 [INFO ] Processing PointID: EB-663 -2025-09-30 11:34:47,966 [INFO ] Created field event: ID 1 | Date 2018-05-04 04:47:00+00:00 | Thing ID 9 | Thing Name EB-663. -2025-09-30 11:34:47,971 [INFO ] Created field activity: ID 1 | Type groundwater level. -2025-09-30 11:34:47,975 [INFO ] Created contact: ID 4 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR -2025-09-30 11:34:47,980 [INFO ] Created field event contact: ID 1 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR -2025-09-30 11:34:47,985 [INFO ] Created sample: ID 1 | Date 2018-05-04 04:47:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) -2025-09-30 11:34:48,011 [INFO ] Created observation: ID 1 | DT 2018-05-04 04:47:00+00:00 | Value 282.84 | MPHeight 2.79 -2025-09-30 11:34:48,014 [INFO ] Created field event: ID 2 | Date 2015-04-13 00:00:00+00:00 | Thing ID 9 | Thing Name EB-663. -2025-09-30 11:34:48,017 [INFO ] Created field activity: ID 2 | Type groundwater level. -2025-09-30 11:34:48,021 [INFO ] Created field event contact: ID 2 | Name Trevor Kludt | Role Hydrogeologist | Organization NMBGMR -2025-09-30 11:34:48,026 [INFO ] Created sample: ID 2 | Date 2015-04-13 00:00:00+00:00 | Matrix water | Method Electric tape measurement (E-probe) -2025-09-30 11:34:48,035 [INFO ] Created observation: ID 2 | DT 2015-04-13 00:00:00+00:00 | Value 285.46 | MPHeight 2.79 -2025-09-30 11:34:48,039 [INFO ] transfer_water_levels took 64.574617 seconds -2025-09-30 11:34:48,039 [INFO ] transfer_all took 103.720438 seconds -2025-09-30 11:34:49,055 [INFO ] Uploaded log to gs://ocotillo/transfer_logs/transfer_2025-09-30T11h33m04s.log -2025-09-30 11:34:49,056 [INFO ] -2025-09-30 11:34:49,056 [INFO ] ********** END-------------------------------------- ********** From ada26f6a22d5e3a6b4ff047fe76f098147f4e8d1 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 14:17:23 -0600 Subject: [PATCH 24/30] feat: enable transfer of water levels --- db/sample.py | 6 ++ transfers/waterlevels_transfer.py | 105 ++++++++++++++++++------------ 2 files changed, 69 insertions(+), 42 deletions(-) diff --git a/db/sample.py b/db/sample.py index c06a39523..fa1c9a437 100644 --- a/db/sample.py +++ b/db/sample.py @@ -84,6 +84,12 @@ class Sample(Base, AutoBaseMixin, ReleaseMixin): ) notes: Mapped[str] = mapped_column(nullable=True) + # --- Auditing Fields from NM_Aquifer --- + nma_pk_waterlevels: Mapped[str] = mapped_column( + nullable=True, + comment="NM_Aquifer primary key for waterlevels - to be used for transfer audits", + ) + # --- Relationship Definitions --- field_activity: Mapped["FieldActivity"] = relationship(back_populates="samples") field_event_contact: Mapped["FieldEventContactAssociation"] = relationship( diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 4df0de3ee..8e352bdbe 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -39,6 +39,8 @@ # keep a dictionary of created Contacts to avoid repeated SQL queries CREATED_CONTACTS = {} +SPACE_2 = " " * 2 +SPACE_4 = " " * 4 def transfer_water_levels(session): @@ -67,11 +69,9 @@ def transfer_water_levels(session): ) session.commit() - if pd.isna(row.DepthToWater) or pd.isna(row.DateMeasured): + if pd.isna(row.DateMeasured): logger.critical( - f"transfer_water_levels. Skipping row PointID={row.PointID}, objectid={row.OBJECTID} due to " - f"missing " - f"data." + f"transfer_water_levels. Skipping row PointID={row.PointID}, objectid={row.OBJECTID} because there is no DateMeasured" ) continue @@ -118,7 +118,7 @@ def transfer_water_levels(session): session.flush() logger.info( - f" Created field event: ID {field_event.id} | Date {field_event.event_date} | Thing ID {field_event.thing.id} | Thing Name {field_event.thing.name}." + f"{SPACE_2}Created field event: ID {field_event.id} | Date {field_event.event_date} | Thing ID {field_event.thing.id} | Thing Name {field_event.thing.name}" ) # --- FieldActivity --- @@ -132,9 +132,8 @@ def transfer_water_levels(session): session.flush() logger.info( - f" Created field activity: ID {field_activity.id} | Type {field_activity.activity_type}." + f"{SPACE_4}Created field activity: ID {field_activity.id} | Type {field_activity.activity_type}" ) - # --- Contact/FieldEventContactAssociation --- # AMP feedback: # - is Duke Engring the same as Duke University? Is it from their engineering school? @@ -172,7 +171,11 @@ def transfer_water_levels(session): # rs --> roles # TODO: get help figuring out (AMP) - if measured_by in [ + if measured_by is None: + ns = [None] + os = ["Unknown"] + rs = ["Unknown"] + elif measured_by in [ "Anthony Chavez", "BEI", "BF/RG", @@ -254,11 +257,11 @@ def transfer_water_levels(session): os = ["Unknown"] rs = ["Unknown"] logger.warning( - f"The following record has not been mapped to a Contact: {row.MeasuredBy} // {row.MeasuringAgency} for PointID {row.PointID} (which comes from the WaterLevels table)" + f"{SPACE_4}The following record has not been mapped to a Contact: {row.MeasuredBy} // {row.MeasuringAgency} for PointID {row.PointID} (which comes from the WaterLevels table)" ) # --- Companies/Organizations/Misc --- - if measured_by == "A&T Pump & Well Serv": + elif measured_by == "A&T Pump & Well Serv": ns = [None] os = ["A&T Pump & Well Service, LLC"] rs = ["Organization"] @@ -561,7 +564,7 @@ def transfer_water_levels(session): ns = ["Bob Borton"] os = ["NMBGMR"] rs = ["Geologist"] - elif measured_by == "CE": + elif measured_by in ["CE", "ce"]: ns = ["Cathy Eisen"] os = ["NMBGMR"] rs = ["Hydrogeologist"] @@ -773,6 +776,10 @@ def transfer_water_levels(session): ns = ["Laila Sturgis", "Trevor Kludt"] os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] + elif measured_by == "Lyman": + ns = ["John Lyman"] + os = ["Unknown"] + rs = ["Unknown"] elif measured_by == "M. Hein": ns = ["Marina Hein"] os = ["NMT"] @@ -937,13 +944,13 @@ def transfer_water_levels(session): ns = ["Stacy Timmons", "Talon Newton"] os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["ST/GCR", "ST/GR"]: - ns = ["Stacy Timmons", "Geoff Rawling", "Wagner/Rawling"] + elif measured_by in ["ST/GCR", "ST/GR", "Wagner/Rawling"]: + ns = ["Stacy Timmons", "Geoff Rawling"] os = ["NMBGMR", "NMBGMR"] rs = ["Hydrogeologist", "Hydrogeologist"] elif measured_by == "ST/JW": ns = ["Stacy Timmons", "Jim Witcher"] - os = ["NMBGMR", "With & Associates"] + os = ["NMBGMR", "Witcher & Associates"] rs = ["Hydrogeologist", "Geologist"] elif measured_by == "ST/LL": ns = ["Stacy Timmons", "Lewis Land"] @@ -1024,6 +1031,7 @@ def transfer_water_levels(session): Use existing contact for the thing if measured by is the owner """ + field_event_contacts = [] if measured_by not in ["Owner", "Owner report", "Well owner"]: contact_names.extend(ns) contact_organizations.extend(os) @@ -1046,39 +1054,49 @@ def transfer_water_levels(session): session.flush() # to get the contact.id logger.info( - f" Created contact: ID {contact.id} | Name {contact.name} | Role {contact.role} | Organization {contact.organization}" + f"{SPACE_4}Created contact: ID {contact.id} | Name {contact.name} | Role {contact.role} | Organization {contact.organization} | nma_pk_waterlevels {contact.nma_pk_waterlevels}" ) CREATED_CONTACTS[c] = contact - - """ - Developer's notes - - Assumes that the first listed contact is the lead and the - person who took the sample. The subsequent contact will be - participants in the field event - """ - if i == 0: - field_event_contact = FieldEventContactAssociation( - field_event=field_event, - contact=contact, - field_contact_role="Lead", - ) - sampler = field_event_contact else: - field_event_contact = FieldEventContactAssociation( - field_event=field_event, - contact=contact, - field_contact_role="Participant", - ) - session.add(field_event_contact) - session.flush() - logger.info( - f" Created field event contact: ID {field_event_contact.id} | Name {contact.name} | Role {contact.role} | Organization {contact.organization}" - ) + contact = CREATED_CONTACTS[c] + field_event_contacts.append(contact) else: contact = thing.contacts[0] + field_event_contacts.append(contact) + + """ + Developer's notes + + Assumes that the first listed contact is the lead and the + person who took the sample. The subsequent contact will be + participants in the field event + """ + for i, fec in enumerate(field_event_contacts): + if i == 0: + field_event_contact = FieldEventContactAssociation( + field_event=field_event, + contact=fec, + field_contact_role="Lead", + ) + sampler = field_event_contact + else: + field_event_contact = FieldEventContactAssociation( + field_event=field_event, + contact=fec, + field_contact_role="Participant", + ) + session.add(field_event_contact) + session.flush() + logger.info( + f"{SPACE_4}Created field event contact: ID {field_event_contact.id} | Contact Name {field_event_contact.contact.name} | Field Contact Role {field_event_contact.field_contact_role}" + ) + if pd.isna(row.DepthToWater): + logger.warning( + f"{SPACE_4}No sample and observation have been made for WaterLevels record with GlobalID {row.GlobalID} because DepthToWater is NULL" + ) + continue # --- Sample --- if not pd.isna(row.MeasurementMethod): @@ -1090,6 +1108,7 @@ def transfer_water_levels(session): # todo: use create schema to validate data sample = Sample( + nma_pk_waterlevels=row.GlobalID, field_activity=field_activity, field_event_contact=sampler, sample_date=dt_utc, @@ -1105,7 +1124,7 @@ def transfer_water_levels(session): session.add(sample) session.flush() logger.info( - f" Created sample: ID {sample.id} | Date {sample.sample_date} | Matrix {sample.sample_matrix} | Method {sample.sample_method}" + f"{SPACE_4}Created sample: ID {sample.id} | Date {sample.sample_date} | Matrix {sample.sample_matrix} | Method {sample.sample_method}" ) if not pd.isna(row.LevelStatus): @@ -1116,6 +1135,8 @@ def transfer_water_levels(session): level_status = None # TODO: use create schema to validate data + + # TODO: after sensors have been added to the database update sensor_id (or sensor) for waterlevels that come from db sensors (like e probes?) observation = Observation( nma_pk_waterlevels=row.GlobalID, sample=sample, @@ -1131,7 +1152,7 @@ def transfer_water_levels(session): session.add(observation) session.flush() logger.info( - f" Created observation: ID {observation.id} | DT {observation.observation_datetime} | Value {observation.value} | MPHeight {observation.measuring_point_height}" + f"{SPACE_4}Created observation: ID {observation.id} | DT {observation.observation_datetime} | Value {observation.value} | MPHeight {observation.measuring_point_height} | nma_pk_waterlevels {observation.nma_pk_waterlevels}" ) session.commit() From ad20da9bf7fdc08f25e6a68e20e58200938c362e Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 14:20:24 -0600 Subject: [PATCH 25/30] fix: fix patch contact test for updated lexicon --- tests/test_contact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_contact.py b/tests/test_contact.py index 67e81ea43..5959e48a1 100644 --- a/tests/test_contact.py +++ b/tests/test_contact.py @@ -786,7 +786,7 @@ def test_patch_contact_409_bad_contact_type(third_contact): assert data["detail"][0]["loc"] == ["body", "contact_type"] assert ( data["detail"][0]["msg"] - == "Invalid contact_type. Valid terms are: Primary | Secondary" + == "Invalid contact_type. Valid terms are: Primary | Secondary | Field Event Participant" ) assert data["detail"][0]["type"] == "value_error" assert data["detail"][0]["input"] == {"contact_type": payload["contact_type"]} From 41167ee6940b7cd9cba742dc451e614bb887b4dc Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 14:30:31 -0600 Subject: [PATCH 26/30] fix: fix elif array for glorieta --- transfers/waterlevels_transfer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index 8e352bdbe..a8249fcb2 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -351,7 +351,8 @@ def transfer_water_levels(session): "GGI", "GGI for OSE", "GGI-OSE", - "Glorieta Geoscienc" "Glorieta Geoscience", + "Glorieta Geoscienc", + "Glorieta Geoscience", ]: ns = [None] os = ["Glorieta Geoscience, Inc"] From 6eb1188deae5657aaa846a2282974f9dc8f8858d Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 16:10:52 -0600 Subject: [PATCH 27/30] refactor: use json/dict for MeasuredBy mapper --- transfers/data/measured_by_mapper.json | 295 ++++++++++ transfers/waterlevels_transfer.py | 774 +------------------------ 2 files changed, 312 insertions(+), 757 deletions(-) create mode 100644 transfers/data/measured_by_mapper.json diff --git a/transfers/data/measured_by_mapper.json b/transfers/data/measured_by_mapper.json new file mode 100644 index 000000000..d008545ed --- /dev/null +++ b/transfers/data/measured_by_mapper.json @@ -0,0 +1,295 @@ +{ + "A&T Pump & Well Serv": [null, "A&T Pump & Well Service, LLC", "Organization"], + "AGW": [null, "A. G. Wassenaar, Inc", "Organization"], + "AGW Consultants": [null, "A. G. Wassenaar, Inc", "Organization"], + "AGW Consultants, Inc": [null, "A. G. Wassenaar, Inc", "Organization"], + "AGWC": [null, "A. G. Wassenaar, Inc", "Organization"], + "Turner, AGW": [null, "A. G. Wassenaar, Inc", "Unknown"], + "AMEC": [null, "AMEC Earth & Environmental", "Organization"], + "ARCADIS": [null, "ARCADIS", "Organization"], + "Arcadis": [null, "ARCADIS", "Organization"], + "Balleau": [null, "Balleau Groundwater, Inc", "Organization"], + "Balleau BW": [null, "Balleau Groundwater, Inc", "Organization"], + "Balleau GW": [null, "Balleau Groundwater, Inc", "Organization"], + "Cook": ["Cook", "Balleau Groundwater, Inc", "Unknown"], + "Bureau": [null, "NMBGMR", "Organization"], + "CDM": [null, "CDM Smith", "Organization"], + "CH2M Hill": [null, "CH2M Hill", "Organization"], + "IC Tech": [null, "IC Tech, Inc", "Organization"], + "IC Tech for OSE": [null, "IC Tech, Inc", "Organization"], + "IC Tech, Inc.": [null, "IC Tech, Inc", "Organization"], + "ICTech for OSE": [null, "IC Tech, Inc", "Organization"], + "ICTech-OSE": [null, "IC Tech, Inc", "Organization"], + "Jerome Salazar": ["Jerome Salazar", "Chervon", "Unknown"], + "Chevron personnel": [null, "Chevron", "Organization"], + "Calvert": ["Calvert", "Daniel B. Stephens & Associates, Inc.", "Unknown"], + "EnecoTech": [null, "EnecoTech", "Organization"], + "Faith Engineering": [null, "Faith Engineering", "Organization"], + "Hodgins, GCI": ["Meghan Hodgins", "Glorieta Geoscience, Inc", "Geologist"], + "Kreamer, GGI": ["Kreamer", "Glorieta Geoscience, Inc", "Unknown"], + "Olson, GGI": ["Olson", "Glorieta Geoscience, Inc", "Unknown"], + "Golder Ass. For OSE": [null, "Golder Associates, Inc.", "Organization"], + "Hathorn Well Service": [null, "Hathorn's Well Service"], + "Hydroscience Assoc.": [null, "Hydroscience Associates, Inc.", "Organization"], + "Lee Foster": [null, "Foster Well Service, Inc", "Organization"], + "Mario Gonzales NMRWA": ["Mario Gonzales", "NMRWA", "Unknown"], + "Minton": [null, "Minton Engineers", "Organization"], + "Minton Engineers": [null, "Minton Engineers", "Organization"], + "Minton.": [null, "Minton Engineers", "Organization"], + "MJ Darr.": [null, "MJDarrconsult, Inc", "Organization"], + "MJ Darr consultants": [null, "MJDarrconsult, Inc", "Organization"], + "NESWCD": [null, "North East Soil and Water Conservation District", "Organization"], + "OSE, ST": [[null, "NMOSE", "Organization"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"]], + "PVACD person": [null, "PVACD", "Organization"], + "SFC/Frost": ["Frost", "SFC", "Unknown"], + "SPCE HOA": [null, "San Pedro Creek Estates HOA", "Organization"], + "Statewide Drilling": [null, "Statewide Drilling", "Organization"], + "Tec Drilling": [null, "Tec Drilling Limited", "Organization"], + "TetraTech": [null, "Tetra Tech, Inc", "Organization"], + "Thompson Drilling": [null, "Thompson Drilling, Inc", "Organization"], + "USGA": [null, "USGS", "Organization"], + "USGS/NESWCD": [[null, "USGS", "Organization"], [null, "Northeastern SWCD", "Organization"]], + "NMBGMR": [null, "NMBGMR", "Organization"], + "NMED": [null, "NMED", "Organization"], + "NMOSE": [null, "NMOSE", "Organization"], + "NPS": [null, "NPS", "Organization"], + "Otero SWCD": [null, "Otero SWCD", "Organization"], + "SFC": [null, "SFC", "Organization"], + "Taos SWCD": [null, "Taos SWCD", "Organization"], + "TWDB": [null, "TWDB", "Organization"], + "USFS": [null, "USFS", "Organization"], + "USGS": [null, "USGS", "Organization"], + "USGS WRD": [null, "USGS WRD", "Organization"], + + "?": [null, "*MEASURING_AGENCY*", "Unknown"], + "Consultant": [null, "*MEASURING_AGENCY*", "Unknown"], + "Consulting Pro.": [null, "*MEASURING_AGENCY*", "Unknown"], + "Gamma log unit": [null, "*MEASURING_AGENCY*", "Unknown"], + "Pump company": [null, "*MEASURING_AGENCY*", "Unknown"], + "PumpService": [null, "*MEASURING_AGENCY*", "Unknown"], + "REPORTED": [null, "*MEASURING_AGENCY*", "Unknown"], + "Theis report": [null, "*MEASURING_AGENCY*", "Unknown"], + "Unknown": [null, "*MEASURING_AGENCY*", "Unknown"], + "Unknown; reported": [null, "*MEASURING_AGENCY*", "Unknown"], + "Water operator": [null, "*MEASURING_AGENCY*", "Unknown"], + "WWTP": [null, "*MEASURING_AGENCY*", "Unknown"], + "WWTP personnel": [null, "*MEASURING_AGENCY*", "Unknown"], + + "GGI": [null, "Glorieta Geoscience, Inc", "Organization"], + "GGI for OSE": [null, "Glorieta Geoscience, Inc", "Organization"], + "GGI-OSE": [null, "Glorieta Geoscience, Inc", "Organization"], + "Glorieta Geoscienc": [null, "Glorieta Geoscience, Inc", "Organization"], + "Glorieta Geoscience": [null, "Glorieta Geoscience, Inc", "Organization"], + + "Driller": [null, "*MEASURING_AGENCY*", "Driller"], + "Tribble, Cruz": [["Tribble", "Daniel B. Stephens & Associates, Inc", "Unknown"], ["Cruz", "Daniel B. Stephens & Associates", "Unknown"]], + "Tribble/Cruz": [["Tribble", "Daniel B. Stephens & Associates, Inc", "Unknown"], ["Cruz", "Daniel B. Stephens & Associates", "Unknown"]], + "DBSA": [null, "Daniel B. Stephens & Associates, Inc", "Organization"], + "DBStephens & Assoc": [null, "Daniel B. Stephens & Associates, Inc", "Organization"], + + "City of Santa Fe": [null, "CSF", "Organization"], + "City of Santa Fe": [null, "CSF", "Organization"], + "City of Santa Fe": [null, "CSF", "Organization"], + "CityofSantaFe": [null, "CSF", "Organization"], + + "John Shomaker": [null, "John Shomaker & Associates, Inc", "Organization"], + "John Shomaker & Associates, Inc": [null, "John Shomaker & Associates, Inc", "Organization"], + "John Shomaker Assoc.": [null, "John Shomaker & Associates, Inc", "Organization"], + "JS&A": [null, "John Shomaker & Associates, Inc", "Organization"], + "JSA": [null, "John Shomaker & Associates, Inc", "Organization"], + "JSAI": [null, "John Shomaker & Associates, Inc", "Organization"], + "Shomaker": [null, "John Shomaker & Associates, Inc", "Organization"], + + "Fleming": ["Fleming", "John Shomaker & Associates, Inc", "Unknown"], + "Fleming - Shomaker": ["Fleming", "John Shomaker & Associates, Inc", "Unknown"], + "Fleming/Shomaker": ["Fleming", "John Shomaker & Associates, Inc", "Unknown"], + "Shomaker - Fleming": ["Fleming", "John Shomaker & Associates, Inc", "Unknown"], + "Shomaker - Fleming": ["Fleming", "John Shomaker & Associates, Inc", "Unknown"], + "Shomaker/Fleming": ["Fleming", "John Shomaker & Associates, Inc", "Unknown"], + + "Kuck": [null, "Kuckleman Pump Service", "Organization"], + "Kuckleman": [null, "Kuckleman Pump Service", "Organization"], + + "NMOSE?": [null, "NMOSE", "Organization"], + "OSE": [null, "NMOSE", "Organization"], + + "OSE; Doug Rappuhn": ["Doug Rappuhn", "NMOSE", "Hydrologist"], + "D.Rappuhn OSE": ["Doug Rappuhn", "NMOSE", "Hydrologist"], + + "Rodgers & Co": [null, "Rodgers & Company, Inc", "Organization"], + "Rodgers & Co.": [null, "Rodgers & Company, Inc", "Organization"], + + "Sandia National labs": [null, "SNL", "Organization"], + "SNL": [null, "SNL", "Organization"], + + "Santa Fe County": [null, "SFC", "Organization"], + "SFCounty LF staff": [null, "SFC", "Organization"], + + + "AL": ["Angela Lucero", "NMBGMR", "Hydrologist"], + "AL, GR": [["Angela Lucero", "NMBGMR", "Hydrologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "AL, SC": [["Angela Lucero", "NMBGMR", "Hydrologist"], ["Scott Christenson", "NMBGMR", "Technician"]], + "Amy Kronson": [["Amy Kronson", "NMBGMR", "Technician"]], + "Andrew Matejunas": [["Andrew Matejunas", "NMBGMR", "Research Assistant"]], + "Andy Manning": [["Andy Manning", "USGS", "Hydrogeologist"]], + "ce": ["Cathy Eisen", "NMBGMR", "Hydrogeologist"], + "CE": ["Cathy Eisen", "NMBGMR", "Hydrogeologist"], + "CE PJ": [["Cathy Eisen", "NMBGMR", "Hydrogeologist"], ["Peggy Johnson", "NMBGMR", "Hydrogeologist"]], + "CE, GR": [["Cathy Eisen", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "CM": ["Cris Morton", "NMBGMR", "Hydrogeologist"], + "CM, EM": [["Cris Morton", "NMBGMR", "Hydrogeologist"], ["Ethan Mamer", "NMBGMR", "Hydrogeologist"]], + "CM, LS, KP": [["Cris Morton", "NMBGMR", "Hydrogeologist"], ["Laila Sturgis", "NMBGMR", "Hydrogeologist"], ["Kitty Pokorny", "NMBGMR", "Hydrogeologist"]], + "CM, LS, KrPe": [["Cris Morton", "NMBGMR", "Hydrogeologist"], ["Laila Sturgis", "NMBGMR", "Hydrogeologist"], ["Kirsten Pearthree", "NMBGMR", "Research Scientist"]], + "CM, SC": [["Cris Morton", "NMBGMR", "Hydrogeologist"], ["Scott Christenson", "NMBGMR", "Technician"]], + "CM, TK": [["Cris Morton", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "Dan McGregor": ["Dan McGregor", "Bernalillo County", "Hydrogeologist"], + "CE TK": [["Cathy Eisen", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "CE, TK": [["Cathy Eisen", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "EM": ["Ethan Mamer", "NMBGMR", "Hydrogeologist"], + "EM, AL": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"],["Angela Lucero", "NMBGMR", "Hydrologist"]], + "EM, CM": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Cris Morton", "NMBGMR", "Hydrogeologist"]], + "EM,CM": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Cris Morton", "NMBGMR", "Hydrogeologist"]], + "EM, JB": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Joseph Beman", "NMBGMR", "Technician"]], + "EM, KP": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Kitty Pokorny", "NMBGMR", "Hydrogeologist"]], + "EM, LS": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Laila Sturgis", "NMBGMR", "Hydrogeologist"]], + "EM, MF": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Marissa Fichera", "NMBGMR", "Hydrogeologist"]], + "EM, SMC": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Sara Chudnoff", "NMBGMR", "Hydrogeologist"]], + "EM, TK": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "EM, TN": [["Ethan Mamer", "NMBGMR", "Hydrogeologist"], ["Talon Newton", "NMBGMR", "Hydrogeologist"]], + "Gary Goss": ["Gary Goss", "*MEASURING_AGENCY*", "Hydrogeologist"], + "Anders Lundahl": ["Anders Lundahl", "*MEASURING_AGENCY*", "Specialist"], + "Anders Lundalh": ["Anders Lundahl", "*MEASURING_AGENCY*", "Specialist"], + "Bob Borton": ["Bob Borton", "NMBGMR", "Geologist"], + "Borton": ["Bob Borton", "NMBGMR", "Geologist"], + "Dennis Cooper": ["Dennis Cooper", "NMOSE", "Engineer"], + "Dennis R. Cooper": ["Dennis Cooper", "NMOSE", "Engineer"], + "GCR": ["Geoff Rawling", "NMBGMR", "Hydrogeologist"], + "GCR/ST": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"]], + "GCRST": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"]], + "GR/ST": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"]], + "Rawling/Wagner": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"]], + "GCR/ST/JM": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Joe Marcoline", "NMBGMR", "Unknown"]], + "GR": ["Geoff Rawling", "NMBGMR", "Hydrogeologist"], + "GR, AL": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Angela Lucero", "NMBGMR", "Hydrologist"]], + "GR, CE": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Cathy Eisen", "NMBGMR", "Hydrogeologist"]], + "GR, SC": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Scott Christenson", "NMBGMR", "Technician"]], + "GR, TK": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "GR/TK": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "GR/LL": [["Geoff Rawling", "NMBGMR", "Hydrogeologist"], ["Lewis Land", "NMBGMR", "Hydrogeologist"]], + "JB": ["Joseph Beman", "NMBGMR", "Technician"], + "JEB": ["Joseph Beman", "NMBGMR", "Technician"], + "Jim Corbin": ["Jim Corbin", "Corbin Consulting, Inc", "Unknown"], + "JM": ["Joe Marcoline", "NMED", "Unknown"], + "Joe Marcoline": ["Joe Marcoline", "NMED", "Unknown"], + "Johnson": ["Peggy Johnson", "NMBGMR", "Hydrogeologist"], + "Johnson - Kuck": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Kuck", "Unknown", "Unknown"]], + "Johnson-Kuck": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Kuck", "Unknown", "Unknown"]], + "Johnson/Kuck": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Kuck", "Unknown", "Unknown"]], + "Johnson-Lyman": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["John Lyman", "Unknown", "Unknown"]], + "Johnson/Lyman": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["John Lyman", "Unknown", "Unknown"]], + "Lyman": [["John Lyman", "Unknown", "Unknown"]], + "PJ/Lyman": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["John Lyman", "Unknown", "Unknown"]], + "Jose Varela Lopez": ["Jose Varela Lopez", "Puerta del Canon Ranch", "Operator"], + "K. McLain": ["Katie McLain", "NMBGMR", "Hydrogeologist"], + "K. McLain, M. Hein": [["Katie McLain", "NMBGMR", "Hydrogeologist"], ["Marina Hein", "NMT", "Biologist"]], + "K.Summers": ["Kelly Summers", "NMBGMR", "Hydrologist"], + "WK Summers": ["Kelly Summers", "NMBGMR", "Hydrologist"], + "Kelsey McNamara": ["Kelsey McNamara", "NMBGMR", "Geologist"], + "Kitty": ["Kitty Pokorny", "NMBGMR", "Hydrogeologist"], + "Kitty Pokorny": ["Kitty Pokorny", "NMBGMR", "Hydrogeologist"], + "KP": ["Kitty Pokorny", "NMBGMR", "Hydrogeologist"], + "KP, MF": [["Kitty Pokorny", "NMBGMR", "Hydrogeologist"], ["Marissa Fichera", "NMBGMR", "Hydrogeologist"]], + "KP, ST": [["Kitty Pokorny", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"]], + "KP, TK": [["Kitty Pokorny", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "KR": ["Kylian Robinson", "NMED", "Hydrogeologist"], + "Kylian Robinson": ["Kylian Robinson", "NMED", "Hydrogeologist"], + "Leroy Romero": ["Leroy Romero", "Los Golondrinas", "Unknown"], + "LL, TN": [["Lewis Land", "NMBGMR", "Hydrogeologist"], ["Talon Newton", "NMBGMR", "Hydrogeologist"]], + "LS": ["Laila Sturgis", "NMBGMR", "Hydrogeologist"], + "LS, TK": [["Laila Sturgis", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "M. Hein": ["Marina Hein", "NMT", "Biologist"], + "MH, KM": [["Marina Hein", "NMT", "Biologist"], ["Katie McLain", "NMBGMR", "Hydrogeologist"]], + "Patricia Rosacker": ["Patricia Rosacker", "CSF", "Lab Manager"], + "PB, PJ": [["Paul Bauer", "NMBGMR", "Geologist"], ["Peggy Johnson", "NMBGMR", "Hydrogeologist"]], + "PB, PJ, TK": [["Paul Bauer", "NMBGMR", "Geologist"], ["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "Pepin": ["Jeff Pepin", "USGS", "Hydrologist"], + "Pepin/Kelley": [["Jeff Pepin", "USGS", "Hydrologist"], ["Shari Kelley", "NMBGMR", "Geologist"]], + "Mark Person": ["Mark Person", "NMT", "Hydrologist"], + "PJ": ["Peggy Johnson", "NMBGMR", "Hydrogeologist"], + "PJ PB": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Paul Bauer", "NMBGMR", "Geologist"]], + "PJ, PB": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Paul Bauer", "NMBGMR", "Geologist"]], + "PJ TK PB": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Paul Bauer", "NMBGMR", "Geologist"]], + "PJ, TK, PB": [["Peggy Johnson", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Paul Bauer", "NMBGMR", "Geologist"]], + "RL Borton": [["R. L. Borton", "NMOSE", "Unknown"]], + "RP": ["RP", "NMOSE", "Unknown"], + "Sara Chudnoff": ["Sara Chudnoff", "NMBGMR", "Hydrogeologist"], + "SMC": ["Sara Chudnoff", "NMBGMR", "Hydrogeologist"], + "SMC, EM": [["Sara Chudnoff", "NMBGMR", "Hydrogeologist"], ["Ethan Mamer", "NMBGMR", "Hydrogeologist"]], + "SMC, SC": [["Sara Chudnoff", "NMBGMR", "Hydrogeologist"], ["Scott Christenson", "NMBGMR", "Hydrogeologist"]], + "SMC, TK": [["Sara Chudnoff", "NMBGMR", "Hydrogeologist"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "SC": ["Scott Christenson", "NMBGMR", "Technician"], + "SCC": ["Scott Christenson", "NMBGMR", "Technician"], + "SD": ["Scott Christenson", "NMBGMR", "Technician"], + "SC, AL": [["Scott Christenson", "NMBGMR", "Technician"], ["Angela Lucero", "NMBGMR", "Hydrologist"]], + "SC, CM": [["Scott Christenson", "NMBGMR", "Technician"], ["Cris Morton", "NMBGMR", "Hydrogeologist"]], + "SC, DL": [["Scott Christenson", "NMBGMR", "Technician"], ["Dan Lavery", "NMBGMR", "Hydrogeologist"]], + "SC, EM": [["Scott Christenson", "NMBGMR", "Technician"], ["Ethan Mamer", "NMBGMR", "Hydrogeologist"]], + "SC, GR": [["Scott Christenson", "NMBGMR", "Technician"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "SC, KP": [["Scott Christenson", "NMBGMR", "Technician"], ["Kitty Pokorny", "NMBGMR", "Hydrogeologist"]], + "SC, SMC": [["Scott Christenson", "NMBGMR", "Technician"], ["Sara Chudnoff", "NMBGMR", "Hydrogeologist"]], + "SC, ST": [["Scott Christenson", "NMBGMR", "Technician"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"]], + "SC, TK": [["Scott Christenson", "NMBGMR", "Technician"], ["Trevor Kludt", "NMBGMR", "Hydrogeologist"]], + "SC, TN": [["Scott Christenson", "NMBGMR", "Technician"], ["Talon Newton", "NMBGMR", "Hydrogeologist"]], + "SK": ["Shari Kelley", "NMBGMR", "Geologist"], + "SK, SC, GR": [["Shari Kelley", "NMBGMR", "Geologist"], ["Scott Christenson", "NMBGMR", "Technician"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "SR": ["Stephanie Roussel", "USGS", "Hydrologist"], + "Stephanie Roussel": ["Stephanie Roussel", "USGS", "Hydrologist"], + "SR, EM": [["Stephanie Roussel", "USGS", "Hydrologist"], ["Ethan Mamer", "NMBGMR", "Hydrogeologist"]], + " Wagner": ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], + "ST": ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], + "Stacy Timmons": ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], + "Timmons": ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], + "Wagner": ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], + "ST, CE": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Cathy Eisen", "NMBGMR", "Hydrogeologist"]], + "ST, Joe Marcoline": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Joe Marcoline", "NMED", "Unknown"]], + "ST/JM": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Joe Marcoline", "NMED", "Unknown"]], + "ST, KP": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Kitty Pokorny", "NMBGMR", "Hydrogeologist"]], + "ST, SK": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Shari Kelley", "NMBGMR", "Geologist"]], + "ST, SK, Person": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Shari Kelley", "NMBGMR", "Geologist"], ["Mark Person", "NMT", "Hydrologist"]], + "ST, SMC": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Sara Chudnoff", "NMBGMR", "Hydrogeologist"]], + "ST/BF": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Brigitte Felix", "NMBGMR", "Publications Manager"]], + "ST/BFK": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Brigitte Felix", "NMBGMR", "Publications Manager"]], + "ST/BTN": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Talon Newton", "NMBGMR", "Hydrogeologist"]], + "ST/GCR": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "ST/GR": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "Wagner/Rawling": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "ST/JW": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Jim Witcher", "Witcher & Associates", "Hydrogeologist"]], + "ST/LL": [["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Lewis Land", "NMBGMR", "Hydrogeologist"]], + "TK": ["Trevor Kludt", "NMBGMR", "Hydrogeologist"], + "Trevor Kludt": ["Trevor Kludt", "NMBGMR", "Hydrogeologist"], + "TK BF": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Brigitte Felix", "NMBGMR", "Publications Manager"]], + "TK, BF": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Brigitte Felix", "NMBGMR", "Publications Manager"]], + "TK/BF": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Brigitte Felix", "NMBGMR", "Publications Manager"]], + "tk cm": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Cris Morton", "NMBGMR", "Hydrogeologist"]], + "TK, CM": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Cris Morton", "NMBGMR", "Hydrogeologist"]], + "TK KR": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Kylian Robinson", "NMED", "Hydrogeologist"]], + "TK, KR": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Kylian Robinson", "NMED", "Hydrogeologist"]], + "TK, AL": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Angela Lucero", "NMBGMR", "Hydrologist"]], + "TK, CE": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Cathy Eisen", "NMBGMR", "Hydrogeologist"]], + "TK,CE": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Cathy Eisen", "NMBGMR", "Hydrogeologist"]], + "TK, EM": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Ethan Mamer", "NMBGMR", "Hydrogeologist"]], + "TK, GR": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "TK, GCR": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "TK/GR": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "TK/RG": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Geoff Rawling", "NMBGMR", "Hydrogeologist"]], + "TK, KrPe": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Kirsten Pearthree", "NMBGMR", "Research Scientist"]], + "TK, PB, PJ": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Paul Bauer", "NMBGMR", "Geologist"], ["Peggy Johnson", "NMBGMR", "Hydrogeologist"]], + "TK, SC": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Scott Christenson", "NMBGMR", "Technician"]], + "TK, ST, CE": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Cathy Eisen", "NMBGMR", "Hydrogeologist"]], + "TK, ST; CE": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Stacy Timmons", "NMBGMR", "Hydrogeologist"], ["Cathy Eisen", "NMBGMR", "Hydrogeologist"]], + "TK, TN": [["Trevor Kludt", "NMBGMR", "Hydrogeologist"], ["Talon Newton", "NMBGMR", "Hydrogeologist"]], + "TN": ["Talon Newton", "NMBGMR", "Hydrogeologist"], + "TN, LL": [["Talon Newton", "NMBGMR", "Hydrogeologist"], ["Lewis Land", "NMBGMR", "Hydrogeologist"]], + "Wasiolek": ["Maryann Wasiolek", "Hydroscience Associates, Inc", "Hydrogeologist"], + "Wasiolek rpt 1983": ["Maryann Wasiolek", "Hydroscience Associates, Inc", "Hydrogeologist"] +} \ No newline at end of file diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py index a8249fcb2..913313119 100644 --- a/transfers/waterlevels_transfer.py +++ b/transfers/waterlevels_transfer.py @@ -16,6 +16,7 @@ import time import uuid from datetime import datetime +import json import pandas as pd @@ -37,11 +38,16 @@ lexicon_mapper, ) -# keep a dictionary of created Contacts to avoid repeated SQL queries -CREATED_CONTACTS = {} +# constants SPACE_2 = " " * 2 SPACE_4 = " " * 4 +# keep a dictionary of created Contacts to avoid repeated SQL queries +CREATED_CONTACTS = {} + +with open("transfers/data/measured_by_mapper.json", "r") as f: + measured_by_mapper = json.load(f) + def transfer_water_levels(session): @@ -138,18 +144,6 @@ def transfer_water_levels(session): # AMP feedback: # - is Duke Engring the same as Duke University? Is it from their engineering school? # - speak with AMP to help identify all initials - """ - Developer's notes - - - If MeasuredBy is NULL - - If this is the first NULL that has been encountered, create a - Contact with name "NM_Aquifer NULL" - - If this is not the first NULL that has been encountered, use - the existing Contact with name "NM_Aquifer NULL" - - If MeasuredBy is not NULL - - If a Contact with name MeasuredBy already exists, use it - - If a Contact with name MeasuredBy does not exist, create it - """ if pd.isna(row.MeasuredBy): measured_by = None else: @@ -171,7 +165,15 @@ def transfer_water_levels(session): # rs --> roles # TODO: get help figuring out (AMP) - if measured_by is None: + if measured_by in measured_by_mapper.keys(): + args = measured_by_mapper[measured_by] + if isinstance(args[0], list): + ns, os, rs = zip(*args) + else: + ns = [args[0]] + os = [args[1]] + rs = [args[2]] + elif measured_by is None: ns = [None] os = ["Unknown"] rs = ["Unknown"] @@ -260,232 +262,6 @@ def transfer_water_levels(session): f"{SPACE_4}The following record has not been mapped to a Contact: {row.MeasuredBy} // {row.MeasuringAgency} for PointID {row.PointID} (which comes from the WaterLevels table)" ) - # --- Companies/Organizations/Misc --- - elif measured_by == "A&T Pump & Well Serv": - ns = [None] - os = ["A&T Pump & Well Service, LLC"] - rs = ["Organization"] - elif "AGW" in measured_by: - os = ["A. G. Wassenaar, Inc"] - if "Turner" in measured_by: - ns = ["Turner"] - rs = ["Unknown"] - else: - ns = [None] - rs = ["Organization"] - elif measured_by == "AMEC": - ns = [None] - os = ["AMEC Earth & Environmental"] - rs = ["Organization"] - elif measured_by == "ARCADIS": - ns = [None] - os = ["Arcadis"] - rs = ["Organization"] - elif "Balleau" in measured_by: - ns = [None] - os = ["Balleau Groundwater, Inc"] - rs = ["Organization"] - elif measured_by == "Cook": - ns = ["Cook"] - os = ["Balleau Groundwater, Inc"] - rs = ["Unknown"] - elif measured_by == "Bureau": - ns = [None] - os = ["NMBGMR"] - rs = ["Organization"] - elif measured_by == "CDM": - ns = [None] - os = ["CDM Smith"] - rs = ["Organization"] - elif measured_by == "CH2MHill": - ns = [None] - os = ["CH2M Hill"] - rs = ["Organization"] - elif measured_by == "Jerome Salazar": - ns = ["Jerome Salazar"] - os = ["Chevron"] - rs = ["Unknown"] - elif measured_by == "Chevron personnel": - ns = [None] - os = ["Chevron"] - rs = ["Organization"] - elif measured_by in [ - "City of Santa Fe", - "City of Santa Fe", - "City of Santa Fe", - "CityofSantaFe", - ]: - ns = [None] - os = ["CSF"] - rs = ["Organization"] - elif measured_by in ["DBSA", "DBStephens & Assoc"]: - ns = [None] - os = ["Daniel B. Stephens & Associates, Inc"] - rs = ["Organization"] - elif measured_by == "Calvert": - ns = ["Calvert"] - os = ["Daniel B. Stephens & Associates, Inc"] - # TODO: see if AMP knows this person's name and role - rs = ["Unknown"] - elif measured_by in ["Tribble, Cruz", "Tribble/Cruz"]: - ns = ["Tribble", "Cruz"] - os = [ - "Daniel B. Stephens & Associates, Inc", - "Daniel B. Stephens & Associates, Inc", - ] - rs = ["Unknown", "Unknown"] - elif measured_by == "Driller": - ns = [None] - os = [measuring_agency] - rs = ["Driller"] - elif measured_by == "EnecoTech": - # TODO: verify organization name with AMP - ns = [None] - os = ["EnecoTech"] - rs = ["Organization"] - elif measured_by == "Faith Engineering": - ns = [None] - os = ["Faith Engineering, Inc"] - rs = ["Organization"] - elif measured_by in [ - "GGI", - "GGI for OSE", - "GGI-OSE", - "Glorieta Geoscienc", - "Glorieta Geoscience", - ]: - ns = [None] - os = ["Glorieta Geoscience, Inc"] - rs = ["Organization"] - elif measured_by == "Hodgins, GCI": - ns = ["Meghan Hodgins"] - os = ["Glorieta Geoscience, Inc"] - rs = ["Geologist"] - elif measured_by == "Kreamer, GGI": - ns = ["Kreamer"] - os = ["Glorieta Geoscience, Inc"] - rs = ["Unknown"] - elif measured_by == "Olson, GGI": - ns = ["Olson"] - os = ["Glorieta Geoscience, Inc"] - rs = ["Unknown"] - elif measured_by == "Golder Ass. For OSE": - ns = [None] - os = ["Golder Associates, Inc"] - rs = ["Organization"] - elif measured_by == "Hathorn Well Service": - ns = [None] - os = ["Hathorn's Well Service"] - rs = ["Organization"] - elif measured_by == "Hydroscience Assoc.": - ns = [None] - os = ["Hydroscience Associates, Inc"] - rs = ["Organization"] - elif "IC Tech" in measured_by or "ICTech" in measured_by: - ns = [None] - os = ["IC Tech, Inc"] - rs = ["Organization"] - elif measured_by in [ - "John Shomaker", - "John Shomaker & Asso", - "John Shomaker Assoc.", - "JS&A", - "JSA", - "JSAI", - "Shomaker", - ]: - ns = [None] - os = ["John Shomaker & Associates, Inc"] - rs = ["Organization"] - elif measured_by in [ - "Fleming", - "Fleming - Shomaker", - "Fleming/Shomaker", - "Shomaker - Fleming", - "Shomaker - Fleming", - "Shomaker/Fleming", - ]: - ns = ["Fleming"] - os = ["John Shomaker & Associates, Inc"] - rs = ["Unknown"] - elif measured_by in ["Kuck", "Kuckleman"]: - ns = [None] - os = ["Kuckleman Pump Service"] - rs = ["Organization"] - elif measured_by == "Lee Foster": - ns = [None] - os = ["Foster Well Service, Inc"] - rs = ["Organization"] - elif measured_by == "Mario Gonzales NMRWA": - # TODO: does AMP know this person's role at NMRWA? - ns = ["Mario Gonzalez"] - os = ["NMRWA"] - rs = ["Unknown"] - elif "Minton" in measured_by: - ns = [None] - os = ["Minton Engineers"] - rs = ["Organization"] - elif "MJ Darr" in measured_by: - ns = [None] - rs = ["MJDarrconsult, Inc"] - os = [measuring_agency] - elif measured_by == "NESWCD": - ns = [None] - os = ["Northeastern SWCD"] - rs = ["Organization"] - elif measured_by in ["NMOSE?", "OSE"]: - ns = [None] - os = ["NMOSE"] - rs = ["Organization"] - elif measured_by in ["OSE; Doug Rappuhn", "D.Rappuhn OSE"]: - # TODO: verify role with AMP - ns = ["Doug Rappuhn"] - os = ["NMOSE"] - rs = ["Hydrologist"] - elif measured_by == "OSE, ST": - ns = [None, "Stacy Timmons"] - os = ["NMOSE", "NMBGMR"] - rs = ["Organization", "Hydrogeologist"] - elif measured_by == "PVACD person": - ns = [None] - os = ["PVACD"] - rs = ["Organization"] - elif measured_by in ["Rodgers & Co", "Rodgers & Co."]: - ns = [None] - os = ["Rodgers & Company, Inc"] - rs = ["Organization"] - elif measured_by in ["Sandia National labs", "SNL"]: - ns = [None] - os = ["SNL"] - rs = ["Organization"] - elif measured_by in ["Santa Fe County", "SFCounty LF staff"]: - ns = [None] - os = ["SFC"] - rs = ["Organization"] - elif measured_by == "SFC/Frost": - ns = ["Frost"] - os = ["SFC"] - rs = ["Unknown"] - elif measured_by == "SPCE HOA": - ns = [None] - os = ["San Pedro Creek Estates HOA"] - rs = ["Organization"] - elif measured_by == "Statewide Drilling": - ns = [None] - os = ["Statewide Drilling, Inc"] - rs = ["Organization"] - elif measured_by == "Tec Drilling": - ns = [None] - os = ["Tec Drilling Limited"] - rs = ["Organization"] - elif measured_by == "TetraTech": - ns = [None] - os = ["Tetra Tech, Inc"] - rs = ["Organization"] - elif measured_by == "Thompson Drilling": - ns = [None] - os = ["Thompson Drilling, Inc"] - rs = ["Organization"] elif measured_by in [ "?", "Consultant", @@ -505,522 +281,6 @@ def transfer_water_levels(session): ns = [None] os = [measuring_agency] rs = ["Unknown"] - elif measured_by == "USGA": - ns = [None] - os = ["USGS"] - rs = ["Organization"] - elif measured_by == "USGS/NESWCD": - ns = [None, None] - os = ["USGS", "Northeastern SWCD"] - rs = ["Organization", "Organization"] - elif measured_by in [ - "Arcadis", - "NMBGMR", - "NMED", - "NMOSE", - "NPS", - "Otero SWCD", - "SFC", - "Taos SWCD", - "TWDB", - "USFS", - "USGS", - "USGS WRD", - ]: - # organizations whose names do not need to be changed - ns = [None] - os = [measured_by] - rs = ["Organization"] - - # --- People --- - elif measured_by == "AL": - ns = ["Angela Lucero"] - os = ["NMBGMR"] - rs = ["Hydrologist"] - elif measured_by == "AL, GR": - ns = ["Angela Lucero", "Geoff Rawling"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrologist", "Hydrogeologist"] - elif measured_by == "AL, SC": - ns = ["Angela Lucero", "Scott Christenson"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrologist", "Technician"] - elif measured_by == "Amy Kronson": - ns = ["Amy Kronson"] - os = ["NMBGMR"] - rs = ["Technician"] - elif measured_by in ["Anders Lundahl", "Anders Lundalh"]: - ns = ["Anders Lundahl"] - os = [measuring_agency] - rs = ["Specialist"] - elif measured_by == "Andrew Matejunas": - ns = [measured_by] - os = ["NMBGMR"] - rs = ["Research Assistant"] - elif measured_by == "Andy Manning": - ns = [measured_by] - os = ["USGS"] - rs = ["Hydrogeologist"] - elif measured_by in ["Bob Borton", "Borton"]: - ns = ["Bob Borton"] - os = ["NMBGMR"] - rs = ["Geologist"] - elif measured_by in ["CE", "ce"]: - ns = ["Cathy Eisen"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "CE PJ": - ns = ["Cathy Eisen", "Peggy Johnson"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["CE TK", "CE, TK"]: - ns = ["Cathy Eisen", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "CE, GR": - ns = ["Cathy Eisen", "Geoff Rawling"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "CM": - ns = ["Cris Morton"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "CM, EM": - ns = ["Cris Morton", "Ethan Mamer"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "CM, LS, KP": - # TODO: verify Kitty's role with AMP - ns = ["Cris Morton", "Laila Sturgis", "Kitty Pokorny"] - os = ["NMBGMR", "NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist", "Hydrogeologist"] - elif measured_by == "CM, LS, KrPe": - ns = ["Cris Morton", "Laila Sturgis", "Kirsten Pearthree"] - os = ["NMBGMR", "NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist", "Research Scientist"] - elif measured_by == "CM, SC": - ns = ["Cris Morton", "Scott Christenson"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Technician"] - elif measured_by == "CM, TK": - ns = ["Cris Morton", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "Dan McGregor": - ns = [measured_by] - os = ["Bernalillo County"] - rs = ["Hydrogeologist"] - elif measured_by in ["Dennis Cooper", "Dennis R. Cooper"]: - ns = ["Dennis Cooper"] - os = ["NMOSE"] - rs = ["Engineer"] - elif measured_by == "EM": - ns = ["Ethan Mamer"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "EM, AL": - ns = ["Ethan Mamer", "Angela Lucero"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrologist"] - elif measured_by in ["EM, CM", "EM,CM"]: - ns = ["Ethan Mamer", "Cris Morton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "EM, JB": - ns = ["Ethan Mamer", "Joseph Beman"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Technician"] - elif measured_by == "EM, KP": - # TODO: verify Kitty's role with AMP - ns = ["Ethan Mamer", "Kitty Pokorny"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "EM, LS": - ns = ["Ethan Mamer", "Laila Sturgis"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "EM, MF": - ns = ["Ethan Mamer", "Marissa Fichera"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "EM, SMC": - ns = ["Ethan Mamer", "Sara Chudnoff"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "EM, TK": - ns = ["Ethan Mamer", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "EM, TN": - ns = ["Ethan Mamer", "Talon Newton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "Gary Goss": - ns = [measured_by] - os = [measuring_agency] - rs = ["Operator"] - elif measured_by == "GCR": - ns = ["Geoff Rawling"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by in ["GCR/ST", "GCRST", "GR/ST", "Rawling/Wagner"]: - ns = ["Geoff Rawling", "Stacy Timmons"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "GCR/ST/JM": - # TODO: verify Joe's role with AMP - ns = ["Geoff Rawling", "Stacy Timmons", "Joe Marcoline"] - os = ["NMBGMR", "NMBGMR", "NMED"] - rs = ["Hydrogeologist", "Hydrogeologist", "Unknown"] - elif measured_by == "GR": - ns = ["Geoff Rawling"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "GR, AL": - ns = ["Geoff Rawling", "Angela Lucero"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrologist"] - elif measured_by == "GR, CE": - ns = ["Geoff Rawling", "Cathy Eisen"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "GR, SC": - ns = ["Geoff Rawling", "Scott Christenson"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Technician"] - elif measured_by in ["GR, TK", "GR/TK"]: - ns = ["Geoff Rawling", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "GR/LL": - ns = ["Geoff Rawling", "Lewis Land"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["JB", "JEB"]: - ns = ["Joseph Beman"] - os = ["NMBGMR"] - rs = ["Technician"] - elif measured_by == "Jim Corbin": - ns = ["Jim Corbin"] - os = ["Corbin Consulting, Inc"] - rs = ["Unknown"] - elif measured_by in ["JM", "Joe Marcoline"]: - ns = ["Joe Marcoline"] - os = ["NMED"] - rs = ["Unknown"] - elif measured_by == "Johnson": - ns = ["Peggy Johnson"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by in ["Johnson - Kuck", "Johnson-Kuck", "Johnson/Kuck"]: - # TODO: get Kuckleman's first name, role, organization from AMP - ns = ["Peggy Johnson", "Kuckleman"] - os = ["NMBGMR", "Unknown"] - rs = ["Hydrogeologist", "Unknown"] - elif measured_by in ["Johnson-Lyman", "Johnson/Lyman", "PJ/Lyman"]: - ns = ["Peggy Johnson", "John Lyman"] - os = ["NMBGMR", "Unknown"] - rs = ["Hydrogeologist", "Unknown"] - elif measured_by == "Jose Varela Lopez": - ns = ["Jose Varela Lopez"] - os = ["Puerta del Canon Ranch"] - rs = ["Operator"] - elif measured_by == "K. McLain": - ns = ["Katie McLain"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "K. McLain, M. Hein": - ns = ["Katie McLain", "Marina Hein"] - os = ["NMBGMR", "NMT"] - rs = ["Hydrogeologist", "Biologist"] - elif measured_by in ["K.Summers", "WK Summers"]: - ns = ["Kelly Summers"] - os = ["NMBGMR"] - rs = ["Hydrologist"] - elif measured_by == "Kelsey McNamara": - ns = [measured_by] - os = ["NMBGMR"] - rs = ["Geologist"] - elif measured_by in ["Kitty", "Kitty Pokorny", "KP"]: - ns = ["Kitty Pokorny"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == ["KP, MF"]: - ns = ["Kitty Pokorny", "Marissa Fichera"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "KP, ST": - ns = ["Kitty Pokorny", "Stacy Timmons"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "KP, TK": - ns = ["Kitty Pokorny", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["KR", "Kylian Robinson"]: - ns = ["Kylian Robinson"] - os = ["NMED"] - rs = ["Hydrogeologist"] - elif measured_by == "Leroy Romero": - ns = ["Leroy Romero"] - os = ["Los Golondrinas"] - rs = ["Unknown"] - elif measured_by == "LL, TN": - ns = ["Lewis Land", "Talon Newton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "LS": - ns = ["Laila Sturgis"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "LS, TK": - ns = ["Laila Sturgis", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "Lyman": - ns = ["John Lyman"] - os = ["Unknown"] - rs = ["Unknown"] - elif measured_by == "M. Hein": - ns = ["Marina Hein"] - os = ["NMT"] - rs = ["Biologist"] - elif measured_by == "MH, KM": - ns = ["Marina Hein", "Katie McLain"] - os = ["NMT", "NMBGMR"] - rs = ["Biologist", "Hydrogeologist"] - elif measured_by == "Patricia Rosacker": - ns = ["Patricia Rosacker"] - os = ["CSF"] - rs = ["Lab Manager"] - elif measured_by == "PB, PJ": - ns = ["Paul Bauer", "Peggy Johnson"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Geologist", "Hydrogeologist"] - elif measured_by == "PB, PJ, TK": - ns = ["Paul Bauer", "Peggy Johnson", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR", "NMBGMR"] - rs = ["Geologist", "Hydrogeologist", "Hydrogeologist"] - elif measured_by == "Pepin": - ns = ["Jeff Pepin"] - os = ["USGS"] - rs = ["Hydrologist"] - elif measured_by == "Pepin/Kelley": - ns = ["Jeff Pepin", "Shari Kelley"] - os = ["USGS", "NMBGMR"] - rs = ["Hydrologist", "Geologist"] - elif measured_by == "Mark Person": - ns = [measured_by] - os = ["NMT"] - rs = ["Geologist"] - elif measured_by == "PJ": - ns = ["Peggy Johnson"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by in ["PJ PB", "PJ, PB"]: - ns = ["Peggy Johnson", "Paul Bauer"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Geologist"] - elif measured_by in ["PJ TK PB", "PJ, TK, PB"]: - ns = ["Peggy Johnson", "Trevor Kludt", "Paul Bauer"] - os = ["NMBGMR", "NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist", "Geologist"] - elif measured_by == "RL Borton": - ns = ["R. L. Borton"] - os = ["NMOSE"] - rs = ["Unknown"] - elif measured_by == "RP": - ns = ["RP"] - os = ["NMOSE"] - rs = ["Unknown"] - elif measured_by in ["Sara Chudnoff", "SMC"]: - ns = ["Sara Chudnoff"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "SMC, EM": - ns = ["Sara Chudnoff", "Ethan Mamer"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "SMC, SC": - ns = ["Sara Chudnoff", "Scott Christenson"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Technician"] - elif measured_by == "SMC, TK": - ns = ["Sara Chudnoff", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["SC", "SCC", "SD"]: - ns = ["Scott Christenson"] - os = ["NMBGMR"] - rs = ["Technician"] - elif measured_by == "SC, AL": - ns = ["Scott Christenson", "Angela Lucero"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrologist"] - elif measured_by == "SC, CM": - ns = ["Scott Christenson", "Cris Morton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, DL": - ns = ["Scott Christenson", "Dan Lavery"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, EM": - ns = ["Scott Christenson", "Ethan Mamer"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, GR": - ns = ["Scott Christenson", "Geoff Rawling"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, KP": - ns = ["Scott Christenson", "Kitty Pokorny"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, SMC": - ns = ["Scott Christenson", "Sara Chudnoff"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, ST": - ns = ["Scott Christenson", "Stacy Timmons"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, TK": - ns = ["Scott Christenson", "Trevor Kludt"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SC, TN": - ns = ["Scott Christenson", "Talon Newton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Technician", "Hydrogeologist"] - elif measured_by == "SK": - ns = ["Shari Kelley"] - os = ["NMBGMR"] - rs = ["Geologist"] - elif measured_by == "SK, SC, GR": - ns = ["Shari Kelley", "Scott Christenson", "Geoff Rawling"] - os = ["NMBGMR", "NMBGMR", "NMBGMR"] - rs = ["Geologist", "Technician", "Geologist"] - elif measured_by == "SR": - ns = ["Stephanie Roussel"] - os = ["USGS"] - rs = ["Hydrologist"] - elif measured_by == "SR, EM": - ns = ["Stephanie Roussel", "Ethan Mamer"] - os = ["USGS", "NMBGMR"] - rs = ["Hydrologist", "Hydrogeologist"] - elif measured_by in [" Wagner", "ST", "Stacy Timmons", "Timmons", "Wagner"]: - ns = ["Stacy Timmons"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "ST, CE": - ns = ["Stacy Timmons", "Cathy Eisen"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["ST, Joe Marcoline", "ST/JM"]: - ns = ["Stacy Timmons", "Joe Marcoline"] - os = ["NMBGMR", "NMED"] - rs = ["Hydrogeologist", "Unknown"] - elif measured_by == "ST, KP": - ns = ["Stacy Timmons", "Kitty Pokorny"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "ST, SK": - ns = ["Stacy Timmons", "Shari Kelley"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Geologist"] - elif measured_by == "ST, SK, Person": - ns = ["Stacy Timmons", "Shari Kelley", "Mark Person"] - os = ["NMBGMR", "NMBGMR", "NMT"] - rs = ["Hydrogeologist", "Geologist", "Geologist"] - elif measured_by == "ST, SMC": - ns = ["Stacy Timmons", "Sara Chudnoff"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["ST/BF", "ST/BFK"]: - ns = ["Stacy Timmons", "Brigitte Felix"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Publications Manager"] - elif measured_by == "ST/BTN": - ns = ["Stacy Timmons", "Talon Newton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["ST/GCR", "ST/GR", "Wagner/Rawling"]: - ns = ["Stacy Timmons", "Geoff Rawling"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "ST/JW": - ns = ["Stacy Timmons", "Jim Witcher"] - os = ["NMBGMR", "Witcher & Associates"] - rs = ["Hydrogeologist", "Geologist"] - elif measured_by == "ST/LL": - ns = ["Stacy Timmons", "Lewis Land"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["TK", "Trevor Kludt"]: - ns = ["Trevor Kludt"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by in ["TK BF", "TK, BF", "TK/BF"]: - ns = ["Trevor Kludt", "Brigitte Felix"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Publications Manager"] - elif measured_by in ["tk cm", "TK, CM"]: - ns = ["Trevor Kludt", "Cris Morton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["TK KR", "TK, KR"]: - ns = ["Trevor Kludt", "Kylian Robinson"] - os = ["NMBGMR", "NMED"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "TK, AL": - ns = ["Trevor Kludt", "Angela Lucero"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrologist"] - elif measured_by in ["TK, CE", "TK,CE"]: - ns = ["Trevor Kludt", "Cathy Eisen"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "TK, EM": - ns = ["Trevor Kludt", "Ethan Mamer"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["TK, GR", "TK, GCR", "TK/GR", "TK/RG"]: - ns = ["Trevor Kludt", "Geoff Rawling"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "TK, KrPe": - ns = ["Trevor Kludt", "Kirsten Pearthree"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Research Scientist"] - elif measured_by == "TK, PB, PJ": - ns = ["Trevor Kludt", "Paul Bauer", "Peggy Johnson"] - os = ["NMBGMR", "NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Geologist", "Hydrogeologist"] - elif measured_by == "TK, SC": - ns = ["Trevor Kludt", "Scott Christenson"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Technician"] - elif measured_by in ["TK, ST, CE", "TK, ST; CE"]: - ns = ["Trevor Kludt", "Stacy Timmons", "Cathy Eisen"] - os = ["NMBGMR", "NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist", "Hydrogeologist"] - elif measured_by == "TK, TN": - ns = ["Trevor Kludt", "Talon Newton"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by == "TN": - ns = ["Talon Newton"] - os = ["NMBGMR"] - rs = ["Hydrogeologist"] - elif measured_by == "TN, LL": - ns = ["Talon Newton", "Lewis Land"] - os = ["NMBGMR", "NMBGMR"] - rs = ["Hydrogeologist", "Hydrogeologist"] - elif measured_by in ["Wasiolek", "Wasiolek rpt 1983"]: - ns = ["Maryann Wasiolek"] - os = ["Hydroscience Associates, Inc"] - rs = ["Hydrogeologist"] else: logger.critical( From 63f179d6816b1aa4b1b7be0e255d20e2ebfef948 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 30 Sep 2025 16:18:16 -0600 Subject: [PATCH 28/30] refactor: handle misc cases in code --- transfers/data/measured_by_mapper.json | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/transfers/data/measured_by_mapper.json b/transfers/data/measured_by_mapper.json index d008545ed..2c3e113c6 100644 --- a/transfers/data/measured_by_mapper.json +++ b/transfers/data/measured_by_mapper.json @@ -61,20 +61,6 @@ "USGS": [null, "USGS", "Organization"], "USGS WRD": [null, "USGS WRD", "Organization"], - "?": [null, "*MEASURING_AGENCY*", "Unknown"], - "Consultant": [null, "*MEASURING_AGENCY*", "Unknown"], - "Consulting Pro.": [null, "*MEASURING_AGENCY*", "Unknown"], - "Gamma log unit": [null, "*MEASURING_AGENCY*", "Unknown"], - "Pump company": [null, "*MEASURING_AGENCY*", "Unknown"], - "PumpService": [null, "*MEASURING_AGENCY*", "Unknown"], - "REPORTED": [null, "*MEASURING_AGENCY*", "Unknown"], - "Theis report": [null, "*MEASURING_AGENCY*", "Unknown"], - "Unknown": [null, "*MEASURING_AGENCY*", "Unknown"], - "Unknown; reported": [null, "*MEASURING_AGENCY*", "Unknown"], - "Water operator": [null, "*MEASURING_AGENCY*", "Unknown"], - "WWTP": [null, "*MEASURING_AGENCY*", "Unknown"], - "WWTP personnel": [null, "*MEASURING_AGENCY*", "Unknown"], - "GGI": [null, "Glorieta Geoscience, Inc", "Organization"], "GGI for OSE": [null, "Glorieta Geoscience, Inc", "Organization"], "GGI-OSE": [null, "Glorieta Geoscience, Inc", "Organization"], From e7e4ec2766113485b2f43be048c72ddd2286ed0e Mon Sep 17 00:00:00 2001 From: Jake Ross Date: Tue, 30 Sep 2025 19:40:28 -0600 Subject: [PATCH 29/30] Update transfers/util.py Co-authored-by: Tyler Adam Martinez --- transfers/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transfers/util.py b/transfers/util.py index 1f19366cd..7ffd6a065 100644 --- a/transfers/util.py +++ b/transfers/util.py @@ -94,7 +94,7 @@ def filter_by_welldata_datasource(df: pd.DataFrame) -> pd.DataFrame: _ = next(reader) valid_datasources = [row[0] for row in reader if row[1] == "Yes"] logger.info("Valid WellData Datasources:") - for vd in valid_datasources: + logger.info("\n".join(f" {vd}" for vd in valid_datasources)) logger.info(f" {vd}") return df[df["DataSource"].isin(valid_datasources)] From 252fae2ad738f39c30a4952075b766cac0a438dd Mon Sep 17 00:00:00 2001 From: Jake Ross Date: Tue, 30 Sep 2025 19:41:18 -0600 Subject: [PATCH 30/30] Update transfers/util.py Co-authored-by: Tyler Adam Martinez --- transfers/util.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/transfers/util.py b/transfers/util.py index 7ffd6a065..fd0cc7cd8 100644 --- a/transfers/util.py +++ b/transfers/util.py @@ -328,7 +328,38 @@ def _make_lu_to_lexicon_mapper(self): if self._mappers: return self._mappers + # Lookup tables where CODE maps to MEANING lu_tables = [ + "LU_AltitudeMethod", + "LU_CollectionMethod", + "LU_ConstructionMethod", + "LU_CoordinateAccuracy", + "LU_CoordinateMethod", + "LU_CurrentUse", + "LU_DataQuality", + "LU_DataSource", + "LU_Depth_CompletionSource", + "LU_Discharge_ChemistrySource", + "LU_LevelStatus", + "LU_MajorAnalyte", + "LU_MeasurementMethod", + "LU_MinorTraceAnalyte", + "LU_MonitoringStatus", + "LU_SampleType", + "LU_SiteType", + "LU_Status", + ] + + # Lookup tables intentionally skipped (kept for documentation only) + # Each entry explains why the table is excluded + _lu_tables_skipped = { + "LU_AltitudeDatum": "code is the value, so no need for mapping", + "LU_CoordinateDatum": "code is the value, so no need for mapping", + "LU_FieldNoteTypes": "not being used in the transfers since there are no records", + "LU_Formations": "needs to be cleaned before it can be used", + "LU_Lithology": "needs to be cleaned before it can be used", + "LU_MeasuringAgency": "the abbreviation is what is used in the new schema", + } # "LU_AltitudeDatum", # the code is the value, so no need for mapping "LU_AltitudeMethod", # CODE/MEANING "LU_CollectionMethod", # CODE/MEANING