add clip-2009.awk
This commit is contained in:
11
contours/clip-2017.awk
Executable file
11
contours/clip-2017.awk
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/awk -f
|
||||
#
|
||||
# this file works with SEZP circa ~2017 where y coordinate (the 7-digit one) is
|
||||
# first, and the field separator is ','
|
||||
BEGIN {
|
||||
FS = ","
|
||||
}
|
||||
|
||||
$1 > ymin && $1 < ymax && $2 > xmin && $2 < xmax {
|
||||
print $2 "," $1 "," $3
|
||||
}
|
||||
Reference in New Issue
Block a user