Postgresql Postgres-Postgis中的时间序列数据

Postgresql Postgres-Postgis中的时间序列数据,postgresql,time-series,gis,postgis,web-feature-service,Postgresql,Time Series,Gis,Postgis,Web Feature Service,我有一个要存储在Postgresql PostGIS数据库中的时间序列数据 数据结构是这样的 ID t_1 t_2 t_3, ... t_n 1 33.4 444.4 555.4 ... 644.5 2 36.4 344.4 255.4 ... 744.5 3 45.4 845.4 455.4 ... 844.5 4 66.4 784.4 655.4 ... 344.5 5 44.4 644.4 755.4 ... 544.5 我有多行表示建筑ID,多列表示时间戳。我需要将这

我有一个要存储在Postgresql PostGIS数据库中的时间序列数据

数据结构是这样的

ID t_1  t_2   t_3,  ... t_n
1  33.4 444.4 555.4 ... 644.5
2  36.4 344.4 255.4 ... 744.5
3  45.4 845.4 455.4 ... 844.5
4  66.4 784.4 655.4 ... 344.5
5  44.4 644.4 755.4 ... 544.5
我有多行表示建筑ID,多列表示时间戳。我需要将这些数据存储在DB中,以便对它们进行详细说明,并通过web gis中的WFS服务提供值


哪种方法最有效?

最有效的方法实际上可能是根本不使用WFS,而是采用SOS实施。为此,您可能需要查看52north SOS客户机。它是按照您描述的方式构建的。您可能还想看看InfluxDB,它是一个专门为时间序列数据设计的数据库系统:而不是使用postgres,因为关系数据库不太擅长处理时间序列数据