POST
|
Hi all, While updating from 4.21 to 4.23, I have found a probable bug in AlgorithmicColorRamp and/or MultipartColorRamp. I've changed the location from esri/tasks/support to 'esri/rest/support/AlgorithmicColorRamp' and 'esri/rest/support/MultipartColorRamp' but receive this error starting from 4.22+ Anyone know a workaround?
... View more
03-28-2022
02:29 AM
|
0
|
0
|
437
|
POST
|
Hi Folks, I'm still trying to find a answer to this question. Does anyone have an example where someone has created a Histogram in JS using a raster layer?
... View more
03-28-2022
02:08 AM
|
0
|
0
|
775
|
POST
|
I've got Pro 2.8.2 and I receive the message "ExcelToSQLite has stopped working" almost daily, whether I have ArcGIS Pro Open or not. It's becoming very annoying.
... View more
11-11-2021
12:30 AM
|
0
|
2
|
4038
|
POST
|
Hi Andrew, No dice, I'm afraid. It seems like pretty buggy behaviour to me.
... View more
10-01-2021
12:18 AM
|
0
|
2
|
3346
|
POST
|
This worked great for me! So glad I finallly decided to google this. I was missing the zoom box of ArcMap days. I'm using ArcGIS Pro 2.8.2
... View more
08-23-2021
04:09 AM
|
0
|
0
|
14263
|
POST
|
Hi there, I have a multidimensional mosaic dataset with nearly 3,500 rasters hosted on a server. I've built an interface to visualize these rasters one by one with a slider and dropdown selector. See codepen (relevant code starting at line 336). The problem is that when you click on the Play button to advance the slider, the data is sometimes not loaded before it advances to the next year. I'd like to wait for the time slice to load before advancing the slider. I've been experimenting with imageryLayer.loaded but this only checks if the whole layer is loaded (which it pretty much always is) and not the right time slice. Is there a way to check the state change or that a fetch has finished loading for each particular time slice? Appreciate any suggestions.
... View more
02-18-2021
05:31 AM
|
0
|
0
|
897
|
POST
|
I found a shortcut! Sort your files alphabetically DESCENDING and then using shift+click to select them all. They then load alphabetically in the TOC ftw 👍
... View more
02-10-2021
03:11 AM
|
0
|
0
|
4646
|
POST
|
I refer to the ColorMap raster function, which has colorRamp as an option within it I have found a workaround to this by attaching a processing template which calcs the statistics (and does nothing else) and then set the rendering defaults to my desired symbology within ArcGIS Pro. But I'm looking for a solution to this symbology issue with raster functions because I'd like to publish it as an image service and have the correct symbology already applied instead of using client-side rendering to change the vis (which is was I'm doing now in Esri JS API)
... View more
01-29-2021
07:36 AM
|
0
|
0
|
3747
|
POST
|
Yep but I've set my Raster and Imagery defaults to a different colorramp, should have mentioned. It would typically default to grayscale, but still be classified instead of stretch
... View more
01-29-2021
07:00 AM
|
0
|
0
|
3751
|
POST
|
Hi Dan, Singe-band 32-bit floats mins and maxes somewhere in the ranges from 0-1000 of different meteorological indicators rasters in sets of four cover the same min/max ranges, 420 maps total
... View more
01-29-2021
06:44 AM
|
0
|
0
|
3756
|
POST
|
Hi everyone, I'm trying to set the symbology on several hundred .tiff raster files. I need to customize the statistics and would like to symbolize using a stretch MinMax function on each raster. So I've set up the custom statistics in the raster function as below: From there, I've tried every combination of using Stretch and ColorMap functions but the result ends up with a classified symbology ranging from 0-255 Any ideas?
... View more
01-29-2021
05:09 AM
|
1
|
10
|
4202
|
POST
|
Still looking, in Pro 2.7.0, to sort TOC alphabetically. This seems like pretty basic stuff...
... View more
01-27-2021
06:35 AM
|
0
|
1
|
4688
|
POST
|
Aha! I had half a mind to update it to 4.17 when playing around with the code today. Thanks for finding out!
... View more
12-08-2020
11:31 AM
|
0
|
0
|
3261
|
POST
|
Hi Ryan, This looks like a bug to me. It seems like a caching issue with the tiles. I cleared my browser's cache and selected 'green' before the map loaded completely and got this (without zooming): I've scripted a few website using a regular ImageryLayer, not ImageryTileLayer, and it updates the renderer automatically. It may be worth raising a new question, or bug report with Esri, to get an answer for this one. Cheers, Gianna
... View more
12-08-2020
06:12 AM
|
0
|
1
|
3279
|
POST
|
Hi there, You have to make each of your listener functions listen to each other. Here's what I did to make it work (nb I changed the dates to 1856 and 1921 because they were easier to see): function setFeatureLayerFilter(expression) {
chartsLayer.definitionExpression = expression;
}
// The filter for the page load map view
// Only show small scale series
setFeatureLayerFilter("Shape_Area >= 9463642202000 AND datepub = 1856");
//setFeatureLayerFilter("scale < 698000" );
// Exclude map scales according to the zoom level
// Use 'Shape_Area' because scale information might be missing for some charts
view.watch("zoom", function(newValue) {
switch (selectFilter.value) {
case "datePub = 1856":
if (newValue <= 2) {
setFeatureLayerFilter("Shape_Area >= 9463642202000 AND datePub = 1856");
} else if (newValue >= 4) {
setFeatureLayerFilter("Shape_Area <= 946364220200 AND datePub = 1856");
}
break;
case "datePub = 1921":
if (newValue <= 2) {
setFeatureLayerFilter("Shape_Area >= 9463642202000 AND datePub = 1921");
} else if (newValue >= 4) {
setFeatureLayerFilter("Shape_Area <= 946364220200 AND datePub = 1921");
}
break;
}
});
// Query the layer based on the chart series
var sqlExpressions = [
"datePub = 1856",
"datePub = 1921"
];
var selectFilter = document.createElement("select");
selectFilter.setAttribute("class", "esri-widget esri-select");
selectFilter.setAttribute(
"style",
"width: 275px; font-family: Avenir Next W00; font-size: 1em;"
);
sqlExpressions.forEach(function(sql) {
var option = document.createElement("option");
option.value = sql;
option.innerHTML = sql;
selectFilter.appendChild(option);
});
view.ui.add(selectFilter, "top-right");
selectFilter.addEventListener('change', function(event) {
if (view.zoom >= 2) {
setFeatureLayerFilter("Shape_Area <= 9463642202000 AND" + event.target.value);
} else {
setFeatureLayerFilter("Shape_Area >= 9463642202000 AND" + event.target.value);
}
});
... View more
11-16-2020
03:46 AM
|
1
|
1
|
2883
|
Title | Kudos | Posted |
---|---|---|
1 | 08-26-2020 01:44 AM | |
1 | 01-29-2021 05:09 AM | |
1 | 11-16-2020 03:46 AM | |
1 | 11-05-2020 07:04 AM | |
1 | 11-06-2020 02:51 AM |
Online Status |
Offline
|
Date Last Visited |
08-09-2022
08:05 AM
|