We inject $http in our controller: .controller("mainController", function ($scope, $http) {...}
We use ng-init to fill the Data by start: div ng-controller="..." ng-init="init()"
Our controller gets the data than in this function $scope.init = function () {...}
The controller gets the data using jsonp: $http.jsonp(site).success(function (data) {...}
We use forEach, to proceed the json-arrays: angular.forEach(data, function (value, index) {...} If we need to proceed one Array in another array, than in inner forEach we use value from extern forEach.