From 2b39f3b0af0ce4f8766c95432fb3b12e5a409821 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Thu, 16 Apr 2020 19:18:39 +0200 Subject: [PATCH 1/2] Add Black Sea Blockage This feature makes sure that the Black Sea is not included in MPAS meshes. --- .../Black_Sea_Blockage/transect.geojson | 37 +++++++++++++++++++ geometric_features/features_and_tags.json | 4 ++ 2 files changed, 41 insertions(+) create mode 100644 geometric_data/ocean/transect/Black_Sea_Blockage/transect.geojson diff --git a/geometric_data/ocean/transect/Black_Sea_Blockage/transect.geojson b/geometric_data/ocean/transect/Black_Sea_Blockage/transect.geojson new file mode 100644 index 00000000..212cd7b0 --- /dev/null +++ b/geometric_data/ocean/transect/Black_Sea_Blockage/transect.geojson @@ -0,0 +1,37 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": "Black Sea Blockage", + "tags": "Black_Sea_Blockage;Critical_Land_Blockage", + "object": "transect", + "component": "ocean", + "author": "Xylar", + "height": "100.0" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.092041, + 41.360319 + ], + [ + 28.718262, + 41.186922 + ], + [ + 29.479065, + 41.037931 + ], + [ + 30.149231, + 40.957086 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/geometric_features/features_and_tags.json b/geometric_features/features_and_tags.json index 48cb2fa6..28f952a9 100644 --- a/geometric_features/features_and_tags.json +++ b/geometric_features/features_and_tags.json @@ -1526,6 +1526,10 @@ "Bering Strait": [ "standard_transport_sections" ], + "Black Sea Blockage": [ + "Black_Sea_Blockage", + "Critical_Land_Blockage" + ], "Davis Strait": [ "standard_transport_sections" ], From 4be46cd740efa9bb56226234a8d4269a2f04a64f Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Sun, 19 Apr 2020 11:15:16 +0200 Subject: [PATCH 2/2] Update to v0.1.7 --- geometric_features/__init__.py | 2 +- recipe/meta.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/geometric_features/__init__.py b/geometric_features/__init__.py index b142a547..0cb7bd92 100644 --- a/geometric_features/__init__.py +++ b/geometric_features/__init__.py @@ -6,5 +6,5 @@ from geometric_features.feature_collection import FeatureCollection, \ read_feature_collection -__version_info__ = (0, 1, 6) +__version_info__ = (0, 1, 7) __version__ = '.'.join(str(vi) for vi in __version_info__) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 7795dc8d..5472c026 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,6 +1,6 @@ {% set name = "geometric_features" %} -{% set version = "0.1.6" %} -{% set build = 1 %} +{% set version = "0.1.7" %} +{% set build = 0 %} {% if with_data != "True" %} # prioritize no data via build number