Corresponding every element of a given set to a unique element of another set
0
votes
0answers
17 views
How would I get a Google Maps style interactive map on my game's site?
I run the RPG campaign called Yarona: Darkness Ascending. I also run the site http://diebot.org/ and I want to incorporate what's found at http://www.uesp.net/oblivion/map/obmap.shtml using my own ...
0
votes
2answers
38 views
Many to Many Relationship Setter
I have a Many to Many relationship between my Entities: PurchaseOrder and Supplier. When I want do add a Supplier to an order in my Symfony project, I always get this error message:
Property ...
1
vote
0answers
11 views
Python: MapPlotting - Overlay points over Georeferenced Image
I have a Georeferenced TIFF file (UTM / WGS84) and some points in the (x,y) format also in the same projection. What I wish to do is plot the image, and then overlay the points on it. Any hints?
-1
votes
0answers
13 views
spring-data-neo4j: how to avoid getters & setters and only have field access
my current problem is the opposite of the post "Getting spring-data-neo4j to use getters and setters".
I have a NodeEntity for which I would like to avoid having Spring Data Neo4j accessing setters ...
1
vote
1answer
20 views
AutoMapper and interface typed collections
I'm new to AutoMapper. Sorry if this is too simple.
This is my sample domain:
I have a Basket. It contains a list of Food.
Food is either Banana or Pickle.
I have DTOs that mirror each class in the ...
0
votes
0answers
16 views
Symfony2 Jobeet tutorial day 3 error invalid mapping
When I generate bundle entities with code
php app/console doctrine:generate:entities EnsJobeetBundle
I'm getting this error
[Doctrine\Common\Persistence\Mapping\MappingException]
Invalid ...
0
votes
2answers
23 views
Why is The navigation property '' declared on type '' has been configured with conflicting multiplicities. error show up?
I am sorry if there is very little information provided, but I am in a rush.
I have an Asp_Users table and a Resource tables.
Also, in the Entity Framework world, I have a Asp_Users POCO and a ...
0
votes
0answers
9 views
Entity Framework CodeFirst mapping to a database with different names returns empty context
I have an english based application including context, entities, services and so on. The Database used to be in English but now we have to translate it to Spanish. I used the .ToTable() and ...
0
votes
0answers
12 views
Mapping PolarSSL x509_cert structure to PKCS#11 X.509 object
I want to write a C++ program to parse a X.509 compatible certificate file with PolarSSL, extract all of it's attributes & map them to a PKCS#11 object template for storing on a cryptographic ...
0
votes
0answers
12 views
How do I combine the geoJson of several countries to create a region
I have the geoJson for every country in the world, but I need to combine several countries to create a region to display on a map.
What is the best way to do this?
0
votes
1answer
62 views
map the point x,y in Cartesian coordinate into 2D Array elements
I would like to create a map of the enviroment, ie. my room. I want to have a 2D representation of my room using 2D Array.
I am trying to map a room, which has coordinate start at (5,5), (10,5), ...
-3
votes
0answers
14 views
How to join multiple tables in hibernate mapping xml file
I have three tables one master table and two child tables.
Table info:-
Master(id - pk),
child1(id - fk),
child2(id - fk),
Both the child table has the foreign key reference of master ...
2
votes
0answers
46 views
How do I create a dynamic tree in c# that adds up parents to respective children then recusively goes back through?
I want to be able to go through a loop with if statements that will store a set of data. After the first loop gets its values I want to make a loop that goes through the list of values just created. ...
0
votes
1answer
28 views
Getting the parameters out of uri
I setup a simple router class that extracts the following
Controller
Action
Parameters
class Router {
private $uri;
private $controller;
private $method;
private $params;
public function ...
2
votes
0answers
53 views
Fluent NHibernate table-per-inheritance (TPH) mapping for multi class in the hierarchy
Hello everyone,
I'm struggling with one Fluent NHibernate issue.
I have following template of class structure in the my solution:
class OneClass
{
public virtual string OneProp {get; set;}
}
...
1
vote
1answer
68 views
Sphere texture mapping opengl
I need to wrap a picture around a sphere and I have tried GLUquadric* img; img = gluNewQuadric();... However, I do not have access to glut.h or glu.h, only gl.h.
Here is the code that draws the ...
0
votes
1answer
16 views
Eager loading an optional one-to-one with NHibernate
Consider the following simplified domain:
public class Movie
{
public virtual int Id { get; set; }
public virtual MovieDetail MovieDetail { get; set; }
}
public class MovieDetail
{
...
0
votes
0answers
8 views
Doctrine - Deduplicate on Insert
I am trying to create system where upon creating a new entity and then flushing it, a check will be made to see if another row is the same, and if it is, the newly created entity becomes the existing ...
0
votes
3answers
95 views
2D texture or cube mapping
I am trying to create a planet(OpenGL and C++), but I don't know how to wrap a picture around the sphere I have created.
I am able to create a solid sphere and I can also draw the grid (Latitude and ...
0
votes
1answer
13 views
ValueInjecter injecting between models with same property names
I am trying to inject properties from ProductCategoryViewModel, which has Title and Id properties into ProductViewModel, which also has Title and Id properties (but for Product) and ...
0
votes
1answer
29 views
How to properly set entity update time with Doctrine?
Column in MySQL table is called "updated_at".
It's of datetime type, not null.
Doctine type is datetime as well.
CREATE TABLE `example` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
...
0
votes
1answer
52 views
Entity framework map column which is not in old database
I have table in a new DB which contains column 'Note'. I have old DB with the same table with the same structure which have not column 'Note'.
I changed edmx, I added (mapped) column 'Note' from new ...
1
vote
1answer
21 views
How do I map to a parent in the same table with NHiberNate using C# (ClassMapping)
I have a following class in which it has a parent of same type,
public class Unit
{
public virtual int UnitKey { get; set; }
public virtual string UnitName { get; set; }
public virtual ...
-2
votes
0answers
35 views
Formula for calculating Index and Tag bits [closed]
I need to calculate Cache Hits and Misses with the given values:
Main Memory Size, suppose 375MB
Cache Memory Size suppose 1024KB
Block Size 32Bit
Set associativity 2
Currently I am using the ...
0
votes
1answer
25 views
One-to-Many With Composite Keys and Different Column Names in Grails
This is a syntax question. I want a one-to-many relationship between Foo -> Bar (simplified here):
class Foo {
String fooPK1, fooPK2
static mapping = {
id composite: ["fooPK1", ...
2
votes
1answer
27 views
How to tell Automapper to check if all source properties have destination properties
We have two classes:
public class Foo
{
public int A { get; set; }
public int B { get; set; }
public int C { get; set; }
}
public class Bar
{
public int A { get; set; }
public ...
0
votes
1answer
45 views
ios Restkit - Mapping objects with a list within another list
I'm trying to map objects using Restkit. I have no problems mapping normal JSON responses. In this case i have a problem because I want to map a response with this configuration:
{
"id": 161,
...
0
votes
1answer
18 views
Mapping an Array using Fluent N Hibernate
I am not sure if fluent n hibernate can do this or not, but I cannot figure out how.
I have a table - cases and some properties
ownerId, brokerId, shipperId
I want to map this to my property:
...
0
votes
1answer
9 views
how to display routing data online (with the lines between points)
I have a set of routing data, in both CSV or KML format. It is basically a list of Lat / Lon and some supporting information.
I am looking for a way to display this as a route (e.g. with lines ...
0
votes
0answers
62 views
how to do particles texture mapping with three.js shaderMaterial?
what I'm trying to achieve is having a particle system where each particle have a portion of a given texture. Below is a example of a particles's buffergeometry using a shader material.
so far I can ...
1
vote
1answer
31 views
RestKit 0.20 Ignore putObject: mapping
I'm trying to send an object to the server (PUT request) without a mapping because I already have everything I need from the server. The callback directly goes to failure, even though the server has ...
0
votes
0answers
18 views
Spring AbstractPdfView - change the response so it has a file name rather than the request path
I have a controller that returns a view that overrides AbstractPdfView. Works great except for the fact when the user goes to save the PDF form the browser it tries to save a the request path (seems ...
0
votes
0answers
23 views
Giving null reference when accessing Object using ODM for ldap in spring
Need your help. I am getting null ref when mapping java object as user which contain properties.
@Entry(objectClasses = {"person","top"} )
public final class Users{
@Id
private Name dn;
...
1
vote
2answers
53 views
How grails has implemented handler mappings?
I have been trying to mock grails' convention over configuration paradigm in a spring mvc application and i am finding it difficult to automate handler mappings.
Basically i have a controller like ...
0
votes
0answers
7 views
Fluent NHibernate HasMany cascad deleting
I have mapping for parent:
public PersonMap()
{
Map(x => x.Gender).CustomType<GenderEnum>().Not.Nullable();
Map(x => x.FirstName).Not.Nullable();
...
1
vote
1answer
14 views
Adobe Firworks-Line through mapped image
I have a problem with Adobe Fireworks.
I was mapping some stuff via Polygon Slice/Hotspot tool and this white lines appeared cross-image.
Any solutions, how to retouch/delete them?
0
votes
0answers
11 views
Hibernate 1:n:1 ternary mapping annotations
How can I do this with Hibernate 4.3.0 where @MapKeyManyToMany does not exist. Thank you.
PLEASE do not suggest me to make "middle" table as class and map all relations sepparately. It is not a ...
2
votes
1answer
92 views
Shadow mapping with multiple shadows
I've implemented shadow mapping using ARB extensions following this tutorial
http://www.paulsprojects.net/tutorials/smt/smt.html
I've modified the code to add another light source. I've created and ...
2
votes
2answers
40 views
What does 'cs' command do in vim and why is it that I can't map it to do other things?
I have the ConqueTerm plugin installed in my vim so that I can run bash commands without leaving my editing environment. It's cool when you can run Python scripts while seeing you code within the same ...
1
vote
0answers
23 views
Index of an address in Associative Mapped Cache
While calculating the Index of a memory trace adddress in Associative Maping, i am using the folllowing code:
address is a trace address read from a memory trace file.
BLOCK_SHIFT=5 // fro 32bit ...
0
votes
1answer
27 views
OpenGL SOIL painting the entire screen with the texture colour
I'm trying to load a PNG texture in OpenGL using the SOIL libray, and show the texture in GL QUAD, but when I call the function, the image is loaded correctly, but change the color of entire screen!
...
0
votes
1answer
32 views
How can I add a new attribute to a RestKit-mapped object after object creation from JSON?
Here's my scenario:
I get a JSON list from an API call, and use a RestKit mapping to generate the associated objects, with Core Data backing.
I then use a property on one of these objects (= parent) ...
0
votes
1answer
46 views
My symfony2 page goes into infinite loop after refresh
I'm experiencing very strange behaviours when i go to the page that shows the detail of a group
When I load my page the first time the server is up the page show the content as expected. But if I ...
-1
votes
0answers
33 views
Mapping Hibernate with assosiations can not understand
Thanks that we have place like this to ask.
I'm very new in Hibernate, have read a lot. but something I feel I have not ready to understand.
I'm facing the problem with make assosiations between my ...
1
vote
1answer
27 views
How to observe a child object using KnockoutJS and mapping plugin?
With a JSON like that:
JSON string
{
"SelectedOption" : {},
"Options" : [
{ "ID": 0, "Name": "Zero" },
{ "ID": 1, "Name": "One" }
]
}
The question is: How can I tell to mapping ...
0
votes
3answers
39 views
JSON is an object of strings - but I need the last member of the JSON to be a byte array
I've got a web service that "listens" for an HTTP POST request that sends JSON data- here's the start of the method that does this:
// POST api/GeoPic
[HttpPost]
public HttpResponseMessage ...
0
votes
1answer
80 views
Hibernate configuration file
It seems that I have a problem with my configuration file but I really don't find out what it could be.
I used to use hibernate 3.6, I now use hibernate 4.2, there are proly some important changes ...
2
votes
1answer
82 views
How do you create nested dict in Python?
I have 2 csv files. First one is data file and other one is mapping file. Mapping file has 4 columns Device_Name GDN Device_Type Device_OS
These are also the columns which are present in data file ...
1
vote
0answers
11 views
What is the image of a void function?
If functions are borrowed from the mathematical concept of mapping a value from some set S onto T, then the function:
int increment(int input)
{
return input + 1;
}
would be the mapping from ...
0
votes
1answer
68 views
Hibernate HashMap mapping
I am new to hibernate and I need to map an existing class structure to the database.
Right now I have a Player, Arsenal and Weapon class. Every Player has his own (one) Arsenal - no problem. In the ...

