Re: GeoDjango GIS Model Fieldset Usage

2018-01-10 Thread Jani Tiainen
Hi, Apparently you have mistaken what GeoDjango is. GeoDjango is a GIS framework, that is it deals with (usually) real world coordinates. And in most cases coordinates are 3D. Two well known coordinate systems are WGS84 (GPS uses this) and second one is Google Transverse Mercator. GIS is u

Re: GeoDjango GIS Model Fieldset Usage

2018-01-10 Thread Shazia Nusrat
For Instance...lets say I need to let customer calculate Azimuth for the home roof with ModelForm. Its not a simple one single direction. If you can do it let me know with example. Regards, Shazia. On Wed, Jan 10, 2018 at 11:30 PM, Jani Tiainen wrote: > Hi. > > So what is your actual problem? >

Re: GeoDjango GIS Model Fieldset Usage

2018-01-10 Thread Jani Tiainen
Hi. So what is your actual problem? 11.1.2018 3.04 "Shazia Nusrat" kirjoitti: > Hi, > > I need quick help about using the fields in the following model: > > class Size(models.Model): >azimuth = models.CharField(max_length=200, blank=True, null=True) >tilt = models.CharField(max_length=2

GeoDjango GIS Model Fieldset Usage

2018-01-10 Thread Shazia Nusrat
Hi, I need quick help about using the fields in the following model: class Size(models.Model): azimuth = models.CharField(max_length=200, blank=True, null=True) tilt = models.CharField(max_length=200, blank=True, null=True) boundary_coordinates = models.CharField(max_length=200, blank=Tr