Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
1 answer
46 views

In Denodo (version 9.0.10), I have a BaseView called "bv_AuditBase" containing two very important columns: "AttributeMask" and "ChangeData." The columns are filled in ...
Coppertank's user avatar
0 votes
1 answer
51 views

I’m working on a ROS2 Humble project where I need to generate a map using data from two LiDAR sensors. Each LiDAR has a 270° field of view, and I’m trying to merge their scans into a single unified ...
Artem Kushniryk Herasym's user avatar
0 votes
0 answers
100 views

I'm using React Leaflet to display a map with vehicle tracking points connected by a Polyline route. The issue is that when I zoom in/out or touch/drag the map, the Polyline route keeps re-rendering ...
HASAN SALEM AEMED AL-SAKKAF's user avatar
0 votes
0 answers
56 views

Sorry, not a coder just trying to figure out an issue on a WP site. Using 3rd party integrations from CF7 plugin to pull forms into a Salesforce instance, making some new forms up and suddenly stopped ...
Ben Pitkin's user avatar
1 vote
1 answer
88 views

I am using MapStruct to map data from a source DTO representing a JSON structure that contains a list of products: public class SourceDto { List<ProductDto> products; } I want to map it to ...
fascynacja's user avatar
  • 3,186
0 votes
0 answers
82 views

I have a problem with maintaining the order of kafka messages using Red Panda Connect in configuration in which I read from kafka, I have single bloblang mapping processor and an output to kafka. For ...
Paweł Serwaciński's user avatar
-3 votes
1 answer
156 views

I am facing an issue with configuring the Jackson ObjectMapper to deserialize java.sql.Timestamp. In particular, the issue is that deserialization with a mapper that was initialized via ObjectMapper ...
94621's user avatar
  • 113
1 vote
1 answer
59 views

I have a bathymetric shapefile structured as below. str(Ab_bath) Classes ‘sf’ and 'data.frame': 126 obs. of 13 variables: $ CLRRGB : chr "2844D9FF" "2651DCFF" "215DDEFF&...
mikejwilliamson's user avatar
0 votes
0 answers
26 views

I have an Archestra script that compiles and sends an email message. When running it, I receive: System.Data: No mapping exists from object type ArchestrA.QuickScript.Runtime.ExternalReference to a ...
Tleilax's user avatar
  • 75
0 votes
2 answers
94 views

In order to search for keywords using text mining tools, I need to retrieve the abstracts available on each of the URLs from the dat0 dataframe (given for example, URLs provided from this website) and ...
denis's user avatar
  • 962
6 votes
3 answers
176 views

I'm newer to PHP 8. I'm working in code where there are a number of 'constant' mappings. They are done using a static array in various classe. Example: public static $mapNamedIds = array( "...
HerrVlkr's user avatar
-2 votes
2 answers
199 views

I try to map a Point[] to a SqlServer database. "Point" is a struct made of 2 doubles: X,Y coordinates. I need to save an array of Point with EF Core into a SQL Server database. I can save ...
Eric Ouellet's user avatar
0 votes
1 answer
178 views

I'm building a generalized Pydantic model (let's call it model X) that I want to use to match and extract values from multiple different JSON schemas (model A, B, C, etc.). These schemas are fetched ...
lhau's user avatar
  • 1
0 votes
0 answers
39 views

I have been using extension methods to create my own mappers to go from POCOs to DTOs. I have noticed I have been a bit careless in my looping and been utilizing async and task.run to speed up loops ...
Qiuzman's user avatar
  • 1,843
1 vote
1 answer
159 views

Why isn't my MapStruct mapper populating my entity objects correctly? I believe I'm doing everything correctly, but for some reason, the mapping doesn't seem to work. Here are the details of my setup: ...
mahmudzadeh's user avatar
1 vote
1 answer
58 views

I have the following input xml <root> <test>1</test> <child> <test2>test2</test2> <child> <test3>test3</test3> <test4&...
Karimulla Shaik's user avatar
0 votes
1 answer
160 views

