9,915 questions
2
votes
0
answers
47
views
Removing outside border line in R map
I am working on highlighting groups of counties within Ohio and while I am happy with where I have ended up overall, I have one aesthetic issue I cannot seem to solve (and it may not be solvable).
...
0
votes
0
answers
67
views
Mapping an entity with an embedded key
There is a class with an EmbeddedId.
@Entity
@Getter
@Setter
@Table(name = "indicator_values")
public class IndicatorValue {
@EmbeddedId
public IndicatorValueId id;
@Column(...
-3
votes
1
answer
46
views
How to map two columns in Denodo using different delimiters (comma and tilde)
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 ...
0
votes
1
answer
51
views
Mapping with merged scan ROS2 Humble
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 ...
0
votes
0
answers
102
views
React Leaflet Polyline keeps re-rendering and flickering during map interactions (zoom/pan) - how to make it stable?
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 ...
0
votes
0
answers
56
views
CF7 3rd party integration php issue
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 ...
1
vote
1
answer
88
views
How to map a list of products in source JSON to a single product in target based on unique ID?
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 ...
0
votes
0
answers
82
views
Red Panda Connect bloblang mapping changes the order of messages
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 ...
-3
votes
1
answer
158
views
How to configure ObjectMapper to deserialize java.sql.Timestamp?
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 ...
1
vote
1
answer
59
views
ggplot Bathymetric shapefile plotting in a single colour
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&...
0
votes
0
answers
26
views
Archestra: No mapping exists from object type
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 ...
0
votes
2
answers
96
views
How to map multiple URLs to retrieve every text between a start word and end words in R? [closed]
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 ...
6
votes
3
answers
176
views
PHP Reference Map - Const vs Static
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(
"...
-2
votes
2
answers
200
views
How to map struct[] to db with EfCore
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 ...
0
votes
1
answer
179
views
How to match and populate a generic Pydantic model with deeply nested fields from similar but ref-inconsistent schemas?
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 ...