Zie MS Excel bestand: office-script-ct-api.xlsx
voor hoe het script te gebruiken (script is al geincludeerd in xlsx
bestand).
Om te gebruiken open het transformeer tabblad en klik op de transformeer knop.
<# | |
.SYNOPSIS | |
Convert GeoPackage tablenames and columnnames from CamelCase to snake_case. | |
.DESCRIPTION | |
Script to convert GeoPackage tablenames and columnnames from CamelCase to snake_case. Can be useful when exporting INSPIRE compliant datasets to GeoPackage. | |
.PARAMETER inputGPKG | |
Input GeoPackage to convert from CamelCase to snake_case | |
.PARAMETER outputGPKG | |
Output GeoPackage (will be overwritten if exists) | |
#> |
Public Function CFormat(ParamArray arr() As Variant) As String | |
Dim i As Long | |
Dim temp As String | |
temp = CStr(arr(0)) | |
For i = 1 To UBound(arr) | |
myVal = arr(i) | |
If IsNull(myVal) Then | |
myVal = "null" | |
End If | |
Zie MS Excel bestand: office-script-ct-api.xlsx
voor hoe het script te gebruiken (script is al geincludeerd in xlsx
bestand).
Om te gebruiken open het transformeer tabblad en klik op de transformeer knop.
// /etc/nginx/headers.js | |
function headers_json(r) { | |
return JSON.stringify(r.headersIn) | |
} | |
export default {headers_json}; |
yq -P < src/coordinate_transformation_api/assets/config.yaml '{"crs": [.crs | to_entries | .[] | .value.uri="http://www.opengis.net/" + (.key | split(":") | join("/0/"))] | from_entries}' |
import requests | |
import json | |
import time | |
import os | |
import pathlib | |
import argparse | |
from urllib.parse import urlparse | |
def main(api_url, featuretypes, format, bbox_rd=None, geofilter=None): |
MIT License | |
Copyright (c) 2023 Anton Bakker | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
#!/usr/bin/env bash | |
# Bash script voor het ophalen van percelen uit de Kadastrale Kaart WFS aan de hand van een adres, met behulp van de PDOK Locatieserver | |
# Author: [email protected] | |
# Dependencies: | |
# - python3 | |
# - jq | |
# - xmllint (libxml2-utils) | |
# - curl | |
set -euo pipefail |