From anyObject to array of coordinates - swift

New to Swift and json
I want to extract lng,lat from anyObject elements.
Here a part of my code to extract from json file:
for (key,value) in geoFeature! as [String: AnyObject] {print("key=",key, ptvir, value)}
let geoCoords = geoFeature?["coordinates"] as AnyObject
Resulting to :
Printing description of geoCoords:
▿ 1 element
▿ 0 : 11 elements
▿ 0 : 2 elements
- 0 : -73.596408
- 1 : 45.453657
▿ 1 : 2 elements
- 0 : -73.595466
- 1 : 45.451156
▿ 2 : 2 elements
- 0 : -73.59532
- 1 : 45.450786
▿ 3 : 2 elements
- 0 : -73.596114
- 1 : 45.450639
▿ 4 : 2 elements
- 0 : -73.596616
- 1 : 45.450549
▿ 5 : 2 elements
- 0 : -73.596746
- 1 : 45.450911
▿ 6 : 2 elements
- 0 : -73.596867
- 1 : 45.451248
▿ 7 : 2 elements
- 0 : -73.59716
- 1 : 45.452082
▿ 8 : 2 elements
- 0 : -73.597514
- 1 : 45.45307
▿ 9 : 2 elements
- 0 : -73.597638
- 1 : 45.453437
▿ 10 : 2 elements
- 0 : -73.596408
- 1 : 45.453657
From here, I did not find the code to create an array of coordinates