I've been trying to get away from using AutoMapper, since everyone seems to think it's the devil. Because of this, I've been putting all of my mapping into the DBO and DTO models that I'm handing back ...
CrystalBlue's user avatar
  • 1,925
1 vote
1 answer
111 views

I have an enum CarFeatures [Flags] public enum CarFeatures { None = 0, AdaptiveCruise = 1, // 'a' ParkAssist = 2, // 'p' RearCamera = 4 // 'r' } I have an entity Car public ...
Pavel Foltyn's user avatar
2 votes
1 answer
70 views

I would like to map this flat entity: @Entity @Table(name = "vw_class_schedule") @Data @NoArgsConstructor @AllArgsConstructor @Builder @Immutable @IdClass(ClassViewEntityId.class) class ...
David Pietrocola's user avatar
0 votes
1 answer
141 views

I have generated a map using tmap over which I'm overlaying some dots (using tm_symbols()). The dots indicate the location of the cases and the number of cases occuring there. I'm using the size of ...
mk123's user avatar
  • 25
0 votes
1 answer
42 views

Hello we faced a problem with lowercase normalizer during aggregation query. We have an initial mapping like "mappings": { "properties": { "keyword_value": { ...
Ilya Basalyha's user avatar
0 votes
1 answer
119 views

I am using OpenLayers v7.5 to display point features with icons and labels on a VectorLayer. To prevent label overlap, I enabled declutter: true, but this causes both icons and labels to disappear in ...
BinaryBrain's user avatar
0 votes
0 answers
17 views

Calling anyone familiar with mapping the state of Pennsylvania in the US! My map seems to be a bit distorted: the southern border curves slightly and the western border is slanted. I've seen maps ...
Rachel Hough's user avatar
0 votes
1 answer
112 views

Given the following example: .a: &a sheep: "a" .b : &b cow: "a" edileMamals: &edible_mamals << : *a << : *b edibleAnimals: &edible_animals ...
Gleb Nebolyubov's user avatar
0 votes
1 answer
55 views

I have a database view, based on a table with an additional column. My classes first looked like this: public class Person { public int Id { get; set; } public string Name { get; set; } } ...
Helmut's user avatar
  • 502
3 votes
0 answers
55 views

I noticed that some of my mappings were being executed multiple times and decided to investigate. I found out that chaining multiple ObservableValue#map calls, then adding a listener to the result ...
Alver415's user avatar
0 votes
1 answer
70 views

I'm trying to use jq to look up data from a json file with account mappings. So given an account number as input, I want to look up it's name from a file, and it needs to handle the account not being ...
sjoblomj's user avatar
  • 134
6 votes
1 answer
162 views

I am helping a set of data managers across the Pacific plot fisheries data within their EEZ. In trying to make a standard example that works for everyone, I have an issue with the latitude/longitude ...
Steven Hare's user avatar
0 votes
0 answers
21 views

I have an insert statement like; INSERT INTO table (column1, column2, column3 ) SELECT fact_1_id, fact_2_id, SUM(sales_value) AS sales_value FROM dimension_tab GROUP BY ROLLUP (...
Ilker Eker's user avatar
0 votes
2 answers
74 views

Assuming a 2d array as input, how can each first level key be copied as a new element in its second level row? Sample input: $members = [ 'myname' => ['userid' => 52, 'age' => 46], '...
mickmackusa's user avatar
  • 49.2k
1 vote
1 answer
76 views

I want to generate a unique and random code which looks like AAA-nnn from a sequence number: seq code (unique and random) 0 DFZ-980 1 FGG-443 2 CCZ-189 ... ... A ranges from 'A' to 'Z', n ranges from '...
LittleSaya's user avatar
0 votes
2 answers
62 views

I have a dataframe with a column of datetime type that I'd like to create a 2nd categorical column based upon. The second column should consist of string identifiers using the following logic: ON: [...
Chris's user avatar
  • 1,700
0 votes
0 answers
29 views

I have a polygon layer with 10 features with unique IDs. I want to color them deterministically based on this unique ID values field and store the RGB values of their colors, like in a dictionary. ...
Ben Hendel's user avatar
0 votes
0 answers
49 views

This would appear to be the most basic and trivial thing, except that I can't find out how to do it. I have a shapefile which contains the boundaries of all electorates in my state (this is in ...
Alasdair's user avatar
  • 1,414
0 votes
0 answers
62 views

I am currently mapping some network traffic and using geom_edge_parallel() to draw the edges, accounting for two way traffic. The labels for these parallel lines overlap with each other, when ideally ...
jlvb's user avatar
  • 1
0 votes
0 answers
18 views

As a data modeler, I want to data model the "Manual _Update_ODS.xlsx" file. Per agreement with Karthik, L1s do not go through Domain Model process. However, if you easily find a match then ...
Kartika's user avatar
1 vote
2 answers
78 views

I am trying to overlay lunge_count averages across hexagons on a map; however, I am only able to produce two separate plots (one of the geom_hex and one of the map). #libraries library(dplyr) # for ...
Allison Kane's user avatar
0 votes
1 answer
71 views

Suppose i have a tensor t consisting only zeros and ones: t = torch.Tensor([1, 0, 0, 1]) And a dict with the weights: weights = {0: 0.1, 1: 0.9} I want to form a new tensor new_t, such that every ...
onthebox's user avatar
0 votes
0 answers
28 views

I am on Elasticsearch 7.17.22. I have 2 indexes, the first "my_legacy_index", the second "my_new_index". I have a spark scala job that inserts the same dataframe into both indexes. ...
Fares DAOUD's user avatar
0 votes
1 answer
23 views

In Azure Logic Apps, files are fetched from a file location and file contents are read then we have to replace the charaters 0D-0A (windows EOL) with 0A (linux EOL) which is nothing but CR-LF with LF. ...
Chandana H S's user avatar
-1 votes
1 answer
101 views

i have one aws cognito custom attribute called custom:events_permission and it will be something like this [ { "id":"48d258b7-8949-41z4-815a-f141487a6de1", "...
user avatar
0 votes
0 answers
35 views

So I have two C# WCF services, lets call them A & B, and a QueueProcessor, lets call it Q. Service A has access to a DB that I need to get domain model data from. Service B generates a quote from ...
Haden693's user avatar
  • 174
1 vote
0 answers
92 views

I'm trying to account for dynamic objects coming into an endpoint and using a mapping template to transform it to the proper outout. However, the serialization is a but whacky causing the below error. ...
MH7086's user avatar
  • 133
0 votes
1 answer
49 views

I have created a Dash app using Python with an interactive map using mapbox. I want to generate drawdown contours at 10-ft intervals out to a 1-ft drawdown around a specified lat/lon using the Theis ...
user29044372's user avatar
0 votes
1 answer
143 views

I want to use Map Struct in my project but when I implement it in maven-compiler-plugin other all annotationProcessorPaths removed from project (most important one is Lombok). But after hours and ...
Ali İhsan TAŞDELEN's user avatar
0 votes
0 answers
55 views

I am having problems mapping through a json array to produce individual li's of the array items in astrojs. I was able to successfully map over a card component I made and was able to target specific ...
troyofcreative's user avatar
0 votes
0 answers
34 views

My SQL Server CE table BandsMembers has 2 columns, bandID and MemberID taken from Bands and Roster intending to show which members are in other bands as well as the home band. The BandsMembers table ...
user1818290's user avatar
0 votes
0 answers
51 views

What's the right way to map field as a MAP. e.g. we have a json { "name": "app", "data": {"f1": {}, "f2": "v1"}} { "name": "...
Shakirov Ramil's user avatar
0 votes
0 answers
326 views

I am receiving 'No Mapping Rule matched' in my 3scale configuration, and i have no idea why. In 3scale I have added the matching method as this: POST /one-time-password-sms/v0/send-code In my API ...
Ali Mumtaz's user avatar
0 votes
0 answers
122 views

I am trying to load my data onto a d3.js map but I keep getting this error: TypeError: cannot read properties of undefined I am using my own json data and nothing is mapping. It seems that it cannot ...
gb_rsh02's user avatar

1
2 3 4 5
199