Search notes:

Overpass API: make statement

[out:csv(
   num,
   txt
)];

make foo   // <--- the type / if output is xml, it becomes the XML's tag name
     num = 42,
     txt ='Hello world';

out;

TODO

In the following query, u(…) is needed to prevent the func_name() must be called in a context where it can evaluate an element error.
rel(13648941);

make x
  count     = u(count_members()),
  tags      = u(count_tags   ()),
  version   = u(version      ()),
  timestamp = u(timestamp    ()),
  changeset = u(changeset    ()),
  user      = u(user         () + ' (' +
                uid          () +  ')')
;

out;

Misc

make cannot take its values from an input-set.

See also

Overpass API: statements

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758868195, '216.73.216.5', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/OpenStreetMap/API/Overpass/statements/make(69): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78