1763 年至 2023 年美国地下水井数据库(USGWD)包括水井用途、位置、深度和容量

举报
此星光明 发表于 2024/04/20 17:26:49 2024/04/20
【摘要】 ​ 简介地下水井是实现地下水监测、开采和使用的重要基础设施,对环境、水安全和经济发展具有重要影响。尽管地下水井非常重要,但美国一直缺乏一个统一的数据库来收集和标准化有关这些水井的特征和位置的信息。为了弥补这一空白,我们创建了一个从各州和联邦机构收集的地下水井记录综合数据库,我们称之为美国地下水井数据库(USGWD)。USGWD 以表格和矢量点两种形式呈现,包含 1420 多万条水井记录,其中...

 简介

地下水井是实现地下水监测、开采和使用的重要基础设施,对环境、水安全和经济发展具有重要影响。尽管地下水井非常重要,但美国一直缺乏一个统一的数据库来收集和标准化有关这些水井的特征和位置的信息。为了弥补这一空白,我们创建了一个从各州和联邦机构收集的地下水井记录综合数据库,我们称之为美国地下水井数据库(USGWD)。USGWD 以表格和矢量点两种形式呈现,包含 1420 多万条水井记录,其中包括水井用途、位置、深度和容量等属性,这些水井的建造时间可追溯到 1763 年至 2023 年。为确保数据的准确性,我们采用了严格的交叉验证步骤。USGWD 是一个宝贵的工具,可帮助我们更好地了解美国各地区和各部门如何获取和管理地下水。

数据集预处理

数据集是以全州范围的摘要形式提供的,在上传 50 个州范围的摘要时,为了便于使用,最终将它们合并为一个单一的特征集合。虽然数据集以地理空间格式和表格格式提供,但形状文件因属性长度截断和 2GB 的大小限制而臭名昭著,因此我们选择了包含空间信息的 CSV 表格数据集。然而,表格数据集本身有很多行没有位置信息,这意味着这些行必须被删除,因此我们对文件进行了重新处理,以便只选择包含水井位置信息的行。

代码

var usgwd = ee.FeatureCollection("projects/sat-io/open-datasets/USGWD-TABULAR-MERGED")

print('Total dataset count merged ',usgwd_merged.size())

// Aggregate histogram and remove any wells which Year well was constructed is known
var histogram = usgwd_merged.filter(ee.Filter.neq('Year Well was Constructed','Unknown')).aggregate_histogram('Year Well was Constructed');
print(histogram)

// Convert histogram to a list of features
var histogramList = ee.List(histogram.keys()).map(function(key){
  return ee.Feature(null, {
    'Year': ee.Number.parse(key),
    'Count': histogram.get(key)
  });
});

// Create a feature collection from the list
var histogramFC = ee.FeatureCollection(histogramList);

// Create a chart
var chart = ui.Chart.feature.byFeature(histogramFC, 'Year', 'Count')
    .setChartType('ColumnChart')
    .setOptions({
      title: 'Well Construction Year Distribution',
      hAxis: {title: 'Year'},
      vAxis: {title: 'Count'},
      colors: ['blue']
    });

// Print chart
print(chart);

var usgwd_states = ee.data.listAssets("projects/sat-io/open-datasets/USGWD-TABULAR");
print('Total Assets in Folder '+ee.List(usgwd_states.assets).size().getInfo(),usgwd_states.assets);

//Add a state adding CA
var california_wells = ee.FeatureCollection("projects/sat-io/open-datasets/USGWD-TABULAR/USGWD_CA")

Map.centerObject(california_wells.first(),9)

// Add the FeatureCollection to the map with the specified style
Map.addLayer(california_wells.style({color: '00008B'}), {}, 'California Groundwater wells');
Map.addLayer(usgwd_merged,{},'United States Groundwater Well Database',false)


单个数据也被输入以供参考,用户可通过使用

var usgwd_states = ee.data.listAssets("projects/sat-io/open-datasets/USGWD-TABULAR");

print('Total of '+ee.List(usgwd_states.assets).size().getInfo()+ ' assets in nodes',usgwd_states.assets);

代码链接

https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:hydrology/US-GROUNDWATER-WELL-DATABASE

License

The datasets are provided under a Creative Commons 4.0 International License.

Provided by: Lin, CY., Miller, A., Waqar, M. et al, (2024)

Curated in GEE by: Samapriya Roy

Keywords: USGWD, Groundwater well, Point of diversion, United States, Water infrastructure

Last updated in GEE: 2024-04-17

引用

Lin, CY., Miller, A., Waqar, M. et al. A database of groundwater wells in the United States. Sci Data 11, 335 (2024).
https://doi.org/10.1038/s41597-024-03186-3

数据引用

Lin, C., A. Miller, M. Waqar, L. Marston (2024). A Database of Groundwater Wells in the United States, HydroShare,
https://doi.org/10.4211/hs.8b02895f02c14dd1a749bcc5584a5c55

网址推荐

数据下载链接

A Database of Groundwater Wells in the United States | CUAHSI HydroShare

0代码在线构建地图应用

​​​​​​​https://sso.mapmost.com/#/login?source_inviter=nClSZANO

机器学习

https://www.cbedai.net/xg 

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。