Skip to main content

Questions tagged [parallel-processing]

Use this tag when asking questions about multi or parallel processing - a programming paradigm used to speed up computationally intensive geoprocessing tasks by executing them over multiple CPU cores or threads.

0 votes
1 answer
59 views

I am currently working on an a Python version of ArcGIS-Based Nitrogen Load Estimation Toolbox Developed for ArcGIS Pro called ArcNLET. I have a question regarding the Parallel Processing Factor (...
Lucas H's user avatar
0 votes
0 answers
96 views

I'm trying to get my script in multiprocessing, but the arcpy.management.CalculateGeometryAttributes produced None values. I tried it in for loop and it worked perfectly fine. import os import ...
Hieu Tran's user avatar
2 votes
1 answer
62 views

Problem: I have a table X, in which I am inserting polygons (ex: geometry data for a city). Before inserting them, I check if the input polygon intersects with any existing polygon in the table and ...
xorrax's user avatar
  • 21
0 votes
1 answer
251 views

I'm trying to speed up the calculation of the intersection between two geodataframes with multiprocessing. I'm using GeoPandas with JupyterLab from Anaconda on Linux. My multiprocessing code currently ...
banana store's user avatar
0 votes
1 answer
1k views

I am trying to parallelize a function that uses a zarr datacube read from an s3 bucket to perform some calculations. However, when using a LocalCluster from dask.distributed, I lose the .rio accessor ...
LaserGlaciers's user avatar
0 votes
1 answer
76 views

When I use ThreadPoolExecutor, I am missing a random number of expected outputs. I tried making an MRE to show what I am trying to do. The first MRE works but when I run a second MRE (which is closer ...
ENIAC-6's user avatar
  • 936
1 vote
1 answer
60 views

I am trying to troubleshoot some issues I'm having with the Python map function that is part of a larger problem I'm having with trying to run my code concurrently. Why does map() here create an empty ...
ENIAC-6's user avatar
  • 936
0 votes
0 answers
374 views

I have a set of 35 NetCDF files (continental scale), each containing 365 daily layers of climate data with a resolution of 5 km, s. I need to do two main tasks: Subset, s_sub, these files based on a ...
Sarash's user avatar
  • 45
0 votes
0 answers
190 views

I have to extract rasters from a large TIFF file (about 8MB). For this purpose I use GeoTIFF v.2.0.7 readRasters, but performance is unsatisfying: reading rasters took: 395143.48280000035 ms As a ...
Michał Dubrowski's user avatar
3 votes
2 answers
340 views

We have a headless QGIS standalone script that needs to run some I/O intensive layer retrieval tasks, each as parallel background threads before doing further GIS processing. We are invoking our ...
eliangius's user avatar
  • 285
2 votes
0 answers
250 views

I have a Python function that downloads a geopackage from somewhere then does some stuff with it and at some point converts it to an ESRI file geodatabase. Now inside a python script I want to use ...
Mirco's user avatar
  • 21
3 votes
2 answers
1k views

I've gone through a large number of forum threads and cannot make sense of how possible it is to easily run two tools at the same time in PyQGIS. Basically what I'm wanting to do is: def function1(): ...
Buff Fox's user avatar
  • 305
1 vote
1 answer
233 views

I have two large gpkg datasets. I would like to clip one from the other and use parallel processing to speed up the process. However, I receive an error message. Code and error message shown below: #...
GISLad's user avatar
  • 11
0 votes
0 answers
278 views

I'm working with a table in the database that has more than 1 million records and a total load of this table takes about 8 hours because it has geographic data, the table is a featureclass. Basically, ...
Felipe L's user avatar
2 votes
1 answer
557 views

I have a Python script that hits a query endpoint for a map service on an unfederated server. I am avoiding the arcgis library because it is not performant enough and its compatibility with geopandas ...
jesnes's user avatar
  • 473

15 30 50 per page
1
2 3 4 5
9