Skip to content

Instantly share code, notes, and snippets.

View ianlopez1115's full-sized avatar

Ian Lopez ianlopez1115

View GitHub Profile
@ianlopez1115
ianlopez1115 / OTQ-Philippine Helipads.txt
Created September 15, 2022 04:16
Helipads in the Philippines
[out:xml][timeout:500];
{{geocodeArea:Philippines}}->.searchArea;
(
nwr["aeroway"="helipad"](area.searchArea);
);
out body;
>;
out skel qt;
{{style:
@ianlopez1115
ianlopez1115 / OTQ-Merry Christmas.txt
Last active December 30, 2022 11:59
Used to locate street names named Merry or Christmas
[out:xml][timeout:500];
{{geocodeArea:Anyplace}}->.searchArea;
(
way["highway"]["name"~"Merry"](area.searchArea);
way["highway"]["name"~"Christmas"](area.searchArea);
);
out body;
>;
out skel qt;
@ianlopez1115
ianlopez1115 / OTQ-San Pablo, Laguna missing street details.txt
Created January 14, 2023 14:37
Used to locate missing street details in San Pablo, Laguna
[out:xml];/*fixed by auto repair*/
{{geocodeArea:San Pablo, Laguna}}->.searchArea;
(
way["highway"~"motorway|trunk|primary|secondary|tertiary|unclassified|residential|service|link"]["surface"!~"."](area.searchArea);
way["highway"~"motorway|trunk|primary|secondary|tertiary|unclassified|residential|service|link"]["lanes"!~"."](area.searchArea);
way["highway"~"motorway|trunk|primary|secondary|tertiary|unclassified|residential|service|link"]["lit"!~"."](area.searchArea);
);
// print results
out meta;
>;
[out:xml][timeout:500];
{{geocodeArea:Philippines}}->.searchArea;
(
nwr["payment:gcash"="yes"](area.searchArea);
nwr["payment:maya"="yes"](area.searchArea);
);
out meta;
>;
out meta qt;