Skip to main content
Filter by
Sorted by
Tagged with
Advice
1 vote
2 replies
102 views

I need help coming up with a spatial workflow in R, or to be pointed in the direction of a package or something, I have no idea where to start with this. I have a raster called "Suit" (epsg:...
Carly Scott's user avatar
0 votes
1 answer
49 views

I am currently trying to create a python toolbox (atbx) in ArcGIS Pro (3.5) to compute a profile of mosaic dataset values. The tool takes a mosaic dataset and a line feature as inputs. The output is a ...
theonewhodidnotknow's user avatar
0 votes
1 answer
61 views

I have a dasked xarray which is about 150k x 90k with chunk size of 8192 x 8192. I am working on a Window virtual machine which has 100gb RAM and 16 cores. I want to plot it using the Datashader ...
Nanoputian's user avatar
0 votes
2 answers
141 views

I am updating a R script as I am migrating to a new machine and new install of R. Below is my existing R script. TiffFile is this file I downloaded from NWS. RnFileRaster <- raster(TiffFile) #...
Dan Chan's user avatar
1 vote
0 answers
78 views

I am using the rayshader package to create a 3D terrain visualization of a certain area. My R code is as follows: # ───────────────────────────────────────────────────────── # 1. Setup # ──────────────...
Saïd Maanan's user avatar
2 votes
3 answers
96 views

I need to average two raster stacks which containing daily temperature data shifted by 2 days. First stack times: "2020-05-01 00:00:00 UTC", "2020-05-02 00:00:00 UTC", "2020-...
San-Diego-WX's user avatar
0 votes
0 answers
36 views

When I am trying to obtain TIFF separations using tiffsep1, and when I try a pdf that contains vector images that are C100M100Y100K100, they are rendered as raster, having small white dots in ...
Cerbul13's user avatar
1 vote
0 answers
28 views

ArcGIS Maps SDK for Kotlin version 200.3 I'm having an issue when rendering two GeoPackage raster files from local storage. My goal is to overlay one raster on top of another, but the NoData areas are ...
Lidor's user avatar
  • 11
0 votes
1 answer
146 views

I have sentinel-2 data of few months. I am trying to interpolate sentinel-2 image using values from nearest dated image. The problem is that the code is quite inconsitent. It sometime replace the ...
Purple_Ad's user avatar
1 vote
1 answer
126 views

For example: sf_object <- st_as_sf(df, coords = c("longitude", "latitude"), crs = 4326) then conversion into a raster object: Ras_object <- terra::rast(sf_object) I get the ...
Xolile Ncipha's user avatar
1 vote
2 answers
130 views

I tried to add a raster file (stored in r_max) to my map. r_max is a RasterLayer with values from about 0 to 5: class : RasterLayer dimensions : 180, 360, 64800 (nrow, ncol, ncell) resolution : ...
user27931701's user avatar
0 votes
0 answers
56 views

Type With a streamlit application, I try to add a georeferenced raster image in the scattermap graph. a fixed image appears on the top left of the map, the image seems not well georeferenced, and does ...
Emmanuel's user avatar
2 votes
1 answer
95 views

I have a large raster stack that is a bunch of groups stacked together. The only thing differentiating the groups is the layer name, which consistently starts with the same prefix. I'd like to ...
Jaken's user avatar
  • 601
0 votes
0 answers
39 views

I'm working on a mobile app that has to display a small portion of map that I downloaded from the OSM server. It's a very small portion of map (approximately 2/3 mb), and I downloaded it in raster ...
Simone Sesana's user avatar
1 vote
1 answer
106 views

I am using the terra::focal function to fill missing data in a categorical raster. The problem is that the result of the focal function gives a raster with numerical values. I would really like to ...
Sophie Père's user avatar
0 votes
1 answer
186 views

I am looking to employ terra to update an analytical workflow (from Mokany et al 2022; Glob Ecol and Biogeo) originally written in R with the raster package. The workflow involves spatial analyses of ...
Sean Basquill's user avatar
3 votes
2 answers
86 views

This is truly bizarre behavior I can't explain. library(terra) r1 = rast(nrow = 2, ncol = 2) values(r1) = c(0, 1, 2, 3) r2 = r1 ext(r2) = ext(r2)/2 ext(r2) ext(r1) What you see is that the extent of ...
katefull06's user avatar
2 votes
1 answer
69 views

Is it possible to conditionally subset (and summarize) a raster using another raster as an index? I have a set of rasters that show monthly data across a number of years. For each point, I need to get ...
Jaken's user avatar
  • 601
0 votes
1 answer
603 views

I'm working with two rasters, both the same projection, but one is at a 4x higher resolution and with a different origin. I need to resample the high resolution raster to match the resolution of the ...
Jaken's user avatar
  • 601
0 votes
1 answer
369 views

Looking to employ terra:: to extract values from a large raster stack, and bypass the memory errors I'm getting via other means. The published code (Mokany et al. 2022) I'm using was developed with ...
Sean Basquill's user avatar
3 votes
2 answers
204 views

Consider the following binary raster, with patches in various shapes: Using terra to get separate polygons for each patch, I converted to vector via as.polygons() and then disaggregated via disagg(). ...
Reid L's user avatar
  • 57
0 votes
0 answers
43 views

I am using template URL to display tiles from a third party API. That API for tile serves the tiles in 27700 format. React Native Maps Template URL expects it in 3857 or similar web mercator formats. ...
Awais Korai's user avatar
0 votes
0 answers
130 views

I am running into issues with proper data extraction using Terra. It appears to be obtaining the mean and I am not seeing an option to select the most frequent or largest coverage for a selected area. ...
BrittL's user avatar
  • 23
1 vote
1 answer
307 views

I am an R user but a novice in C++. I need a C++ workflow that returns the value of a GeoTiff at a specific (x, y) coordinate. The GeoTiff contains 1 layer. The layer is a 2-dimensional array. Each ...
Edward Lavender's user avatar
0 votes
0 answers
52 views

I'm using the following code to download satellite imagery for the given polygon. The script runs successfully, but I don't get the files downloaded in the drive. What could be the reason? import ee ...
Balamurugan S's user avatar

1
2 3 4 5
76