2020-12-11 10:44:26 +02:00
|
|
|
#!/usr/bin/awk -f
|
2020-12-16 00:12:25 +02:00
|
|
|
#
|
|
|
|
# this file works with SEZP circa ~2017 where y coordinate (the 7-digit one) is
|
|
|
|
# first, and the field separator is ','
|
2020-12-11 10:44:26 +02:00
|
|
|
BEGIN {
|
|
|
|
FS = ","
|
|
|
|
}
|
|
|
|
|
|
|
|
$1 > ymin && $1 < ymax && $2 > xmin && $2 < xmax {
|
|
|
|
print $2 "," $1 "," $3
|
|
|
|
}
|