Skip to content

Commit

Permalink
add new configuration for new forge-py (#94)
Browse files Browse the repository at this point in the history
* add new configuration for new forge-py

* fixed indent

---------

Co-authored-by: James Wood <8115931+jamesfwood@users.noreply.github.com>
  • Loading branch information
sliu008 and jamesfwood authored Nov 26, 2024
1 parent 9af9855 commit 0502209
Show file tree
Hide file tree
Showing 7 changed files with 108 additions and 37 deletions.
32 changes: 24 additions & 8 deletions config-files/AVHRR19_G-NAVO-L2P-v1.0.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"shortName": "AVHRR19_G-NAVO-L2P-v1.0",
"latVar": "lat",
"lonVar": "lon",
"timeVar": "time",
Expand All @@ -10,13 +11,28 @@
]
},
"footprint": {
"alpha": 0.06,
"thinning_fac": 220,
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
"strategy": "open_cv",
"alpha_shape": {
"alpha": 0.2,
"thinning": {
"method": "bin_avg",
"value": [
1.5,
1.5
]
},
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
},
"open_cv": {
"pixel_height":1000,
"simplify":0.3,
"min_area": 30,
"fill_kernel": [30,30]
}
},
"footprinter": "forge-py",
"imgVariables": [
Expand Down Expand Up @@ -73,4 +89,4 @@
"ppd": 4,
"res": 8
}
}
}
24 changes: 17 additions & 7 deletions config-files/AVHRRMTA_G-NAVO-L2P-v1.0.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"shortName": "AVHRRMTA_G-NAVO-L2P-v1.0",
"latVar": "lat",
"lonVar": "lon",
"timeVar": "time",
Expand All @@ -10,13 +11,22 @@
]
},
"footprint": {
"alpha": 0.035,
"thinning_fac": 300,
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
"strategy": "alpha_shape",
"alpha_shape": {
"alpha": 0.1,
"thinning": {
"method": "bin_avg",
"value": [
1.5,
1.5
]
},
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
}
},
"footprinter": "forge-py",
"imgVariables": [
Expand Down
25 changes: 17 additions & 8 deletions config-files/AVHRRMTA_G-NAVO-L2P-v2.0.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@
]
},
"footprint": {
"alpha": 0.04,
"thinning_fac": 200,
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
"strategy": "alpha_shape",
"alpha_shape": {
"alpha": 0.065,
"thinning": {
"method": "bin_avg",
"value": [
1.5,
1.5
]
},
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
}
},
"footprinter": "forge-py",
"imgVariables": [
Expand Down Expand Up @@ -74,4 +83,4 @@
"ppd": 16,
"res": 8
}
}
}
21 changes: 14 additions & 7 deletions config-files/AVHRRMTB_G-NAVO-L2P-v1.0.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"shortName": "AVHRRMTB_G-NAVO-L2P-v1.0",
"latVar": "lat",
"lonVar": "lon",
"timeVar": "time",
Expand All @@ -10,13 +11,19 @@
]
},
"footprint": {
"alpha": 0.03,
"thinning_fac": 240,
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
"strategy": "alpha_shape",
"alpha_shape": {
"alpha": 0.03,
"thinning": {
"method": "standard",
"value": 240
},
"cutoff_lat": 80,
"smooth_poles": [
78,
80
]
}
},
"footprinter": "forge-py",
"imgVariables": [
Expand Down
13 changes: 11 additions & 2 deletions config-files/PRIM_SMAP_L2_V1.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,17 @@
]
},
"footprint": {
"alpha": 0.35,
"thinning_fac": 4
"strategy": "alpha_shape",
"alpha_shape": {
"alpha": 0.035,
"thinning": {
"method": "bin_avg",
"value": [
1.5,
1.5
]
}
}
},
"footprinter": "forge-py",
"imgVariables": [
Expand Down
15 changes: 13 additions & 2 deletions config-files/SCATSAT1_ESDR_L2_WIND_STRESS_V1.1.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,19 @@
]
},
"footprint": {
"thinning_fac": 30,
"alpha": 0.035
"strategy": "alpha_shape",
"alpha_shape": {
"alpha": 0.035,
"thinning": {
"method": "standard",
"value": 30
},
"cutoff_lat": 88,
"smooth_poles": [
82,
90
]
}
},
"footprinter": "forge-py",
"imgVariables": [
Expand Down
15 changes: 12 additions & 3 deletions config-files/SMAP_RSS_L2_SSS_V5.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
{
"shortName": "SMAP_RSS_L2_SSS_V5",
"latVar": "cellat",
"lonVar": "cellon",
"timeVar": "time",
"is360": true,
"tolerance": 0.4,
"footprint": {
"alpha": 0.03,
"thinning_fac": 30
"strategy": "alpha_shape",
"alpha_shape": {
"alpha": 0.03,
"thinning": {
"method": "bin_avg",
"value": [
0.75,
0.75
]
}
}
},
"footprinter": "forge-py",
"imgVariables": [
Expand Down

0 comments on commit 0502209

Please sign in to comment.