Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道创建用于地理处理的桌面应用程序并将其存储在 postgis 中所需的一切。我需要从卫星图像中提取值并将其存储在 postgresql 中。所以我的基本问题是我需要使用哪些开源软件来开发它。
您可以使用 JDBC 附加到 Postgres,因此您可以使用 Java 或任何其他可以连接到 postgres 数据库的东西来构建您的桌面应用程序。Postgres 地理空间功能来自于在 postgres 之上安装 PostGIS 函数,因此可以使用任何可以处理 pg 查询的东西来回传递这些函数。如果您希望它基于 Web,您可以使用 PHP。如果您正在进行传统的空间分析,您也可以使用具有本机 PostGIS 连接器的 QGIS,但您不需要创建它,它已经可以在 postgis 中进行地理处理和存储数据。