fuzzybear
fuzzybear

Reputation: 2405

Exception thrown when adding item to list

I am rather confused. I'm getting an object reference error on the line containing GeoRoot.features.Add(Feat);, which looks like a list to me. What am I doing wrong?

public double getDistance(GeoCoordinate p1, GeoCoordinate p2)
{
    double d = p1.Latitude * 0.017453292519943295;
    double num3 = p1.Longitude * 0.017453292519943295;
    double num4 = p2.Latitude * 0.017453292519943295;
    double num5 = p2.Longitude * 0.017453292519943295;
    double num6 = num5 - num3;
    double num7 = num4 - d;
    double num8 = Math.Pow(Math.Sin(num7 / 2.0), 2.0) + ((Math.Cos(d) * Math.Cos(num4)) * Math.Pow(Math.Sin(num6 / 2.0), 2.0));
    double num9 = 2.0 * Math.Atan2(Math.Sqrt(num8), Math.Sqrt(1.0 - num8));
    return (6376500.0 * num9);
}

public GeoRootObject GetRndNearybyLocationList(double lat, double lon, int meters)
{
    GeoRootObject GeoRoot=new GeoRootObject();


    LocationObject thisRndLocation = new LocationObject();
    List<LocationObject> locationsList = new List<LocationObject>();

    //List<GeoJSON.Net.Geometry.GeographicPosition> Positions = new List<GeoJSON.Net.Geometry.GeographicPosition>();

    Random rnd = new Random();
    int dice = rnd.Next(1, 7);


    for (int i = 1; i <= dice; i++)
    {
        thisRndLocation = getLocation(lat, lon, meters);
        GeoRoot.type = "FeatureCollection";
        Feature Feat = new Feature();
        Feat.type = "Point";
        List<double> coOrds = new List<double>();
        coOrds.Add(thisRndLocation.lon);
        coOrds.Add(thisRndLocation.lat);
        GeoRoot.features.Add(Feat);
        Geometry Geometry = new Geometry();
        Geometry.coordinates = (coOrds);
        Geometry.type = ("Point");
        Feat.geometry = Geometry;
        Feat.id = i;
        GeoRoot.features.Add(Feat);

    }
    return GeoRoot;
}

Below are the classes called in the method fragment above

public class Geometry
{
    public string type { get; set; }
    public List<double> coordinates { get; set; }
}

public class Properties
{
    public string popupContent { get; set; }
}

public class Feature
{
    public Geometry geometry { get; set; }
    public string type { get; set; }
    public Properties properties { get; set; }
    public int id { get; set; }
}

public class GeoRootObject
{
    public string type { get; set; }
    public List<Feature> features { get; set; }
}

Upvotes: 0

Views: 2466

Answers (1)

Magus
Magus

Reputation: 1312

The primary issue you seem to be having is that you're attempting to call the .Add() method on a null list. On the line before the one that's giving you issues, try adding GeoRoot.features = new List<Feature>();

Upvotes: 2

Related Questions