More details:
From a json file like this part:
{
"type": "FeatureCollection",
"name": "MtlAires2016Bref",
"features": [
{ "type": "Feature", "properties": { "ADIDU": "24661006" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.596408, 45.453657 ], [ -73.595466, 45.451156 ], [ -73.59532, 45.450786 ], [ -73.596114, 45.450639 ], [ -73.596616, 45.450549 ], [ -73.596746, 45.450911 ], [ -73.596867, 45.451248 ], [ -73.59716, 45.452082 ], [ -73.597514, 45.45307 ], [ -73.597638, 45.453437 ], [ -73.596408, 45.453657 ] ] ] } }
]
}
My code extract properties for each Feature
The problem is to extract all the polygon coordinates with the result of these 2 lines of code:
for (key,value) in geoFeature! as [String: AnyObject] {print("key=",key, ";", value)}
let geoCoords = geoFeature?["coordinates"] as AnyObject
print("geoCoords=", geoCoords as Any)
result of this print:
geoCoords= (
(
(
"-73.596408",
"45.453657"
),
(
"-73.595466",
"45.451156"
),
(
"-73.59532",
"45.450786"
),
(
"-73.596114",
"45.450639"
),
(
"-73.596616",
"45.450549"
),
(
"-73.596746",
"45.450911"
),
(
"-73.596867",
"45.451248"
),
(
"-73.59716",
"45.452082"
),
(
"-73.597514",
"45.45307"
),
(
"-73.597638",
"45.453437"
),
(
"-73.596408",
"45.453657"
)
)
)
I did not find how to iterate in geoCoords and append coordinates to an array.
Next line give me the same listing; not array
for element in geoCoords as! Array {
//print("elem=",element)}
but if I ask for the type of the variable like this
String(describing: type(of: coordsData))
it's = Array
the next line give an empty array
let tblC = coordsData as [CLLocationCoordinate2D]

Please learn to read JSON. It's pretty easy. There are only two collection types, array ([]) and dictionary ({}). So the value for key coordinates is a nested array of Double ([[[Double]]]).
It's impossible to cast a double array to CLLocationCoordinate2D because the type is not related.
And the unspecified JSON type is Any, never AnyObject
if let geoCoords = geoFeature["coordinates"] as? [[[Double]]] {
for outerCoords in geoCoords {
for innerCoords in outerCoords {
print(innerCoords)
}
}
}

Related

Alamofire 5 send array of dictionaries

I tried to send an array of dictionaries but the server receive another object
ejm
let param: [String: Any] = [
"info1": "test",
"info2": [
[
"material_id": 1,
"qty": 10
],
[
"material_id": 2,
"qty": 5
]
]
]
let request = AF.request(url, method: .post, parameters: params)
request.responseJSON { response in
guard response.error == nil else {
print(response.error)
return
}
print(response.value)
}
in my server when I print $_POST["info2"] the result is:
▿ value : 4 elements
▿ 0 : 1 element
▿ 0 : 2 elements
- key : material_id
- value : 1
▿ 1 : 1 element
▿ 0 : 2 elements
- key : qty
- value : 10
▿ 2 : 1 element
▿ 0 : 2 elements
- key : material_id
- value : 2
▿ 3 : 1 element
▿ 0 : 2 elements
- key : qty
- value : 5
im trying to encode the request but alamofire doesnt allow any to encode

Force list type in $min update operator

I have documents with the following structure:
{
"_id" : 0,
"mins" : {
"ts1" : {
"node1" : [
1,
2,
3
],
"node2" : [
4,
5,
6
]
}
}
}
I'd like to update documents by taking the component-wise minimum for an array. As MongoDB does not support $min on arrays (I think), I'm updating each index individually like so:
db.foo.updateOne(
{"_id" : 0},
{$min: {
"mins.ts3.node1.0": 1,
"mins.ts3.node1.1": 2
}}
)
This works fine but the problem is that if the document does not have the array before updating, MongoDB creates a nested document instead of an array:
{
"_id" : 0,
"mins" : {
"ts1" : {
"node1" : [
1,
2,
3
],
"node2" : [
4,
5,
6
]
},
"ts3" : {
"node1" : {
"0" : 1,
"1" : 2
}
}
}
}
Is there a way to tell MongoDB it is updating a list even if the list does not exist yet?
I'd like to avoid creating empty lists for each document as that would break my current program design.

addToSet for an array in an array

Given this sample document:
> db.sample.find().pretty()
{
"_id" : ObjectId("570f76ca4fe66c8ae29f13cd"),
"a" : [
{
"b" : [
1,
2,
3
]
},
{
"b" : [
1,
2,
3,
4
]
},
{
"b" : [
4
]
}
]
}
I'm trying to add the number 4 to b array for each instance in the a array
I had hoped that
db.sample.update({},{$addToSet:{"a.b":4}})
would do the trick, but this yields the error:
cannot use the part (a of a.b) to traverse the element ({a: [ { b: [ 1.0, 2.0, 3.0 ] }, { b: [ 1.0, 2.0, 3.0, 4.0 ] }, { b: [ 4.0 ] } ]})
Is such a update possible? Obviously I can pull each document to the client side update and replace, but that's really only a last resort.
It looks like until SERVER-1243 Jira is implemented, you'll have to do it one-by-one for each item in the array, e.g.:
db.sample.update({},{$addToSet:{"a.0.b":4}})
db.sample.update({},{$addToSet:{"a.1.b":4}})
If you only need to update first element you could have used:
db.sample.update({},{$addToSet:{"a.$.b":4}})

How can create assoc 3D Array of Array?

I tried create Array 3D but i still don't know how to create one ?
var array = [
"10001": [
"last_index": 0, //Int
"conteiner": [
"id_from": 321, // Int
"val2": "string text" // String
]
]
]
This works for me in Swift 2.0:
let array : [String : [String : Any]] = [
"10001": [
"last_index": 0, //Int
"conteiner": [
"id_from": 321 as Any, // Int
"val2": "string text" as Any // String
]
]
]
array["10001"]?["last_index"] // 0

Mongodb -how to find records that contain certain keywords array

Recently I wanted to filter out records that contain a certain keyword array in MongoDB, for example: I have five records that contain keywords array:
{a:[1,2]}
{a:[1,3,8]}
{a:[1,2,5]}
{a:[3,5,1]}
{a:[4,5]}
If I input the array [1,2,3,5] for search, then I want to get:
{a:[1,2]}
{a:[1,2,5]}
{a:[3,5,1]}
Each of them is a sub array of [1,2,3,5].
Any idea?
Please don't use a where clause (when possbile). Thanks!
Its simple to do in mongodb, but the harder part is preparing the data for the query. Let me explain that in oder
Simple part
You can use $in to find the matching elements in an array. Let us try
db.coll.find({a:{$in:[1,2,3,5]})
and the result is
{ "_id" : ObjectId("4f37c41739ed13aa728e9efb"), "a" : [ 1, 2 ] }
{ "_id" : ObjectId("4f37c42439ed13aa728e9efc"), "a" : [ 1, 3, 8 ] }
{ "_id" : ObjectId("4f37c42c39ed13aa728e9efd"), "a" : [ 1, 2, 5 ] }
{ "_id" : ObjectId("4f37c43439ed13aa728e9efe"), "a" : [ 3, 5, 1 ] }
{ "_id" : ObjectId("4f37c43e39ed13aa728e9eff"), "a" : [ 4, 5 ] }
ohh, its not the result we expected. Yes because $in return an item if any matching element found (not necessarily all).
So we can fix this by passing the exact array elements to $in, for example if we want to find the items matching these exact arrays {a:[1,2]} {a:[1,2,5]} and {a:[4,5,6]}
db.coll.find({a:{$in:[[1,2],[1,2,5],[4,5,6]]}})
you will get
{ "_id" : ObjectId("4f37c41739ed13aa728e9efb"), "a" : [ 1, 2 ] }
{ "_id" : ObjectId("4f37c42c39ed13aa728e9efd"), "a" : [ 1, 2, 5 ] }
Thats all
Hardest part
The real hardest part is forming all the possible combination of your input array [1,2,3,5]. You need to find a way to get all the combination of the source array (from your client) and pass it to $in.
For example, this JS method will give you all the combinations of the given array
var combine = function(a) {
var fn = function(n, src, got, all) {
if (n == 0) {
if (got.length > 0) {
all[all.length] = got;
}
return;
}
for (var j = 0; j < src.length; j++) {
fn(n - 1, src.slice(j + 1), got.concat([src[j]]), all);
}
return;
}
var all = [];
for (var i=0; i < a.length; i++) {
fn(i, a, [], all);
}
all.push(a);
return all;
}
>> arr= combine([1,2,3,5])
will give you
[
[
1
],
[
2
],
[
3
],
[
5
],
[
1,
2
],
[
1,
3
],
[
1,
5
],
[
2,
3
],
[
2,
5
],
[
3,
5
],
[
1,
2,
3
],
[
1,
2,
5
],
[
1,
3,
5
],
[
2,
3,
5
],
[
1,
2,
3,
5
]
]
and you can pass this arr to $in to find all the macthing elements
db.coll.find({a:{$in:arr}})
will give you
{ "_id" : ObjectId("4f37c41739ed13aa728e9efb"), "a" : [ 1, 2 ] }
{ "_id" : ObjectId("4f37c42c39ed13aa728e9efd"), "a" : [ 1, 2, 5 ] }
Wait!, its still not returning the remaining two possible items.
Because have a good look at the arr, it finds only the combination. it returns [1,3,5] but the data in document is [3,5,1]. So its clear that $in checks the items in given order (weird!).
So now you understand its the really hard comparing the mongodb query!. You can change the above JS combination former code to find the possible permutation to each combination and pass it to mongodb $in. Thats the trick.
Since you didn't mention any language choice its hard to recommend any permutation code. But you can find lot of different approaches in Stackoverflow or googling.
If I understood, you want to return only the objects whose all values of property a are in the find array argument.
By following the Travis' suggestion in the comments, you must follow these steps:
Define a JS function to achieve your desires (since there's no native way to do that in MongoDB);
Save the function on the server;
Use the function within $where.
If define your function to use only to that specific property (a, in this case), you may want skip the step 2. However, since it can be an useful function for other properties of other documents, I defined a more generic function, which must to be save on the server to be used AFAIK (I'm new on Mongo, too).
Below there are my tests on the mongo shell:
<--! language: lang-js -->
// step 1: defining the function for your specific search
only = function(property, values) {
for(var i in property) if (values.indexOf(property[i]) < 0) return false
return true
}
// step 2: saving it on the server
db.system.js.save( { _id : 'only', value : only } )
// step 3: using the function with $where
db.coll.find({$where: "only(this.a, [1,2,3,5])"})
With the 5 objects you provided on the question, you will obtain:
{ "_id" : ObjectId("4f3838f85594f902212eb532"), "a" : [ 1, 2 ] }
{ "_id" : ObjectId("4f3839075594f902212eb534"), "a" : [ 1, 2, 5 ] }
{ "_id" : ObjectId("4f38390e5594f902212eb535"), "a" : [ 3, 5, 1 ] }
The downside is performance. See more.