This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Consulta_DPNRC($cod_parcela) { | |
| $response = Invoke-WebRequest -UseBasicParsing -Uri "http://ovc.catastro.meh.es/ovcservweb/OVCSWLocalizacionRC/OVCCallejero.asmx/Consulta_DNPRC" ` | |
| -Method "POST" ` | |
| -WebSession $session ` | |
| -Headers @{ | |
| "Accept"="text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9" | |
| "Accept-Encoding"="gzip, deflate" | |
| "Accept-Language"="es-419,es;q=0.9,en;q=0.8" | |
| "Cache-Control"="no-cache" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function GetInfo { | |
| param([string]$InputPath) | |
| gdalinfo -json $InputPath | ConvertFrom-JSon -AsHashTable | |
| } | |
| function Urbana { | |
| param( | |
| [string]$InputPath, | |
| [string]$OutputPath, | |
| [String[]]$Bands=(1, 2, 3)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .output wipe.sql | |
| select 'DELETE FROM ' || name || ';' FROM sqlite_master WHERE type='table'; | |
| .output | |
| .read wipe.sql |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Gofer it | |
| smalltalkhubUser: 'PharoExtras' project: 'XMLParserHTML'; | |
| configurationOf: 'XMLParserHTML'; | |
| loadStable. | |
| Gofer it | |
| smalltalkhubUser: 'PharoExtras' project: 'XPath'; | |
| configurationOf: 'XPath'; | |
| loadStable. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :- use_module(library(http/http_open)). | |
| :- use_module(library(http/http_client)). | |
| :- use_module(library(uri)). | |
| :- use_module(library(zip)). | |
| :- use_module(library(pcre)). | |
| :- initialization(main, main). | |
| download(URL, File) :- | |
| print_message(informational, ['Downloading', File]), |
OlderNewer