diff --git a/Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska.sql b/Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska.sql new file mode 100644 index 00000000..8be201a8 --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska.sql @@ -0,0 +1,73 @@ +DROP TABLE IF EXISTS publish.mrf_gfs_10day_max_high_flow_magnitude_ak; +WITH high_flow_mag AS ( + SELECT maxflows_10day.feature_id, + maxflows_3day.discharge_cfs AS maxflow_3day_cfs, + maxflows_5day.discharge_cfs AS maxflow_5day_cfs, + maxflows_10day.discharge_cfs AS maxflow_10day_cfs, + maxflows_10day.nwm_vers, + maxflows_10day.reference_time, + CASE + WHEN maxflows_3day.discharge_cfs >= thresholds.rf_50_0_17c THEN '2'::text + WHEN maxflows_3day.discharge_cfs >= thresholds.rf_25_0_17c THEN '4'::text + WHEN maxflows_3day.discharge_cfs >= thresholds.rf_10_0_17c THEN '10'::text + WHEN maxflows_3day.discharge_cfs >= thresholds.rf_5_0_17c THEN '20'::text + WHEN maxflows_3day.discharge_cfs >= thresholds.rf_2_0_17c THEN '50'::text + WHEN maxflows_3day.discharge_cfs >= thresholds.high_water_threshold THEN '>50'::text + ELSE NULL::text + END AS recur_cat_3day, + CASE + WHEN maxflows_5day.discharge_cfs >= thresholds.rf_50_0_17c THEN '2'::text + WHEN maxflows_5day.discharge_cfs >= thresholds.rf_25_0_17c THEN '4'::text + WHEN maxflows_5day.discharge_cfs >= thresholds.rf_10_0_17c THEN '10'::text + WHEN maxflows_5day.discharge_cfs >= thresholds.rf_5_0_17c THEN '20'::text + WHEN maxflows_5day.discharge_cfs >= thresholds.rf_2_0_17c THEN '50'::text + WHEN maxflows_5day.discharge_cfs >= thresholds.high_water_threshold THEN '>50'::text + ELSE NULL::text + END AS recur_cat_5day, + CASE + WHEN maxflows_10day.discharge_cfs >= thresholds.rf_50_0_17c THEN '2'::text + WHEN maxflows_10day.discharge_cfs >= thresholds.rf_25_0_17c THEN '4'::text + WHEN maxflows_10day.discharge_cfs >= thresholds.rf_10_0_17c THEN '10'::text + WHEN maxflows_10day.discharge_cfs >= thresholds.rf_5_0_17c THEN '20'::text + WHEN maxflows_10day.discharge_cfs >= thresholds.rf_2_0_17c THEN '50'::text + WHEN maxflows_10day.discharge_cfs >= thresholds.high_water_threshold THEN '>50'::text + ELSE NULL::text + END AS recur_cat_10day, + thresholds.high_water_threshold AS high_water_threshold, + thresholds.rf_2_0_17c AS flow_2yr, + thresholds.rf_5_0_17c AS flow_5yr, + thresholds.rf_10_0_17c AS flow_10yr, + thresholds.rf_25_0_17c AS flow_25yr, + thresholds.rf_50_0_17c AS flow_50yr + FROM cache.max_flows_mrf_gfs_10day_ak AS maxflows_10day + JOIN cache.max_flows_mrf_gfs_5day_ak AS maxflows_5day ON maxflows_10day.feature_id = maxflows_5day.feature_id + JOIN cache.max_flows_mrf_gfs_3day_ak AS maxflows_3day ON maxflows_10day.feature_id = maxflows_3day.feature_id + JOIN derived.recurrence_flows_ak thresholds ON maxflows_10day.feature_id = thresholds.feature_id + WHERE (thresholds.high_water_threshold > 0::double precision) AND maxflows_10day.discharge_cfs >= thresholds.high_water_threshold + ) + +SELECT channels.feature_id, + channels.feature_id::TEXT AS feature_id_str, + channels.strm_order, + channels.name, + channels.huc6, + 'AK' as state, + high_flow_mag.nwm_vers, + high_flow_mag.reference_time, + high_flow_mag.maxflow_3day_cfs, + high_flow_mag.maxflow_5day_cfs, + high_flow_mag.maxflow_10day_cfs, + high_flow_mag.recur_cat_3day, + high_flow_mag.recur_cat_5day, + high_flow_mag.recur_cat_10day, + high_flow_mag.high_water_threshold, + high_flow_mag.flow_2yr, + high_flow_mag.flow_5yr, + high_flow_mag.flow_10yr, + high_flow_mag.flow_25yr, + high_flow_mag.flow_50yr, + to_char(now()::timestamp without time zone, 'YYYY-MM-DD HH24:MI:SS UTC') AS update_time, + channels.geom +INTO publish.mrf_gfs_10day_max_high_flow_magnitude_ak +FROM derived.channels_alaska channels +JOIN high_flow_mag ON channels.feature_id = high_flow_mag.feature_id; \ No newline at end of file diff --git a/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_ak.yml b/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_ak.yml new file mode 100644 index 00000000..0e0f2121 --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_ak.yml @@ -0,0 +1,35 @@ +product: mrf_gfs_10day_max_high_flow_magnitude_ak +configuration: medium_range_alaska_mem1 +product_type: "vector" +run: true + +ingest_files: + - file_format: common/data/model/com/nwm/{{variable:NWM_DATAFLOW_VERSION}}/nwm.{{datetime:%Y%m%d}}/medium_range_alaska_mem1/nwm.t{{datetime:%H}}z.medium_range.channel_rt_1.f{{range:3,243,3,%03d}}.alaska.nc + file_step: None + file_window: None + target_table: ingest.nwm_channel_rt_mrf_gfs_mem1 + target_keys: (feature_id, streamflow) + +db_max_flows: + - name: mrf_gfs_3day_max_flows_ak + target_table: cache.max_flows_mrf_gfs_3day_ak + target_keys: (feature_id, streamflow) + method: database + max_flows_sql_file: mrf_gfs_3day_max_flows_ak + - name: mrf_gfs_5day_max_flows_ak + target_table: cache.max_flows_mrf_gfs_5day_ak + target_keys: (feature_id, streamflow) + method: database + max_flows_sql_file: mrf_gfs_5day_max_flows_ak + - name: mrf_gfs_10day_max_flows_ak + target_table: cache.max_flows_mrf_gfs_10day_ak + target_keys: (feature_id, streamflow) + method: database + max_flows_sql_file: mrf_gfs_10day_max_flows_ak + +postprocess_sql: + - sql_file: mrf_gfs_10day_max_high_flow_magnitude_ak + target_table: publish.mrf_gfs_10day_max_high_flow_magnitude_ak + +services: + - mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa diff --git a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.mapx b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.mapx new file mode 100644 index 00000000..c38513be --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.mapx @@ -0,0 +1,2921 @@ +{ + "type" : "CIMMapDocument", + "version" : "2.7.0", + "build" : 26828, + "mapDefinition" : { + "type" : "CIMMap", + "name" : "NWM Medium-Range Max High Flow Magnitude Forecast - Alaska", + "uRI" : "CIMPATH=map/map.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "metadataURI" : "CIMPATH=Metadata/7ba4bd30be7a13d31d7129121cc9508c.xml", + "useSourceMetadata" : true, + "illumination" : { + "type" : "CIMIlluminationProperties", + "ambientLight" : 75, + "sunPositionX" : -0.61237243569579003, + "sunPositionY" : 0.61237243569579003, + "sunPositionZ" : 0.5, + "illuminationSource" : "AbsoluteSunPosition", + "sunAzimuth" : 315, + "sunAltitude" : 30, + "showStars" : true, + "enableAmbientOcclusion" : true, + "enableEyeDomeLighting" : true + }, + "layers" : [ + "CIMPATH=m_medium_range_max_high_flow_magnitude_forecast___alaska/cessing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak.xml", + "CIMPATH=m_medium_range_max_high_flow_magnitude_forecast___alaska/ssing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak_1.xml", + "CIMPATH=m_medium_range_max_high_flow_magnitude_forecast___alaska/ssing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak_2.xml" + ], + "defaultViewingMode" : "Map", + "mapType" : "Map", + "defaultExtent" : { + "xmin" : -17626285.5879838727, + "ymin" : 7673693.158838707, + "xmax" : -15244698.5920161288, + "ymax" : 9679857.5741612874, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "elevationSurfaces" : [ + { + "type" : "CIMMapElevationSurface", + "elevationMode" : "BaseGlobeSurface", + "name" : "Ground", + "verticalExaggeration" : 1, + "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}", + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 255, + 255, + 100 + ] + }, + "surfaceTINShadingMode" : "Smooth", + "visibility" : true, + "expanded" : false + } + ], + "generalPlacementProperties" : { + "type" : "CIMMaplexGeneralPlacementProperties", + "invertedLabelTolerance" : 2, + "unplacedLabelColor" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 0, + 0, + 100 + ] + }, + "keyNumberGroups" : [ + { + "type" : "CIMMaplexKeyNumberGroup", + "delimiterCharacter" : ".", + "horizontalAlignment" : "Left", + "maximumNumberOfLines" : 20, + "minimumNumberOfLines" : 2, + "name" : "Default", + "numberResetType" : "None", + "keyNumberMethod" : "PreventUnplacedLabels" + } + ], + "placementQuality" : "High" + }, + "snappingProperties" : { + "type" : "CIMSnappingProperties", + "xYTolerance" : 10, + "xYToleranceUnit" : "SnapXYToleranceUnitPixel", + "snapToSketchEnabled" : true, + "snapRequestType" : "SnapRequestType_GeometricAndVisualSnapping", + "isZSnappingEnabled" : true + }, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "timeDisplay" : { + "type" : "CIMMapTimeDisplay", + "defaultTimeIntervalUnits" : "esriTimeUnitsUnknown", + "timeValue" : { + "type" : "TimeExtent", + "start" : null, + "end" : null, + "empty" : false + }, + "timeRelation" : "esriTimeRelationOverlaps" + }, + "colorModel" : "RGB", + "scales" : [ + { + "type" : "CIMScale", + "value" : 1000 + }, + { + "type" : "CIMScale", + "value" : 5000 + }, + { + "type" : "CIMScale", + "value" : 10000 + }, + { + "type" : "CIMScale", + "value" : 24000 + }, + { + "type" : "CIMScale", + "value" : 50000 + }, + { + "type" : "CIMScale", + "value" : 100000 + }, + { + "type" : "CIMScale", + "value" : 300000 + }, + { + "type" : "CIMScale", + "value" : 500000 + }, + { + "type" : "CIMScale", + "value" : 1000000 + }, + { + "type" : "CIMScale", + "value" : 3000000 + }, + { + "type" : "CIMScale", + "value" : 5000000 + }, + { + "type" : "CIMScale", + "value" : 20000000 + }, + { + "type" : "CIMScale", + "value" : 100000000 + } + ], + "scaleFormat" : { + "type" : "CIMScaleFormat", + "formatType" : "Absolute", + "separator" : ":", + "decimalPlacesThreshold" : 100, + "decimalPlaces" : 2, + "showThousandSeparator" : true, + "pageUnitValue" : 1, + "equalsSign" : "=" + }, + "scaleDisplayFormat" : "Value", + "clippingMode" : "None", + "nearPlaneClipDistanceMode" : "Automatic", + "rGBColorProfile" : "sRGB IEC61966-2-1 noBPC", + "cMYKColorProfile" : "U.S. Web Coated (SWOP) v2" + }, + "layerDefinitions" : [ + { + "type" : "CIMFeatureLayer", + "name" : "3 Days - Est. Annual Exceedance Probability", + "uRI" : "CIMPATH=m_medium_range_max_high_flow_magnitude_forecast___alaska/cessing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{A4AEB3CF-5631-44E1-AF4B-0734E483B9CC}" + }, + "layerType" : "Operational", + "showLegends" : true, + "visibility" : false, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "autoGenerateFeatureTemplates" : true, + "featureElevationExpression" : "0", + "featureTable" : { + "type" : "CIMFeatureTable", + "displayField" : "name", + "editable" : true, + "fieldDescriptions" : [ + { + "type" : "CIMFieldDescription", + "alias" : "oid", + "fieldName" : "oid", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "feature_id", + "fieldName" : "feature_id", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Feature ID", + "fieldName" : "feature_id_str", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Stream Order", + "fieldName" : "strm_order", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Name", + "fieldName" : "name", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "USGS HUC6", + "fieldName" : "huc6", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "State", + "fieldName" : "state", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Version", + "fieldName" : "nwm_vers", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Reference Time", + "fieldName" : "reference_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Max Streamflow (cfs)", + "fieldName" : "maxflow_3day_cfs", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Annual Exceedance Probability (%)", + "fieldName" : "recur_cat_3day", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Threshold (cfs)", + "fieldName" : "high_water_threshold", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "50% Streamflow (cfs)", + "fieldName" : "flow_2yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "20% Streamflow (cfs)", + "fieldName" : "flow_5yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "10% Streamflow (cfs)", + "fieldName" : "flow_10yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "4% Streamflow (cfs)", + "fieldName" : "flow_25yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "2% Streamflow (cfs)", + "fieldName" : "flow_50yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Update Time", + "fieldName" : "update_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "geom", + "fieldName" : "geom", + "visible" : true, + "searchMode" : "Exact" + } + ], + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6842576a6a5a39314b54304e496168784a6234325a647169495352786a6e584258536444736c426865764d3141745a2f684b523732646735527970414d627276362a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", + "workspaceFactory" : "SDE", + "dataset" : "vizprocessing.publish.%mrf_gfs_10day_max_high_flow_magnitude_ak", + "datasetType" : "esriDTFeatureClass", + "sqlQuery" : "select oid,feature_id,feature_id_str,strm_order,name,huc6,state,nwm_vers,reference_time,maxflow_3day_cfs,recur_cat_3day,high_water_threshold,flow_2yr,flow_5yr,flow_10yr,flow_25yr,flow_50yr,update_time,geom from vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak WHERE recur_cat_3day IS NOT NULL", + "srid" : "3857", + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "oIDFields" : "oid", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17223450.1043, + "ymin" : 8100880.91189999878, + "xmax" : -15647534.0757, + "ymax" : 9252669.82109999657, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeInteger", + "alias" : "oid" + }, + { + "name" : "feature_id", + "type" : "esriFieldTypeDouble", + "alias" : "feature_id" + }, + { + "name" : "feature_id_str", + "type" : "esriFieldTypeString", + "alias" : "feature_id_str", + "length" : 60000 + }, + { + "name" : "strm_order", + "type" : "esriFieldTypeInteger", + "alias" : "strm_order" + }, + { + "name" : "name", + "type" : "esriFieldTypeString", + "alias" : "name", + "length" : 60000 + }, + { + "name" : "huc6", + "type" : "esriFieldTypeString", + "alias" : "huc6", + "length" : 60000 + }, + { + "name" : "state", + "type" : "esriFieldTypeString", + "alias" : "state", + "length" : 60000 + }, + { + "name" : "nwm_vers", + "type" : "esriFieldTypeDouble", + "alias" : "nwm_vers" + }, + { + "name" : "reference_time", + "type" : "esriFieldTypeString", + "alias" : "reference_time", + "length" : 60000 + }, + { + "name" : "maxflow_3day_cfs", + "type" : "esriFieldTypeDouble", + "alias" : "maxflow_3day_cfs" + }, + { + "name" : "recur_cat_3day", + "type" : "esriFieldTypeString", + "alias" : "recur_cat_3day", + "length" : 60000 + }, + { + "name" : "high_water_threshold", + "type" : "esriFieldTypeDouble", + "alias" : "high_water_threshold" + }, + { + "name" : "flow_2yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_2yr" + }, + { + "name" : "flow_5yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_5yr" + }, + { + "name" : "flow_10yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_10yr" + }, + { + "name" : "flow_25yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_25yr" + }, + { + "name" : "flow_50yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_50yr" + }, + { + "name" : "update_time", + "type" : "esriFieldTypeString", + "alias" : "update_time", + "length" : 60000 + }, + { + "name" : "geom", + "type" : "esriFieldTypeGeometry", + "alias" : "geom", + "geometryDef" : { + "avgNumPoints" : 0, + "geometryType" : "esriGeometryPolyline", + "hasM" : false, + "hasZ" : false, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + } + } + ], + "spatialStorageType" : 8 + }, + "studyAreaSpatialRel" : "esriSpatialRelUndefined", + "searchOrder" : "esriSearchOrderSpatial" + }, + "htmlPopupEnabled" : true, + "selectable" : true, + "featureCacheType" : "Session", + "enableDisplayFilters" : true, + "displayFilters" : [ + { + "type" : "CIMDisplayFilter", + "name" : "All Streams", + "whereClause" : "strm_order >= 1", + "minScale" : 300000 + }, + { + "type" : "CIMDisplayFilter", + "name" : "Large Streams", + "whereClause" : "strm_order >= 4", + "maxScale" : 3000000 + }, + { + "type" : "CIMDisplayFilter", + "name" : "Medium Streams", + "whereClause" : "strm_order >= 3", + "minScale" : 3000000, + "maxScale" : 1000000 + }, + { + "type" : "CIMDisplayFilter", + "name" : "Small Streams", + "whereClause" : "strm_order >= 2", + "minScale" : 1000000, + "maxScale" : 300000 + } + ], + "displayFiltersType" : "ByScale", + "featureBlendingMode" : "Alpha", + "labelClasses" : [ + { + "type" : "CIMLabelClass", + "expression" : "$feature.Name", + "expressionEngine" : "Arcade", + "featuresToLabel" : "AllVisibleFeatures", + "maplexLabelPlacementProperties" : { + "type" : "CIMMaplexLabelPlacementProperties", + "featureType" : "Line", + "avoidPolygonHoles" : true, + "canOverrunFeature" : true, + "canPlaceLabelOutsidePolygon" : true, + "canRemoveOverlappingLabel" : true, + "canStackLabel" : true, + "connectionType" : "MinimizeLabels", + "constrainOffset" : "AboveLine", + "contourAlignmentType" : "Page", + "contourLadderType" : "Straight", + "contourMaximumAngle" : 90, + "enableConnection" : true, + "featureWeight" : 0, + "fontHeightReductionLimit" : 4, + "fontHeightReductionStep" : 0.5, + "fontWidthReductionLimit" : 90, + "fontWidthReductionStep" : 5, + "graticuleAlignmentType" : "Straight", + "keyNumberGroupName" : "Default", + "labelBuffer" : 15, + "labelLargestPolygon" : true, + "labelPriority" : -1, + "labelStackingProperties" : { + "type" : "CIMMaplexLabelStackingProperties", + "stackAlignment" : "ChooseBest", + "maximumNumberOfLines" : 3, + "minimumNumberOfCharsPerLine" : 3, + "maximumNumberOfCharsPerLine" : 24, + "separators" : [ + { + "type" : "CIMMaplexStackingSeparator", + "separator" : " ", + "splitAfter" : true + }, + { + "type" : "CIMMaplexStackingSeparator", + "separator" : ",", + "visible" : true, + "splitAfter" : true + } + ] + }, + "lineFeatureType" : "General", + "linePlacementMethod" : "OffsetStraightFromLine", + "maximumLabelOverrun" : 16, + "maximumLabelOverrunUnit" : "Point", + "minimumFeatureSizeUnit" : "Map", + "multiPartOption" : "OneLabelPerFeature", + "offsetAlongLineProperties" : { + "type" : "CIMMaplexOffsetAlongLineProperties", + "placementMethod" : "BestPositionAlongLine", + "labelAnchorPoint" : "CenterOfLabel", + "distanceUnit" : "Map", + "useLineDirection" : true + }, + "pointExternalZonePriorities" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "pointPlacementMethod" : "AroundPoint", + "polygonAnchorPointType" : "GeometricCenter", + "polygonBoundaryWeight" : 0, + "polygonExternalZones" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "polygonFeatureType" : "General", + "polygonInternalZones" : { + "type" : "CIMMaplexInternalZonePriorities", + "center" : 1 + }, + "polygonPlacementMethod" : "CurvedInPolygon", + "primaryOffset" : 1, + "primaryOffsetUnit" : "Point", + "removeExtraWhiteSpace" : true, + "repetitionIntervalUnit" : "Map", + "rotationProperties" : { + "type" : "CIMMaplexRotationProperties", + "rotationType" : "Arithmetic", + "alignmentType" : "Straight" + }, + "secondaryOffset" : 100, + "strategyPriorities" : { + "type" : "CIMMaplexStrategyPriorities", + "stacking" : 1, + "overrun" : 2, + "fontCompression" : 3, + "fontReduction" : 4, + "abbreviation" : 5 + }, + "thinningDistanceUnit" : "Point", + "truncationMarkerCharacter" : ".", + "truncationMinimumLength" : 1, + "truncationPreferredCharacters" : "aeiou", + "polygonAnchorPointPerimeterInsetUnit" : "Point" + }, + "name" : "Class 1", + "priority" : -1, + "standardLabelPlacementProperties" : { + "type" : "CIMStandardLabelPlacementProperties", + "featureType" : "Line", + "featureWeight" : "None", + "labelWeight" : "High", + "numLabelsOption" : "OneLabelPerName", + "lineLabelPosition" : { + "type" : "CIMStandardLineLabelPosition", + "above" : true, + "inLine" : true, + "parallel" : true + }, + "lineLabelPriorities" : { + "type" : "CIMStandardLineLabelPriorities", + "aboveStart" : 3, + "aboveAlong" : 3, + "aboveEnd" : 3, + "centerStart" : 3, + "centerAlong" : 3, + "centerEnd" : 3, + "belowStart" : 3, + "belowAlong" : 3, + "belowEnd" : 3 + }, + "pointPlacementMethod" : "AroundPoint", + "pointPlacementPriorities" : { + "type" : "CIMStandardPointPlacementPriorities", + "aboveLeft" : 2, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerLeft" : 3, + "centerRight" : 2, + "belowLeft" : 3, + "belowCenter" : 3, + "belowRight" : 2 + }, + "rotationType" : "Arithmetic", + "polygonPlacementMethod" : "AlwaysHorizontal" + }, + "textSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMTextSymbol", + "blockProgression" : "TTB", + "depth3D" : 1, + "extrapolateBaselines" : true, + "fontEffects" : "Normal", + "fontEncoding" : "Unicode", + "fontFamilyName" : "Tahoma", + "fontStyleName" : "Regular", + "fontType" : "Unspecified", + "haloSize" : 1, + "height" : 10, + "hinting" : "Default", + "horizontalAlignment" : "Left", + "kerning" : true, + "letterWidth" : 100, + "ligatures" : true, + "lineGapType" : "ExtraLeading", + "symbol" : { + "type" : "CIMPolygonSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidFill", + "enable" : true, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 0, + 0, + 100 + ] + } + } + ] + }, + "textCase" : "Normal", + "textDirection" : "LTR", + "verticalAlignment" : "Bottom", + "verticalGlyphOrientation" : "Right", + "wordSpacing" : 100, + "billboardMode3D" : "FaceNearPlane" + } + }, + "useCodedValue" : true, + "visibility" : true, + "iD" : -1 + } + ], + "renderer" : { + "type" : "CIMUniqueValueRenderer", + "visualVariables" : [ + { + "type" : "CIMSizeVisualVariable", + "authoringInfo" : { + "type" : "CIMVisualVariableAuthoringInfo", + "minSliderValue" : 1, + "maxSliderValue" : 10, + "heading" : "Strm_Order" + }, + "randomMax" : 1, + "minSize" : 0.33000000000000002, + "maxSize" : 2, + "minValue" : 1, + "maxValue" : 10, + "valueRepresentation" : "Radius", + "variableType" : "Graduated", + "valueShape" : "Unknown", + "axis" : "HeightAxis", + "normalizationType" : "Nothing", + "valueExpressionInfo" : { + "type" : "CIMExpressionInfo", + "title" : "Custom", + "expression" : "$feature.Strm_Order", + "returnType" : "Default" + } + } + ], + "colorRamp" : { + "type" : "CIMRandomHSVColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "maxH" : 360, + "minS" : 15, + "maxS" : 30, + "minV" : 99, + "maxV" : 100, + "minAlpha" : 100, + "maxAlpha" : 100 + }, + "defaultLabel" : "Insufficient Data", + "defaultSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 189, + 194, + 187, + 100 + ] + } + } + ] + } + }, + "defaultSymbolPatch" : "Default", + "fields" : [ + "recur_cat_3day" + ], + "groups" : [ + { + "type" : "CIMUniqueValueGroup", + "classes" : [ + { + "type" : "CIMUniqueValueClass", + "label" : "2%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 0, + 229, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "2" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "4%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 158, + 0, + 255, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "4" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "10%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 244.69999999999999, + 100, + 100, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "10" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "20%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 196.36000000000001, + 81.959999999999994, + 100, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "20" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "> 50% (High Water Threshold)", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 312.86000000000001, + 29.16, + 99.409999999999997, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "50" + ] + } + ], + "visible" : true + } + ], + "heading" : "Annual Exceedance Probability" + } + ], + "useDefaultSymbol" : true, + "polygonSymbolColorTarget" : "Fill" + }, + "scaleSymbols" : true, + "snappable" : true + }, + { + "type" : "CIMFeatureLayer", + "name" : "5 Days - Est. Annual Exceedance Probability", + "uRI" : "CIMPATH=m_medium_range_max_high_flow_magnitude_forecast___alaska/ssing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak_1.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak_1", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{A4AEB3CF-5631-44E1-AF4B-0734E483B9CC}" + }, + "layerType" : "Operational", + "showLegends" : true, + "visibility" : false, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "autoGenerateFeatureTemplates" : true, + "featureElevationExpression" : "0", + "featureTable" : { + "type" : "CIMFeatureTable", + "displayField" : "name", + "editable" : true, + "fieldDescriptions" : [ + { + "type" : "CIMFieldDescription", + "alias" : "oid", + "fieldName" : "oid", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "feature_id", + "fieldName" : "feature_id", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Feature ID", + "fieldName" : "feature_id_str", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Stream Order", + "fieldName" : "strm_order", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Name", + "fieldName" : "name", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "USGS HUC6", + "fieldName" : "huc6", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "State", + "fieldName" : "state", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Version", + "fieldName" : "nwm_vers", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Reference Time", + "fieldName" : "reference_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Max Streamflow (cfs)", + "fieldName" : "maxflow_5day_cfs", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Annual Exceedance Probability (%)", + "fieldName" : "recur_cat_5day", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Threshold (cfs)", + "fieldName" : "high_water_threshold", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "50% Streamflow (cfs)", + "fieldName" : "flow_2yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "20% Streamflow (cfs)", + "fieldName" : "flow_5yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "10% Streamflow (cfs)", + "fieldName" : "flow_10yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "4% Streamflow (cfs)", + "fieldName" : "flow_25yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "2% Streamflow (cfs)", + "fieldName" : "flow_50yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Update Time", + "fieldName" : "update_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "geom", + "fieldName" : "geom", + "visible" : true, + "searchMode" : "Exact" + } + ], + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e68374b4f65574b635a42577249563032436e4e56534251583439367a4563764e324e6242727252556246796e4d6d724a4f485639394c35656963473146786379732a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", + "workspaceFactory" : "SDE", + "dataset" : "vizprocessing.publish.%mrf_gfs_10day_max_high_flow_magnitude_ak_1", + "datasetType" : "esriDTFeatureClass", + "sqlQuery" : "select oid,feature_id,feature_id_str,strm_order,name,huc6,state,nwm_vers,reference_time,maxflow_5day_cfs,recur_cat_5day,high_water_threshold,flow_2yr,flow_5yr,flow_10yr,flow_25yr,flow_50yr,update_time,geom from vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak WHERE recur_cat_5day IS NOT NULL", + "srid" : "3857", + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "oIDFields" : "oid", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17223450.1043, + "ymin" : 8100880.91189999878, + "xmax" : -15647534.0757, + "ymax" : 9252669.82109999657, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeInteger", + "alias" : "oid" + }, + { + "name" : "feature_id", + "type" : "esriFieldTypeDouble", + "alias" : "feature_id" + }, + { + "name" : "feature_id_str", + "type" : "esriFieldTypeString", + "alias" : "feature_id_str", + "length" : 60000 + }, + { + "name" : "strm_order", + "type" : "esriFieldTypeInteger", + "alias" : "strm_order" + }, + { + "name" : "name", + "type" : "esriFieldTypeString", + "alias" : "name", + "length" : 60000 + }, + { + "name" : "huc6", + "type" : "esriFieldTypeString", + "alias" : "huc6", + "length" : 60000 + }, + { + "name" : "state", + "type" : "esriFieldTypeString", + "alias" : "state", + "length" : 60000 + }, + { + "name" : "nwm_vers", + "type" : "esriFieldTypeDouble", + "alias" : "nwm_vers" + }, + { + "name" : "reference_time", + "type" : "esriFieldTypeString", + "alias" : "reference_time", + "length" : 60000 + }, + { + "name" : "maxflow_5day_cfs", + "type" : "esriFieldTypeDouble", + "alias" : "maxflow_5day_cfs" + }, + { + "name" : "recur_cat_5day", + "type" : "esriFieldTypeString", + "alias" : "recur_cat_5day", + "length" : 60000 + }, + { + "name" : "high_water_threshold", + "type" : "esriFieldTypeDouble", + "alias" : "high_water_threshold" + }, + { + "name" : "flow_2yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_2yr" + }, + { + "name" : "flow_5yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_5yr" + }, + { + "name" : "flow_10yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_10yr" + }, + { + "name" : "flow_25yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_25yr" + }, + { + "name" : "flow_50yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_50yr" + }, + { + "name" : "update_time", + "type" : "esriFieldTypeString", + "alias" : "update_time", + "length" : 60000 + }, + { + "name" : "geom", + "type" : "esriFieldTypeGeometry", + "alias" : "geom", + "geometryDef" : { + "avgNumPoints" : 0, + "geometryType" : "esriGeometryPolyline", + "hasM" : false, + "hasZ" : false, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + } + } + ], + "spatialStorageType" : 8 + }, + "studyAreaSpatialRel" : "esriSpatialRelUndefined", + "searchOrder" : "esriSearchOrderSpatial" + }, + "htmlPopupEnabled" : true, + "selectable" : true, + "featureCacheType" : "Session", + "displayFiltersType" : "ByScale", + "featureBlendingMode" : "Alpha", + "labelClasses" : [ + { + "type" : "CIMLabelClass", + "expression" : "$feature.Name", + "expressionEngine" : "Arcade", + "featuresToLabel" : "AllVisibleFeatures", + "maplexLabelPlacementProperties" : { + "type" : "CIMMaplexLabelPlacementProperties", + "featureType" : "Line", + "avoidPolygonHoles" : true, + "canOverrunFeature" : true, + "canPlaceLabelOutsidePolygon" : true, + "canRemoveOverlappingLabel" : true, + "canStackLabel" : true, + "connectionType" : "MinimizeLabels", + "constrainOffset" : "AboveLine", + "contourAlignmentType" : "Page", + "contourLadderType" : "Straight", + "contourMaximumAngle" : 90, + "enableConnection" : true, + "featureWeight" : 0, + "fontHeightReductionLimit" : 4, + "fontHeightReductionStep" : 0.5, + "fontWidthReductionLimit" : 90, + "fontWidthReductionStep" : 5, + "graticuleAlignmentType" : "Straight", + "keyNumberGroupName" : "Default", + "labelBuffer" : 15, + "labelLargestPolygon" : true, + "labelPriority" : -1, + "labelStackingProperties" : { + "type" : "CIMMaplexLabelStackingProperties", + "stackAlignment" : "ChooseBest", + "maximumNumberOfLines" : 3, + "minimumNumberOfCharsPerLine" : 3, + "maximumNumberOfCharsPerLine" : 24, + "separators" : [ + { + "type" : "CIMMaplexStackingSeparator", + "separator" : " ", + "splitAfter" : true + }, + { + "type" : "CIMMaplexStackingSeparator", + "separator" : ",", + "visible" : true, + "splitAfter" : true + } + ] + }, + "lineFeatureType" : "General", + "linePlacementMethod" : "OffsetStraightFromLine", + "maximumLabelOverrun" : 16, + "maximumLabelOverrunUnit" : "Point", + "minimumFeatureSizeUnit" : "Map", + "multiPartOption" : "OneLabelPerFeature", + "offsetAlongLineProperties" : { + "type" : "CIMMaplexOffsetAlongLineProperties", + "placementMethod" : "BestPositionAlongLine", + "labelAnchorPoint" : "CenterOfLabel", + "distanceUnit" : "Map", + "useLineDirection" : true + }, + "pointExternalZonePriorities" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "pointPlacementMethod" : "AroundPoint", + "polygonAnchorPointType" : "GeometricCenter", + "polygonBoundaryWeight" : 0, + "polygonExternalZones" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "polygonFeatureType" : "General", + "polygonInternalZones" : { + "type" : "CIMMaplexInternalZonePriorities", + "center" : 1 + }, + "polygonPlacementMethod" : "CurvedInPolygon", + "primaryOffset" : 1, + "primaryOffsetUnit" : "Point", + "removeExtraWhiteSpace" : true, + "repetitionIntervalUnit" : "Map", + "rotationProperties" : { + "type" : "CIMMaplexRotationProperties", + "rotationType" : "Arithmetic", + "alignmentType" : "Straight" + }, + "secondaryOffset" : 100, + "strategyPriorities" : { + "type" : "CIMMaplexStrategyPriorities", + "stacking" : 1, + "overrun" : 2, + "fontCompression" : 3, + "fontReduction" : 4, + "abbreviation" : 5 + }, + "thinningDistanceUnit" : "Point", + "truncationMarkerCharacter" : ".", + "truncationMinimumLength" : 1, + "truncationPreferredCharacters" : "aeiou", + "polygonAnchorPointPerimeterInsetUnit" : "Point" + }, + "name" : "Class 1", + "priority" : -1, + "standardLabelPlacementProperties" : { + "type" : "CIMStandardLabelPlacementProperties", + "featureType" : "Line", + "featureWeight" : "None", + "labelWeight" : "High", + "numLabelsOption" : "OneLabelPerName", + "lineLabelPosition" : { + "type" : "CIMStandardLineLabelPosition", + "above" : true, + "inLine" : true, + "parallel" : true + }, + "lineLabelPriorities" : { + "type" : "CIMStandardLineLabelPriorities", + "aboveStart" : 3, + "aboveAlong" : 3, + "aboveEnd" : 3, + "centerStart" : 3, + "centerAlong" : 3, + "centerEnd" : 3, + "belowStart" : 3, + "belowAlong" : 3, + "belowEnd" : 3 + }, + "pointPlacementMethod" : "AroundPoint", + "pointPlacementPriorities" : { + "type" : "CIMStandardPointPlacementPriorities", + "aboveLeft" : 2, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerLeft" : 3, + "centerRight" : 2, + "belowLeft" : 3, + "belowCenter" : 3, + "belowRight" : 2 + }, + "rotationType" : "Arithmetic", + "polygonPlacementMethod" : "AlwaysHorizontal" + }, + "textSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMTextSymbol", + "blockProgression" : "TTB", + "depth3D" : 1, + "extrapolateBaselines" : true, + "fontEffects" : "Normal", + "fontEncoding" : "Unicode", + "fontFamilyName" : "Tahoma", + "fontStyleName" : "Regular", + "fontType" : "Unspecified", + "haloSize" : 1, + "height" : 10, + "hinting" : "Default", + "horizontalAlignment" : "Left", + "kerning" : true, + "letterWidth" : 100, + "ligatures" : true, + "lineGapType" : "ExtraLeading", + "symbol" : { + "type" : "CIMPolygonSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidFill", + "enable" : true, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 0, + 0, + 100 + ] + } + } + ] + }, + "textCase" : "Normal", + "textDirection" : "LTR", + "verticalAlignment" : "Bottom", + "verticalGlyphOrientation" : "Right", + "wordSpacing" : 100, + "billboardMode3D" : "FaceNearPlane" + } + }, + "useCodedValue" : true, + "visibility" : true, + "iD" : -1 + } + ], + "renderer" : { + "type" : "CIMUniqueValueRenderer", + "visualVariables" : [ + { + "type" : "CIMSizeVisualVariable", + "authoringInfo" : { + "type" : "CIMVisualVariableAuthoringInfo", + "minSliderValue" : 1, + "maxSliderValue" : 10, + "heading" : "Strm_Order" + }, + "randomMax" : 1, + "minSize" : 0.33000000000000002, + "maxSize" : 2, + "minValue" : 1, + "maxValue" : 10, + "valueRepresentation" : "Radius", + "variableType" : "Graduated", + "valueShape" : "Unknown", + "axis" : "HeightAxis", + "normalizationType" : "Nothing", + "valueExpressionInfo" : { + "type" : "CIMExpressionInfo", + "title" : "Custom", + "expression" : "$feature.Strm_Order", + "returnType" : "Default" + } + } + ], + "colorRamp" : { + "type" : "CIMRandomHSVColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "maxH" : 360, + "minS" : 15, + "maxS" : 30, + "minV" : 99, + "maxV" : 100, + "minAlpha" : 100, + "maxAlpha" : 100 + }, + "defaultLabel" : "Insufficient Data", + "defaultSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 189, + 194, + 187, + 100 + ] + } + } + ] + } + }, + "defaultSymbolPatch" : "Default", + "fields" : [ + "recur_cat_5day" + ], + "groups" : [ + { + "type" : "CIMUniqueValueGroup", + "classes" : [ + { + "type" : "CIMUniqueValueClass", + "label" : "2%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 0, + 229, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "2" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "4%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 158, + 0, + 255, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "4" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "10%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 244.69999999999999, + 100, + 100, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "10" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "20%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 196.36000000000001, + 81.959999999999994, + 100, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "20" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "> 50% (High Water Threshold)", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 312.86000000000001, + 29.16, + 99.409999999999997, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "50" + ] + } + ], + "visible" : true + } + ], + "heading" : "Annual Exceedance Probability (%)" + } + ], + "useDefaultSymbol" : true, + "polygonSymbolColorTarget" : "Fill" + }, + "scaleSymbols" : true, + "snappable" : true + }, + { + "type" : "CIMFeatureLayer", + "name" : "10 Days - Est. Annual Exceedance Probability", + "uRI" : "CIMPATH=m_medium_range_max_high_flow_magnitude_forecast___alaska/ssing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak_2.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak_2", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{A4AEB3CF-5631-44E1-AF4B-0734E483B9CC}" + }, + "expanded" : true, + "layerType" : "Operational", + "showLegends" : true, + "visibility" : true, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "autoGenerateFeatureTemplates" : true, + "featureElevationExpression" : "0", + "featureTable" : { + "type" : "CIMFeatureTable", + "displayField" : "name", + "editable" : true, + "fieldDescriptions" : [ + { + "type" : "CIMFieldDescription", + "alias" : "oid", + "fieldName" : "oid", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "feature_id", + "fieldName" : "feature_id", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Feature ID", + "fieldName" : "feature_id_str", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Stream Order ", + "fieldName" : "strm_order", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Name", + "fieldName" : "name", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "USGS HUC6", + "fieldName" : "huc6", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "State", + "fieldName" : "state", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Version", + "fieldName" : "nwm_vers", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Reference Time", + "fieldName" : "reference_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Max Streamflow (cfs)", + "fieldName" : "maxflow_10day_cfs", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Annual Exceedance Probability (%)", + "fieldName" : "recur_cat_10day", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Threshold (cfs)", + "fieldName" : "high_water_threshold", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "50% Streamflow (cfs)", + "fieldName" : "flow_2yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "20% Streamflow (cfs)", + "fieldName" : "flow_5yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "10% Streamflow (cfs)", + "fieldName" : "flow_10yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "4% Streamflow (cfs)", + "fieldName" : "flow_25yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "2% Streamflow (cfs)", + "fieldName" : "flow_50yr", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Update Time", + "fieldName" : "update_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "geom", + "fieldName" : "geom", + "visible" : true, + "searchMode" : "Exact" + } + ], + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e68374b4f65574b635a42577249563032436e4e56534251583439367a4563764e324e6242727252556246796e4d6d724a4f485639394c35656963473146786379732a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", + "workspaceFactory" : "SDE", + "dataset" : "vizprocessing.publish.%mrf_gfs_10day_max_high_flow_magnitude_ak_2", + "datasetType" : "esriDTFeatureClass", + "sqlQuery" : "select oid,feature_id,feature_id_str,strm_order,name,huc6,state,nwm_vers,reference_time,maxflow_10day_cfs,recur_cat_10day,high_water_threshold,flow_2yr,flow_5yr,flow_10yr,flow_25yr,flow_50yr,update_time,geom from vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak WHERE recur_cat_10day IS NOT null", + "srid" : "3857", + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "oIDFields" : "oid", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17223450.1043, + "ymin" : 8099987.067900002, + "xmax" : -15647534.0757, + "ymax" : 9252669.82109999657, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeInteger", + "alias" : "oid" + }, + { + "name" : "feature_id", + "type" : "esriFieldTypeDouble", + "alias" : "feature_id" + }, + { + "name" : "feature_id_str", + "type" : "esriFieldTypeString", + "alias" : "feature_id_str", + "length" : 60000 + }, + { + "name" : "strm_order", + "type" : "esriFieldTypeInteger", + "alias" : "strm_order" + }, + { + "name" : "name", + "type" : "esriFieldTypeString", + "alias" : "name", + "length" : 60000 + }, + { + "name" : "huc6", + "type" : "esriFieldTypeString", + "alias" : "huc6", + "length" : 60000 + }, + { + "name" : "state", + "type" : "esriFieldTypeString", + "alias" : "state", + "length" : 60000 + }, + { + "name" : "nwm_vers", + "type" : "esriFieldTypeDouble", + "alias" : "nwm_vers" + }, + { + "name" : "reference_time", + "type" : "esriFieldTypeString", + "alias" : "reference_time", + "length" : 60000 + }, + { + "name" : "maxflow_10day_cfs", + "type" : "esriFieldTypeDouble", + "alias" : "maxflow_10day_cfs" + }, + { + "name" : "recur_cat_10day", + "type" : "esriFieldTypeString", + "alias" : "recur_cat_10day", + "length" : 60000 + }, + { + "name" : "high_water_threshold", + "type" : "esriFieldTypeDouble", + "alias" : "high_water_threshold" + }, + { + "name" : "flow_2yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_2yr" + }, + { + "name" : "flow_5yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_5yr" + }, + { + "name" : "flow_10yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_10yr" + }, + { + "name" : "flow_25yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_25yr" + }, + { + "name" : "flow_50yr", + "type" : "esriFieldTypeDouble", + "alias" : "flow_50yr" + }, + { + "name" : "update_time", + "type" : "esriFieldTypeString", + "alias" : "update_time", + "length" : 60000 + }, + { + "name" : "geom", + "type" : "esriFieldTypeGeometry", + "alias" : "geom", + "geometryDef" : { + "avgNumPoints" : 0, + "geometryType" : "esriGeometryPolyline", + "hasM" : false, + "hasZ" : false, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + } + } + ], + "spatialStorageType" : 8 + }, + "studyAreaSpatialRel" : "esriSpatialRelUndefined", + "searchOrder" : "esriSearchOrderSpatial" + }, + "htmlPopupEnabled" : true, + "selectable" : true, + "featureCacheType" : "Session", + "enableDisplayFilters" : true, + "displayFilters" : [ + { + "type" : "CIMDisplayFilter", + "name" : "All Streams", + "whereClause" : "strm_order >= 1", + "minScale" : 500000 + }, + { + "type" : "CIMDisplayFilter", + "name" : "Large Streams", + "whereClause" : "strm_order >= 4", + "maxScale" : 5000000 + }, + { + "type" : "CIMDisplayFilter", + "name" : "Medium Streams", + "whereClause" : "strm_order >= 3", + "minScale" : 5000000, + "maxScale" : 3000000 + }, + { + "type" : "CIMDisplayFilter", + "name" : "Small Streams", + "whereClause" : "strm_order >= 2", + "minScale" : 3000000, + "maxScale" : 500000 + } + ], + "displayFiltersType" : "ByScale", + "featureBlendingMode" : "Alpha", + "labelClasses" : [ + { + "type" : "CIMLabelClass", + "expression" : "$feature.Name", + "expressionEngine" : "Arcade", + "featuresToLabel" : "AllVisibleFeatures", + "maplexLabelPlacementProperties" : { + "type" : "CIMMaplexLabelPlacementProperties", + "featureType" : "Line", + "avoidPolygonHoles" : true, + "canOverrunFeature" : true, + "canPlaceLabelOutsidePolygon" : true, + "canRemoveOverlappingLabel" : true, + "canStackLabel" : true, + "connectionType" : "MinimizeLabels", + "constrainOffset" : "AboveLine", + "contourAlignmentType" : "Page", + "contourLadderType" : "Straight", + "contourMaximumAngle" : 90, + "enableConnection" : true, + "featureWeight" : 0, + "fontHeightReductionLimit" : 4, + "fontHeightReductionStep" : 0.5, + "fontWidthReductionLimit" : 90, + "fontWidthReductionStep" : 5, + "graticuleAlignmentType" : "Straight", + "keyNumberGroupName" : "Default", + "labelBuffer" : 15, + "labelLargestPolygon" : true, + "labelPriority" : -1, + "labelStackingProperties" : { + "type" : "CIMMaplexLabelStackingProperties", + "stackAlignment" : "ChooseBest", + "maximumNumberOfLines" : 3, + "minimumNumberOfCharsPerLine" : 3, + "maximumNumberOfCharsPerLine" : 24, + "separators" : [ + { + "type" : "CIMMaplexStackingSeparator", + "separator" : " ", + "splitAfter" : true + }, + { + "type" : "CIMMaplexStackingSeparator", + "separator" : ",", + "visible" : true, + "splitAfter" : true + } + ] + }, + "lineFeatureType" : "General", + "linePlacementMethod" : "OffsetStraightFromLine", + "maximumLabelOverrun" : 16, + "maximumLabelOverrunUnit" : "Point", + "minimumFeatureSizeUnit" : "Map", + "multiPartOption" : "OneLabelPerFeature", + "offsetAlongLineProperties" : { + "type" : "CIMMaplexOffsetAlongLineProperties", + "placementMethod" : "BestPositionAlongLine", + "labelAnchorPoint" : "CenterOfLabel", + "distanceUnit" : "Map", + "useLineDirection" : true + }, + "pointExternalZonePriorities" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "pointPlacementMethod" : "AroundPoint", + "polygonAnchorPointType" : "GeometricCenter", + "polygonBoundaryWeight" : 0, + "polygonExternalZones" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "polygonFeatureType" : "General", + "polygonInternalZones" : { + "type" : "CIMMaplexInternalZonePriorities", + "center" : 1 + }, + "polygonPlacementMethod" : "CurvedInPolygon", + "primaryOffset" : 1, + "primaryOffsetUnit" : "Point", + "removeExtraWhiteSpace" : true, + "repetitionIntervalUnit" : "Map", + "rotationProperties" : { + "type" : "CIMMaplexRotationProperties", + "rotationType" : "Arithmetic", + "alignmentType" : "Straight" + }, + "secondaryOffset" : 100, + "strategyPriorities" : { + "type" : "CIMMaplexStrategyPriorities", + "stacking" : 1, + "overrun" : 2, + "fontCompression" : 3, + "fontReduction" : 4, + "abbreviation" : 5 + }, + "thinningDistanceUnit" : "Point", + "truncationMarkerCharacter" : ".", + "truncationMinimumLength" : 1, + "truncationPreferredCharacters" : "aeiou", + "polygonAnchorPointPerimeterInsetUnit" : "Point" + }, + "name" : "Class 1", + "priority" : -1, + "standardLabelPlacementProperties" : { + "type" : "CIMStandardLabelPlacementProperties", + "featureType" : "Line", + "featureWeight" : "None", + "labelWeight" : "High", + "numLabelsOption" : "OneLabelPerName", + "lineLabelPosition" : { + "type" : "CIMStandardLineLabelPosition", + "above" : true, + "inLine" : true, + "parallel" : true + }, + "lineLabelPriorities" : { + "type" : "CIMStandardLineLabelPriorities", + "aboveStart" : 3, + "aboveAlong" : 3, + "aboveEnd" : 3, + "centerStart" : 3, + "centerAlong" : 3, + "centerEnd" : 3, + "belowStart" : 3, + "belowAlong" : 3, + "belowEnd" : 3 + }, + "pointPlacementMethod" : "AroundPoint", + "pointPlacementPriorities" : { + "type" : "CIMStandardPointPlacementPriorities", + "aboveLeft" : 2, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerLeft" : 3, + "centerRight" : 2, + "belowLeft" : 3, + "belowCenter" : 3, + "belowRight" : 2 + }, + "rotationType" : "Arithmetic", + "polygonPlacementMethod" : "AlwaysHorizontal" + }, + "textSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMTextSymbol", + "blockProgression" : "TTB", + "depth3D" : 1, + "extrapolateBaselines" : true, + "fontEffects" : "Normal", + "fontEncoding" : "Unicode", + "fontFamilyName" : "Tahoma", + "fontStyleName" : "Regular", + "fontType" : "Unspecified", + "haloSize" : 1, + "height" : 10, + "hinting" : "Default", + "horizontalAlignment" : "Left", + "kerning" : true, + "letterWidth" : 100, + "ligatures" : true, + "lineGapType" : "ExtraLeading", + "symbol" : { + "type" : "CIMPolygonSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidFill", + "enable" : true, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 0, + 0, + 100 + ] + } + } + ] + }, + "textCase" : "Normal", + "textDirection" : "LTR", + "verticalAlignment" : "Bottom", + "verticalGlyphOrientation" : "Right", + "wordSpacing" : 100, + "billboardMode3D" : "FaceNearPlane" + } + }, + "useCodedValue" : true, + "visibility" : true, + "iD" : -1 + } + ], + "renderer" : { + "type" : "CIMUniqueValueRenderer", + "visualVariables" : [ + { + "type" : "CIMSizeVisualVariable", + "authoringInfo" : { + "type" : "CIMVisualVariableAuthoringInfo", + "minSliderValue" : 1, + "maxSliderValue" : 10, + "heading" : "Strm_Order" + }, + "randomMax" : 1, + "minSize" : 0.33000000000000002, + "maxSize" : 2, + "minValue" : 1, + "maxValue" : 10, + "valueRepresentation" : "Radius", + "variableType" : "Graduated", + "valueShape" : "Unknown", + "axis" : "HeightAxis", + "normalizationType" : "Nothing", + "valueExpressionInfo" : { + "type" : "CIMExpressionInfo", + "title" : "Custom", + "expression" : "$feature.Strm_Order", + "returnType" : "Default" + } + } + ], + "colorRamp" : { + "type" : "CIMRandomHSVColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "maxH" : 360, + "minS" : 15, + "maxS" : 30, + "minV" : 99, + "maxV" : 100, + "minAlpha" : 100, + "maxAlpha" : 100 + }, + "defaultLabel" : "Insufficient Data", + "defaultSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 189, + 194, + 187, + 100 + ] + } + } + ] + } + }, + "defaultSymbolPatch" : "Default", + "fields" : [ + "recur_cat_10day" + ], + "groups" : [ + { + "type" : "CIMUniqueValueGroup", + "classes" : [ + { + "type" : "CIMUniqueValueClass", + "label" : "2%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 0, + 229, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "2" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "4%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 158, + 0, + 255, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "4" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "10%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 244.69999999999999, + 100, + 100, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "10" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "20%", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 196.36000000000001, + 81.959999999999994, + 100, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "20" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "> 50% (High Water Threshold)", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMHSVColor", + "values" : [ + 312.86000000000001, + 29.16, + 99.409999999999997, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "50" + ] + } + ], + "visible" : true + } + ], + "heading" : "Annual Exceedance Probability (%)" + } + ], + "useDefaultSymbol" : true, + "polygonSymbolColorTarget" : "Fill" + }, + "scaleSymbols" : true, + "snappable" : true + } + ], + "binaryReferences" : [ + { + "type" : "CIMBinaryReference", + "uRI" : "CIMPATH=Metadata/7ba4bd30be7a13d31d7129121cc9508c.xml", + "data" : "\r\n20180518091418001.0TRUEMap/9j/4AAQSkZJRgABAQEAAAAAAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a\r\nHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy\r\nMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCACFAMgDAREA\r\nAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA\r\nAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3\r\nODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm\r\np6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA\r\nAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx\r\nBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK\r\nU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3\r\nuLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+gAo\r\nAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgA\r\noAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACg\r\nAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAC\r\ngAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKA\r\nCgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAK\r\nACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA\r\nKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAo\r\nAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgA\r\noAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACg\r\nAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAC\r\ngAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKA\r\nCgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAK\r\nACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA\r\n/9k=\r\n" + } + ] +} \ No newline at end of file diff --git a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.yml b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.yml new file mode 100644 index 00000000..473d95e0 --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.yml @@ -0,0 +1,14 @@ +service: mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa +summary: Medium-Range GFS 10 Day Maximum High Flow Magnitude Forecast - Alaska +description: Depicts the magnitude of the peak National Water Model (NWM) streamflow forecast over the next + 3, 5 and 10 days where the NWM is signaling high water. This service is derived from the medium-range GFS + configuration of the NWM over the Alaska domain. Shown are reaches with peak flow at or above high water + thresholds. Reaches are colored by the annual exceedance probability (AEP) of their forecast peak flow. + High water thresholds (regionally varied) and AEPs were derived using the 43-year NWM v3.0 reanalysis + simulation. Updated every 6 hours. +tags: high flow, magnitude, national water model, nwm, mrf, medium, range, alaska +credits: National Water Model, NOAA/NWS National Water Center +egis_server: server +egis_folder: nwm +feature_service: false +public_service: false \ No newline at end of file