Revision 4b10f2f601a6361257ac1b3a773d4d9d5b89233c authored by Tom Fischer on 28 August 2023, 07:36:55 UTC, committed by Tom Fischer on 28 August 2023, 07:36:55 UTC
[Tool] Remove points from geometry not used in polylines or surfaces

See merge request ogs/ogs!4702
2 parent s b22aaa4 + bcacb13
Raw File
.devcontainer.json
{
	"name": "ogs-gcc-dev",
	"image": "registry.opengeosys.org/ogs/ogs/vscode:latest",
	"postStartCommand": "nohup bash -c 'cd web; yarn; yarn build; hugo server &'",
	"forwardPorts": [
		1313
	],
	"mounts": [
		"source=devcontainer-cpm-cache,target=/opt/cpm,type=volume",
		"source=devcontainer-ccache-cache,target=/opt/ccache,type=volume",
		"source=${localWorkspaceFolder}/../build,target=${containerWorkspaceFolder}/../build,type=bind"
	],
	"customizations": {
		"vscode": {
			"extensions": [
				"ms-vscode.cmake-tools",
				"ms-vscode.cpptools"
			]
		}
	},
	"remoteUser": "vscode",
	"features": {
		"common": {}
	}
}
back to top