-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add spatial interpolation with
xr_interpolate
notebook (#1233)
* Add ensemble tide modelling functionality to model_tides * Update test_coastal.py * Remove test * Updates to IDW, xr_interpolate and ensemble tide modelling code" * Doco updates * Switch ensemble rankings from high to low = good * Update docstring * Fix doco * Add interpolation notebook * Remove coastal files from branch * Add points data * Review feedback; * Add p param to IDW * Fix test
- Loading branch information
Showing
6 changed files
with
958 additions
and
39 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
Supplementary_data/Interpolation/interpolation_points.geojson
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"type": "FeatureCollection", | ||
"name": "interpolation_points", | ||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, | ||
"features": [ | ||
{ "type": "Feature", "properties": { "z": 1 }, "geometry": { "type": "Point", "coordinates": [ 149.041358543960143, -35.381110059879738 ] } }, | ||
{ "type": "Feature", "properties": { "z": 2 }, "geometry": { "type": "Point", "coordinates": [ 149.050043769856671, -35.376996005507706 ] } }, | ||
{ "type": "Feature", "properties": { "z": 3 }, "geometry": { "type": "Point", "coordinates": [ 149.069699807411894, -35.371053482525888 ] } }, | ||
{ "type": "Feature", "properties": { "z": 4 }, "geometry": { "type": "Point", "coordinates": [ 149.077470799003521, -35.363739608086725 ] } }, | ||
{ "type": "Feature", "properties": { "z": 5 }, "geometry": { "type": "Point", "coordinates": [ 149.081584853375546, -35.345454921988825 ] } }, | ||
{ "type": "Feature", "properties": { "z": 6 }, "geometry": { "type": "Point", "coordinates": [ 149.087070259204921, -35.3125424870126 ] } }, | ||
{ "type": "Feature", "properties": { "z": 7 }, "geometry": { "type": "Point", "coordinates": [ 149.092098547881847, -35.286029692170644 ] } }, | ||
{ "type": "Feature", "properties": { "z": 8 }, "geometry": { "type": "Point", "coordinates": [ 149.098041070863644, -35.268659240377637 ] } }, | ||
{ "type": "Feature", "properties": { "z": 9 }, "geometry": { "type": "Point", "coordinates": [ 149.108554765369945, -35.256317077261549 ] } }, | ||
{ "type": "Feature", "properties": { "z": 10 }, "geometry": { "type": "Point", "coordinates": [ 149.129582154382547, -35.251288788584631 ] } }, | ||
{ "type": "Feature", "properties": { "z": 11 }, "geometry": { "type": "Point", "coordinates": [ 149.148781074785319, -35.252660140041975 ] } }, | ||
{ "type": "Feature", "properties": { "z": 12 }, "geometry": { "type": "Point", "coordinates": [ 149.162494589358772, -35.259516897328687 ] } }, | ||
{ "type": "Feature", "properties": { "z": 13 }, "geometry": { "type": "Point", "coordinates": [ 149.180779275456672, -35.257688428718893 ] } }, | ||
{ "type": "Feature", "properties": { "z": 14 }, "geometry": { "type": "Point", "coordinates": [ 149.190378735658072, -35.247174734212599 ] } }, | ||
{ "type": "Feature", "properties": { "z": 15 }, "geometry": { "type": "Point", "coordinates": [ 149.198149727249671, -35.226147345200012 ] } }, | ||
{ "type": "Feature", "properties": { "z": 16 }, "geometry": { "type": "Point", "coordinates": [ 149.213691710432897, -35.211976713474137 ] } }, | ||
{ "type": "Feature", "properties": { "z": 17 }, "geometry": { "type": "Point", "coordinates": [ 149.229233693616095, -35.20374860473008 ] } } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.