From 80503789d10f0a0869f57a079c90c6b794ef7db0 Mon Sep 17 00:00:00 2001 From: katherine powell Date: Wed, 5 Jun 2024 02:32:57 +0000 Subject: [PATCH 1/4] Alaska gfs hfm - added yml, sql, and mapx files --- ...s_10day_max_high_flow_magnitude_alaska.sql | 73 + ...f_gfs_10day_max_high_flow_magnitude_ak.yml | 35 + ...y_max_high_flow_magnitude_alaska_noaa.mapx | 3095 +++++++++++++++++ ...ay_max_high_flow_magnitude_alaska_noaa.yml | 14 + 4 files changed, 3217 insertions(+) create mode 100644 Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska.sql create mode 100644 Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_ak.yml create mode 100644 Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.mapx create mode 100644 Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.yml 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..35080b0a --- /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,3095 @@ +{ + "type" : "CIMMapDocument", + "version" : "2.7.0", + "build" : 26828, + "mapDefinition" : { + "type" : "CIMMap", + "name" : "NWM GFS 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=nwm_gfs_max_high_flow_magnitude_forecast___alaska/3_days___est__annual_exceedance_probability.xml", + "CIMPATH=nwm_medium_range_max_high_flow_magnitude_forecast/cessing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak.xml", + "CIMPATH=nwm_gfs_max_high_flow_magnitude_forecast___alaska/5_days___est__annual_exceedance_probability.xml", + "CIMPATH=8e78f46cbc124b59ba3908c5d8832564.xml", + "CIMPATH=ef787653494b4761ae40a9af00fd0d41.xml" + ], + "defaultViewingMode" : "Map", + "mapType" : "Map", + "defaultExtent" : { + "xmin" : -18045241.23949036, + "ymin" : 7455160.38307413831, + "xmax" : -15057398.10676451, + "ymax" : 9464024.76982166246, + "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=nwm_gfs_max_high_flow_magnitude_forecast___alaska/3_days___est__annual_exceedance_probability.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "metadataURI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" + }, + "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 + }, + "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" : "Max Annual Exceed Prob (%)", + "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" + }, + { + "type" : "CIMFieldDescription", + "alias" : "ESRI_OID", + "fieldName" : "ESRI_OID", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : true, + "searchMode" : "Exact" + } + ], + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6843686674455745324364557277684742556b354c45414f786370566a6c576b423433636f646d7275594c336a5870516c716771444b37766c472f50665073714a2a00;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_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" : "feature_id_str", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17223450.1043, + "ymin" : 8099987.067900002, + "xmax" : -15647534.0757, + "ymax" : 9252669.82109999657, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeDouble", + "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" : [ + 169.03, + 23.609999999999999, + 99.030000000000001, + 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=nwm_medium_range_max_high_flow_magnitude_forecast/cessing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "metadataURI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", + "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 + }, + "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" : "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" + }, + { + "type" : "CIMFieldDescription", + "alias" : "ESRI_OID", + "fieldName" : "ESRI_OID", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "maxflow_5day_cfs", + "fieldName" : "maxflow_5day_cfs", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "recur_cat_5day", + "fieldName" : "recur_cat_5day", + "visible" : true, + "searchMode" : "Exact" + } + ], + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e68564d734348417830363263726a314d70312f7644466c6370306b43626b76637a7a6655776e46675175505233646f71464d5a543870684a456e77347a474378312a00;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_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" : "feature_id_str", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17223450.1043, + "ymin" : 8099987.067900002, + "xmax" : -15647534.0757, + "ymax" : 9252669.82109999657, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeDouble", + "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", + "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_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" : [ + 169.03, + 23.609999999999999, + 99.030000000000001, + 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=nwm_gfs_max_high_flow_magnitude_forecast___alaska/5_days___est__annual_exceedance_probability.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "metadataURI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" + }, + "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 + }, + "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" : "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" + }, + { + "type" : "CIMFieldDescription", + "alias" : "ESRI_OID", + "fieldName" : "ESRI_OID", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "maxflow_5day_cfs", + "fieldName" : "maxflow_5day_cfs", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "recur_cat_5day", + "fieldName" : "recur_cat_5day", + "visible" : true, + "searchMode" : "Exact" + } + ], + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e68564d734348417830363263726a314d70312f7644466c6370306b43626b76637a7a6655776e46675175505233646f71464d5a543870684a456e77347a474378312a00;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_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" : "feature_id_str", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17223450.1043, + "ymin" : 8099987.067900002, + "xmax" : -15647534.0757, + "ymax" : 9252669.82109999657, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeDouble", + "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", + "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_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" : [ + 169.03, + 23.609999999999999, + 99.030000000000001, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "50" + ] + } + ], + "visible" : true + } + ], + "heading" : "Annual Exceedance Probability" + } + ], + "useDefaultSymbol" : true, + "polygonSymbolColorTarget" : "Fill" + }, + "scaleSymbols" : true, + "snappable" : true + }, + { + "type" : "CIMVectorTileLayer", + "name" : "World Topographic Map", + "uRI" : "CIMPATH=8e78f46cbc124b59ba3908c5d8832564.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant" + }, + "metadataURI" : "CIMPATH=Metadata/0be292ce3a89f24df5c6b036f3f5993e.xml", + "useSourceMetadata" : true, + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" + }, + "layerType" : "BasemapBackground", + "showLegends" : true, + "visibility" : true, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "dataConnection" : { + "type" : "CIMVectorTileDataConnection", + "uRI" : "https://cdn.arcgis.com/sharing/rest/content/items/7dc6cea0b1764a1f9af2e679f642f0f5/resources/styles/root.json" + } + }, + { + "type" : "CIMTiledServiceLayer", + "name" : "World Hillshade", + "uRI" : "CIMPATH=ef787653494b4761ae40a9af00fd0d41.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant" + }, + "metadataURI" : "CIMPATH=Metadata/1149e6adbb724ffd095d5b599936d889.xml", + "useSourceMetadata" : true, + "description" : "Elevation/World_Hillshade", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" + }, + "layerType" : "BasemapBackground", + "showLegends" : true, + "visibility" : true, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "serviceConnection" : { + "type" : "CIMAGSServiceConnection", + "objectName" : "Elevation/World_Hillshade", + "objectType" : "MapServer", + "url" : "https://services.arcgisonline.com/arcgis/rest/services/Elevation/World_Hillshade/MapServer", + "serverConnection" : { + "type" : "CIMInternetServerConnection", + "anonymous" : true, + "hideUserProperty" : true, + "url" : "https://services.arcgisonline.com/arcgis/services" + } + }, + "transparentColor" : { + "type" : "CIMRGBColor", + "values" : [ + 254, + 254, + 254, + 100 + ] + }, + "backgroundColor" : { + "type" : "CIMRGBColor", + "values" : [ + 254, + 254, + 254, + 100 + ] + } + } + ], + "binaryReferences" : [ + { + "type" : "CIMBinaryReference", + "uRI" : "CIMPATH=Metadata/0be292ce3a89f24df5c6b036f3f5993e.xml", + "data" : "\r\n20240605003604001.0TRUEWorld Topographic Map\r\n" + }, + { + "type" : "CIMBinaryReference", + "uRI" : "CIMPATH=Metadata/1149e6adbb724ffd095d5b599936d889.xml", + "data" : "\r\n20240605003604001.0TRUEWorld HillshadeElevation/World_Hillshade\r\n" + }, + { + "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" + }, + { + "type" : "CIMBinaryReference", + "uRI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", + "data" : "\r\n20240605000650001.0TRUE\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..b5cdb212 --- /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 +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: true \ No newline at end of file From 038560e46227cf5e60c23833fa4b984a678c59e8 Mon Sep 17 00:00:00 2001 From: katherine powell Date: Wed, 5 Jun 2024 17:17:22 +0000 Subject: [PATCH 2/4] updated mapx file - starting over - added 3-Day layer --- ...y_max_high_flow_magnitude_alaska_noaa.mapx | 2337 +---------------- 1 file changed, 77 insertions(+), 2260 deletions(-) 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 index 35080b0a..c446b93e 100644 --- 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 @@ -4,7 +4,7 @@ "build" : 26828, "mapDefinition" : { "type" : "CIMMap", - "name" : "NWM GFS Max High Flow Magnitude Forecast - Alaska", + "name" : "NWM Medium-Range Max High Flow Magnitude Forecast - Alaska", "uRI" : "CIMPATH=map/map.xml", "sourceModifiedTime" : { "type" : "TimeInstant", @@ -26,19 +26,15 @@ "enableEyeDomeLighting" : true }, "layers" : [ - "CIMPATH=nwm_gfs_max_high_flow_magnitude_forecast___alaska/3_days___est__annual_exceedance_probability.xml", - "CIMPATH=nwm_medium_range_max_high_flow_magnitude_forecast/cessing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak.xml", - "CIMPATH=nwm_gfs_max_high_flow_magnitude_forecast___alaska/5_days___est__annual_exceedance_probability.xml", - "CIMPATH=8e78f46cbc124b59ba3908c5d8832564.xml", - "CIMPATH=ef787653494b4761ae40a9af00fd0d41.xml" + "CIMPATH=m_medium_range_max_high_flow_magnitude_forecast___alaska/cessing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak.xml" ], "defaultViewingMode" : "Map", "mapType" : "Map", "defaultExtent" : { - "xmin" : -18045241.23949036, - "ymin" : 7455160.38307413831, - "xmax" : -15057398.10676451, - "ymax" : 9464024.76982166246, + "xmin" : -14906747.3899270706, + "ymin" : 1288285.43131241715, + "xmax" : -6424736.442072928, + "ymax" : 8433230.6139875818, "spatialReference" : { "wkid" : 102100, "latestWkid" : 3857 @@ -189,1883 +185,15 @@ { "type" : "CIMFeatureLayer", "name" : "3 Days - Est. Annual Exceedance Probability", - "uRI" : "CIMPATH=nwm_gfs_max_high_flow_magnitude_forecast___alaska/3_days___est__annual_exceedance_probability.xml", + "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 - }, - "metadataURI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", - "useSourceMetadata" : true, - "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak", - "layerElevation" : { - "type" : "CIMLayerElevationSurface", - "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" - }, - "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 - }, - "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" : "Max Annual Exceed Prob (%)", - "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" - }, - { - "type" : "CIMFieldDescription", - "alias" : "ESRI_OID", - "fieldName" : "ESRI_OID", - "numberFormat" : { - "type" : "CIMNumericFormat", - "alignmentOption" : "esriAlignRight", - "alignmentWidth" : 0, - "roundingOption" : "esriRoundNumberOfDecimals", - "roundingValue" : 0 - }, - "readOnly" : true, - "visible" : true, - "searchMode" : "Exact" - } - ], - "dataConnection" : { - "type" : "CIMSqlQueryDataConnection", - "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6843686674455745324364557277684742556b354c45414f786370566a6c576b423433636f646d7275594c336a5870516c716771444b37766c472f50665073714a2a00;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_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" : "feature_id_str", - "geometryType" : "esriGeometryPolyline", - "extent" : { - "xmin" : -17223450.1043, - "ymin" : 8099987.067900002, - "xmax" : -15647534.0757, - "ymax" : 9252669.82109999657, - "spatialReference" : { - "wkid" : 102100, - "latestWkid" : 3857 - } - }, - "queryFields" : [ - { - "name" : "oid", - "type" : "esriFieldTypeDouble", - "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" : [ - 169.03, - 23.609999999999999, - 99.030000000000001, - 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=nwm_medium_range_max_high_flow_magnitude_forecast/cessing_publish_mrf_gfs_10day_max_high_flow_magnitude_ak.xml", - "sourceModifiedTime" : { - "type" : "TimeInstant", - "start" : 978307200000 - }, - "metadataURI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", - "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 - }, - "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" : "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" - }, - { - "type" : "CIMFieldDescription", - "alias" : "ESRI_OID", - "fieldName" : "ESRI_OID", - "numberFormat" : { - "type" : "CIMNumericFormat", - "alignmentOption" : "esriAlignRight", - "alignmentWidth" : 0, - "roundingOption" : "esriRoundNumberOfDecimals", - "roundingValue" : 0 - }, - "readOnly" : true, - "visible" : true, - "searchMode" : "Exact" - }, - { - "type" : "CIMFieldDescription", - "alias" : "maxflow_5day_cfs", - "fieldName" : "maxflow_5day_cfs", - "numberFormat" : { - "type" : "CIMNumericFormat", - "alignmentOption" : "esriAlignRight", - "alignmentWidth" : 0, - "roundingOption" : "esriRoundNumberOfDecimals", - "roundingValue" : 3 - }, - "visible" : true, - "searchMode" : "Exact" - }, - { - "type" : "CIMFieldDescription", - "alias" : "recur_cat_5day", - "fieldName" : "recur_cat_5day", - "visible" : true, - "searchMode" : "Exact" - } - ], - "dataConnection" : { - "type" : "CIMSqlQueryDataConnection", - "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e68564d734348417830363263726a314d70312f7644466c6370306b43626b76637a7a6655776e46675175505233646f71464d5a543870684a456e77347a474378312a00;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_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" : "feature_id_str", - "geometryType" : "esriGeometryPolyline", - "extent" : { - "xmin" : -17223450.1043, - "ymin" : 8099987.067900002, - "xmax" : -15647534.0757, - "ymax" : 9252669.82109999657, - "spatialReference" : { - "wkid" : 102100, - "latestWkid" : 3857 - } - }, - "queryFields" : [ - { - "name" : "oid", - "type" : "esriFieldTypeDouble", - "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", - "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_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" : [ - 169.03, - 23.609999999999999, - 99.030000000000001, - 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=nwm_gfs_max_high_flow_magnitude_forecast___alaska/5_days___est__annual_exceedance_probability.xml", - "sourceModifiedTime" : { - "type" : "TimeInstant", - "start" : 978307200000 + "type" : "TimeInstant" }, - "metadataURI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", "useSourceMetadata" : true, "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak", "layerElevation" : { "type" : "CIMLayerElevationSurface", - "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" + "mapElevationID" : "{A4AEB3CF-5631-44E1-AF4B-0734E483B9CC}" }, "expanded" : true, "layerType" : "Operational", @@ -2084,250 +212,23 @@ "type" : "CIMFeatureTable", "displayField" : "name", "editable" : true, - "fieldDescriptions" : [ - { - "type" : "CIMFieldDescription", - "alias" : "oid", - "fieldName" : "oid", - "numberFormat" : { - "type" : "CIMNumericFormat", - "alignmentOption" : "esriAlignRight", - "alignmentWidth" : 0, - "roundingOption" : "esriRoundNumberOfDecimals", - "roundingValue" : 0 - }, - "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" : "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" - }, - { - "type" : "CIMFieldDescription", - "alias" : "ESRI_OID", - "fieldName" : "ESRI_OID", - "numberFormat" : { - "type" : "CIMNumericFormat", - "alignmentOption" : "esriAlignRight", - "alignmentWidth" : 0, - "roundingOption" : "esriRoundNumberOfDecimals", - "roundingValue" : 0 - }, - "readOnly" : true, - "visible" : true, - "searchMode" : "Exact" - }, - { - "type" : "CIMFieldDescription", - "alias" : "maxflow_5day_cfs", - "fieldName" : "maxflow_5day_cfs", - "numberFormat" : { - "type" : "CIMNumericFormat", - "alignmentOption" : "esriAlignRight", - "alignmentWidth" : 0, - "roundingOption" : "esriRoundNumberOfDecimals", - "roundingValue" : 3 - }, - "visible" : true, - "searchMode" : "Exact" - }, - { - "type" : "CIMFieldDescription", - "alias" : "recur_cat_5day", - "fieldName" : "recur_cat_5day", - "visible" : true, - "searchMode" : "Exact" - } - ], "dataConnection" : { "type" : "CIMSqlQueryDataConnection", - "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e68564d734348417830363263726a314d70312f7644466c6370306b43626b76637a7a6655776e46675175505233646f71464d5a543870684a456e77347a474378312a00;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", + "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_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", + "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" : "feature_id_str", + "oIDFields" : "oid", "geometryType" : "esriGeometryPolyline", "extent" : { "xmin" : -17223450.1043, - "ymin" : 8099987.067900002, + "ymin" : 8100880.91189999878, "xmax" : -15647534.0757, "ymax" : 9252669.82109999657, "spatialReference" : { @@ -2338,7 +239,7 @@ "queryFields" : [ { "name" : "oid", - "type" : "esriFieldTypeDouble", + "type" : "esriFieldTypeInteger", "alias" : "oid" }, { @@ -2387,14 +288,14 @@ "length" : 60000 }, { - "name" : "maxflow_5day_cfs", + "name" : "maxflow_3day_cfs", "type" : "esriFieldTypeDouble", - "alias" : "maxflow_5day_cfs" + "alias" : "maxflow_3day_cfs" }, { - "name" : "recur_cat_5day", + "name" : "recur_cat_3day", "type" : "esriFieldTypeString", - "alias" : "recur_cat_5day", + "alias" : "recur_cat_3day", "length" : 60000 }, { @@ -2457,35 +358,6 @@ "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" : [ @@ -2741,7 +613,7 @@ "minAlpha" : 100, "maxAlpha" : 100 }, - "defaultLabel" : "Insufficient Data", + "defaultLabel" : "", "defaultSymbol" : { "type" : "CIMSymbolReference", "symbol" : { @@ -2758,9 +630,9 @@ "color" : { "type" : "CIMRGBColor", "values" : [ - 189, - 194, - 187, + 130, + 130, + 130, 100 ] } @@ -2770,7 +642,7 @@ }, "defaultSymbolPatch" : "Default", "fields" : [ - "recur_cat_5day" + "recur_cat" ], "groups" : [ { @@ -2778,7 +650,8 @@ "classes" : [ { "type" : "CIMUniqueValueClass", - "label" : "2%", + "editable" : true, + "label" : "2% ", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -2818,7 +691,8 @@ }, { "type" : "CIMUniqueValueClass", - "label" : "4%", + "editable" : true, + "label" : "4% ", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -2858,7 +732,7 @@ }, { "type" : "CIMUniqueValueClass", - "label" : "10%", + "label" : "10% ", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -2898,7 +772,7 @@ }, { "type" : "CIMUniqueValueClass", - "label" : "20%", + "label" : "20% ", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -2938,7 +812,8 @@ }, { "type" : "CIMUniqueValueClass", - "label" : ">50% (High Water Threshold)", + "editable" : true, + "label" : "> 50% (High Water Threshold)", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -2956,9 +831,50 @@ "color" : { "type" : "CIMHSVColor", "values" : [ - 169.03, - 23.609999999999999, - 99.030000000000001, + 169.59999999999999, + 29.41, + 100, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + ">50" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "Insufficient Data", + "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" : [ + 189, + 194, + 187, 100 ] } @@ -2970,126 +886,27 @@ { "type" : "CIMUniqueValue", "fieldValues" : [ - "50" + "Not Availa" ] } ], "visible" : true } ], - "heading" : "Annual Exceedance Probability" + "heading" : "Current Annual Exceedance Probability" } ], - "useDefaultSymbol" : true, "polygonSymbolColorTarget" : "Fill" }, "scaleSymbols" : true, "snappable" : true - }, - { - "type" : "CIMVectorTileLayer", - "name" : "World Topographic Map", - "uRI" : "CIMPATH=8e78f46cbc124b59ba3908c5d8832564.xml", - "sourceModifiedTime" : { - "type" : "TimeInstant" - }, - "metadataURI" : "CIMPATH=Metadata/0be292ce3a89f24df5c6b036f3f5993e.xml", - "useSourceMetadata" : true, - "layerElevation" : { - "type" : "CIMLayerElevationSurface", - "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" - }, - "layerType" : "BasemapBackground", - "showLegends" : true, - "visibility" : true, - "displayCacheType" : "Permanent", - "maxDisplayCacheAge" : 5, - "showPopups" : true, - "serviceLayerID" : -1, - "refreshRate" : -1, - "refreshRateUnit" : "esriTimeUnitsSeconds", - "blendingMode" : "Alpha", - "dataConnection" : { - "type" : "CIMVectorTileDataConnection", - "uRI" : "https://cdn.arcgis.com/sharing/rest/content/items/7dc6cea0b1764a1f9af2e679f642f0f5/resources/styles/root.json" - } - }, - { - "type" : "CIMTiledServiceLayer", - "name" : "World Hillshade", - "uRI" : "CIMPATH=ef787653494b4761ae40a9af00fd0d41.xml", - "sourceModifiedTime" : { - "type" : "TimeInstant" - }, - "metadataURI" : "CIMPATH=Metadata/1149e6adbb724ffd095d5b599936d889.xml", - "useSourceMetadata" : true, - "description" : "Elevation/World_Hillshade", - "layerElevation" : { - "type" : "CIMLayerElevationSurface", - "mapElevationID" : "{252FDDD5-FFE1-4445-B6DE-42B26FEDFF6E}" - }, - "layerType" : "BasemapBackground", - "showLegends" : true, - "visibility" : true, - "displayCacheType" : "Permanent", - "maxDisplayCacheAge" : 5, - "showPopups" : true, - "serviceLayerID" : -1, - "refreshRate" : -1, - "refreshRateUnit" : "esriTimeUnitsSeconds", - "blendingMode" : "Alpha", - "serviceConnection" : { - "type" : "CIMAGSServiceConnection", - "objectName" : "Elevation/World_Hillshade", - "objectType" : "MapServer", - "url" : "https://services.arcgisonline.com/arcgis/rest/services/Elevation/World_Hillshade/MapServer", - "serverConnection" : { - "type" : "CIMInternetServerConnection", - "anonymous" : true, - "hideUserProperty" : true, - "url" : "https://services.arcgisonline.com/arcgis/services" - } - }, - "transparentColor" : { - "type" : "CIMRGBColor", - "values" : [ - 254, - 254, - 254, - 100 - ] - }, - "backgroundColor" : { - "type" : "CIMRGBColor", - "values" : [ - 254, - 254, - 254, - 100 - ] - } } ], "binaryReferences" : [ - { - "type" : "CIMBinaryReference", - "uRI" : "CIMPATH=Metadata/0be292ce3a89f24df5c6b036f3f5993e.xml", - "data" : "\r\n20240605003604001.0TRUEWorld Topographic Map\r\n" - }, - { - "type" : "CIMBinaryReference", - "uRI" : "CIMPATH=Metadata/1149e6adbb724ffd095d5b599936d889.xml", - "data" : "\r\n20240605003604001.0TRUEWorld HillshadeElevation/World_Hillshade\r\n" - }, { "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" - }, - { - "type" : "CIMBinaryReference", - "uRI" : "CIMPATH=Metadata/af4671eb64b7082ca612ef7dc217e72c.xml", - "data" : "\r\n20240605000650001.0TRUE\r\n" } ] } \ No newline at end of file From 9bae50f7fc5aa821ac5320fdf4cd37c9000b6680 Mon Sep 17 00:00:00 2001 From: katherine powell Date: Wed, 5 Jun 2024 19:00:19 +0000 Subject: [PATCH 3/4] updated mapx file - added 5 and 10-Day layers --- ...y_max_high_flow_magnitude_alaska_noaa.mapx | 2109 ++++++++++++++++- 1 file changed, 2059 insertions(+), 50 deletions(-) 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 index c446b93e..c38513be 100644 --- 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 @@ -26,15 +26,17 @@ "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/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" : -14906747.3899270706, - "ymin" : 1288285.43131241715, - "xmax" : -6424736.442072928, - "ymax" : 8433230.6139875818, + "xmin" : -17626285.5879838727, + "ymin" : 7673693.158838707, + "xmax" : -15244698.5920161288, + "ymax" : 9679857.5741612874, "spatialReference" : { "wkid" : 102100, "latestWkid" : 3857 @@ -187,7 +189,8 @@ "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" + "type" : "TimeInstant", + "start" : 978307200000 }, "useSourceMetadata" : true, "description" : "vizprocessing.publish.mrf_gfs_10day_max_high_flow_magnitude_ak", @@ -195,10 +198,9 @@ "type" : "CIMLayerElevationSurface", "mapElevationID" : "{A4AEB3CF-5631-44E1-AF4B-0734E483B9CC}" }, - "expanded" : true, "layerType" : "Operational", "showLegends" : true, - "visibility" : true, + "visibility" : false, "displayCacheType" : "Permanent", "maxDisplayCacheAge" : 5, "showPopups" : true, @@ -212,6 +214,219 @@ "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", @@ -358,6 +573,35 @@ "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" : [ @@ -613,7 +857,7 @@ "minAlpha" : 100, "maxAlpha" : 100 }, - "defaultLabel" : "", + "defaultLabel" : "Insufficient Data", "defaultSymbol" : { "type" : "CIMSymbolReference", "symbol" : { @@ -630,9 +874,9 @@ "color" : { "type" : "CIMRGBColor", "values" : [ - 130, - 130, - 130, + 189, + 194, + 187, 100 ] } @@ -642,7 +886,7 @@ }, "defaultSymbolPatch" : "Default", "fields" : [ - "recur_cat" + "recur_cat_3day" ], "groups" : [ { @@ -650,8 +894,7 @@ "classes" : [ { "type" : "CIMUniqueValueClass", - "editable" : true, - "label" : "2% ", + "label" : "2%", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -691,8 +934,7 @@ }, { "type" : "CIMUniqueValueClass", - "editable" : true, - "label" : "4% ", + "label" : "4%", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -732,7 +974,7 @@ }, { "type" : "CIMUniqueValueClass", - "label" : "10% ", + "label" : "10%", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -772,7 +1014,7 @@ }, { "type" : "CIMUniqueValueClass", - "label" : "20% ", + "label" : "20%", "patch" : "Default", "symbol" : { "type" : "CIMSymbolReference", @@ -812,7 +1054,6 @@ }, { "type" : "CIMUniqueValueClass", - "editable" : true, "label" : "> 50% (High Water Threshold)", "patch" : "Default", "symbol" : { @@ -831,9 +1072,9 @@ "color" : { "type" : "CIMHSVColor", "values" : [ - 169.59999999999999, - 29.41, - 100, + 312.86000000000001, + 29.16, + 99.409999999999997, 100 ] } @@ -845,36 +1086,1803 @@ { "type" : "CIMUniqueValue", "fieldValues" : [ - ">50" + "50" ] } ], "visible" : true - }, - { - "type" : "CIMUniqueValueClass", - "editable" : true, - "label" : "Insufficient Data", - "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", + } + ], + "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" : [ - 189, - 194, - 187, + 312.86000000000001, + 29.16, + 99.409999999999997, 100 ] } @@ -886,16 +2894,17 @@ { "type" : "CIMUniqueValue", "fieldValues" : [ - "Not Availa" + "50" ] } ], "visible" : true } ], - "heading" : "Current Annual Exceedance Probability" + "heading" : "Annual Exceedance Probability (%)" } ], + "useDefaultSymbol" : true, "polygonSymbolColorTarget" : "Fill" }, "scaleSymbols" : true, From 2934ed8c228406d428d012423c8ac8565461b4a7 Mon Sep 17 00:00:00 2001 From: Nick Chadwick Date: Mon, 24 Jun 2024 10:07:01 -0500 Subject: [PATCH 4/4] making the service private --- .../mrf_gfs_10day_max_high_flow_magnitude_alaska_noaa.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 index b5cdb212..473d95e0 100644 --- 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 @@ -1,4 +1,4 @@ -service: mrf_gfs_10day_max_high_flow_magnitude_alaska +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 @@ -11,4 +11,4 @@ credits: National Water Model, NOAA/NWS National Water Center egis_server: server egis_folder: nwm feature_service: false -public_service: true \ No newline at end of file +public_service: false \ No newline at end of file