-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #486 from geoadmin/develop
New Release v1.29.0 - #minor
- Loading branch information
Showing
25 changed files
with
1,516 additions
and
581 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
66 changes: 66 additions & 0 deletions
66
app/stac_api/migrations/0057_item_forecast_duration_item_forecast_horizon_and_more.py
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,66 @@ | ||
# Generated by Django 5.0.8 on 2024-11-28 13:20 | ||
|
||
from django.db import migrations | ||
from django.db import models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('stac_api', '0056_alter_collection_total_data_size_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='item', | ||
name='forecast_duration', | ||
field=models.DurationField( | ||
blank=True, | ||
help_text= | ||
"If the forecast is not only for a specific instance in time but instead is for a certain period, you can specify the length here. Formatted as ISO 8601 duration, e.g. 'PT3H' for a 3-hour accumulation. If not given, assumes that the forecast is for an instance in time as if this was set to PT0S (0 seconds).", | ||
null=True | ||
), | ||
), | ||
migrations.AddField( | ||
model_name='item', | ||
name='forecast_horizon', | ||
field=models.DurationField( | ||
blank=True, | ||
help_text= | ||
"The time between the reference datetime and the forecast datetime.Formatted as ISO 8601 duration, e.g. 'PT6H' for a 6-hour forecast.", | ||
null=True | ||
), | ||
), | ||
migrations.AddField( | ||
model_name='item', | ||
name='forecast_mode', | ||
field=models.CharField( | ||
blank=True, | ||
choices=[('ctrl', 'Control run'), ('perturb', 'Perturbed run')], | ||
default=None, | ||
help_text= | ||
'Denotes whether the data corresponds to the control run or perturbed runs.', | ||
null=True | ||
), | ||
), | ||
migrations.AddField( | ||
model_name='item', | ||
name='forecast_param', | ||
field=models.CharField( | ||
blank=True, | ||
help_text= | ||
'Name of the model parameter that corresponds to the data, e.g. `T` (temperature), `P` (pressure), `U`/`V`/`W` (windspeed in three directions).', | ||
null=True | ||
), | ||
), | ||
migrations.AddField( | ||
model_name='item', | ||
name='forecast_reference_datetime', | ||
field=models.DateTimeField( | ||
blank=True, | ||
help_text= | ||
"The reference datetime: i.e. predictions for times after this point occur in the future. Predictions prior to this time represent 'hindcasts', predicting states that have already occurred. This must be in UTC. It is formatted like '2022-08-12T00:00:00Z'.", | ||
null=True | ||
), | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
app/stac_api/migrations/0058_collectionlink_hreflang_itemlink_hreflang_and_more.py
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,29 @@ | ||
# Generated by Django 5.0.8 on 2024-12-05 10:23 | ||
|
||
from django.db import migrations | ||
from django.db import models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('stac_api', '0057_item_forecast_duration_item_forecast_horizon_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='collectionlink', | ||
name='hreflang', | ||
field=models.CharField(blank=True, max_length=32, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='itemlink', | ||
name='hreflang', | ||
field=models.CharField(blank=True, max_length=32, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='landingpagelink', | ||
name='hreflang', | ||
field=models.CharField(blank=True, max_length=32, null=True), | ||
), | ||
] |
Oops, something went wrong.