-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
153 changed files
with
4,568 additions
and
451 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,4 @@ polytope_venv_latest | |
new_updated_numpy_venv | ||
newest-polytope-venv | ||
serializedTree | ||
new_polytope_venv |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
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
File renamed without changes.
File renamed without changes
File renamed without changes
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,41 @@ | ||
# Building Features | ||
|
||
The Polytope software implements a set of base shapes that might be of interest to users. These are detailed [here](../Developer_Guide/shapes.md). | ||
|
||
For many applications however, these shapes are not directly of interest and should rather be used as building blocks for more complex and domain-specific "features", such as timeseries or country areas. | ||
|
||
The main requirement when building such features in Polytope is that the feature should be defined on all dimensions of the provided datacube. | ||
This implies that, when defining lower-dimensional shapes in higher-dimensional datacubes, the remaining axes still need to be specified within the Polytope request (most likely as *Select* shapes). | ||
|
||
For example, for a given datacube with dimensions "level", "step", "latitude" and "longitude", we could query the following shapes: | ||
|
||
- a timeseries of a point which would be defined as | ||
|
||
Request( | ||
Point(["latitude", "longitude"], [[p1_lat, p1_lon]]), | ||
Span("step", start_step, end_step), | ||
Select("level", [level1]) | ||
) | ||
|
||
|
||
- a specific country area which would be defined as | ||
|
||
Request( | ||
Polygon(["latitude", "longitude"], country_points), | ||
Select("step", [step1]), | ||
Select("level", [level1]) | ||
) | ||
|
||
- a flight path which would be defined as | ||
|
||
Request( | ||
Path( | ||
["latitude", "longitude", "level", "step"], | ||
Box( | ||
["latitude", "longitude", "level", "step"], | ||
[0, 0, 0, 0], | ||
[lat_padding, lon_padding, level_padding, step_padding] | ||
), | ||
flight_points | ||
) | ||
) |
2 changes: 1 addition & 1 deletion
2
docs/User_Guide/Example.md → docs/Algorithm/User_Guide/Example.md
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
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
File renamed without changes
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,51 @@ | ||
# Data Portfolio | ||
|
||
Polytope feature extraction only has access to data that is stored on an FDB. The dataset currently available via Polyope feature extraction is the operational forecast. We plan to add Destination Earth Digital Twin data in the future. | ||
|
||
## Operational Forecast Data | ||
|
||
The following values available for each field specified are: | ||
|
||
* `class` : `od` | ||
* `stream` : `enfo` `oper` | ||
* `type` : `fc` `pf` `cf` | ||
* `levtype` : `sfc` `pl` `ml` | ||
* `expver` : `0001` | ||
* `domain` : `g` | ||
* `step` : `0/to/360` (All steps may not be available between `0` and `360`) | ||
|
||
If `type` is `enfo`: | ||
|
||
* `number` : `0/to/50` | ||
|
||
If `levtype` is `pl` or `ml` a `levelist` must be provided: | ||
|
||
* `levelist` : `1/to/1000` | ||
|
||
`pl` and `ml` also only contain a subset of parameters that are available in grid point. These are: | ||
|
||
* `pl` | ||
* `o3` | ||
* `clwc` | ||
* `q` | ||
* `pv` | ||
* `ciwc` | ||
* `cc` | ||
* `ml` | ||
* `q` | ||
* `cat` | ||
* `o3` | ||
* `clwc` | ||
* `ciwc` | ||
* `cc` | ||
* `cswc` | ||
* `crwe` | ||
* `ttpha` | ||
|
||
For `sfc` most `params` will be available but not all. | ||
|
||
Only data that is contained in the operational FDB can be requested via Polytope feature extraction, the FDB usually only contains the last two days of forecasts. | ||
|
||
We sometimes limit the size of requests for area features such as bounding box and polygon to maintain quality of service. | ||
|
||
Access to operational data is limited by our release schedule. |
Oops, something went wrong.