[GRASS-user] question on Stray light Landsat 8 data
Gabriel Cotlier
gabiklm01 at gmail.com
Mon Aug 19 15:18:24 PDT 2019
Dear Markus,
Thanks a lot for the clarification and explanation, your response was
indeed helpful.
I got for all maps in the mapset I used, for both the DMSP original raster
layers and the intercallibrated rasrer layers the following:
r.info map= name_of_raster_map
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
Which, following what you said before in your response I understand makes
it correct region, right?
Another question I wanted to ask is: how to know whether the operation of
intercallibration was correctly done, for tha I thought maybe thare is the
a place from where I can corroborate whether the min and max values of each
intercallibrated raster layer is correct?
I'm attaching the log of all the files I got from 'r.info' command in it
there appears always for the region '360 degree EW extent is exceeded by 1
cells' and also the min and max value of each intercallibrated raster
layer.
So as to know if I got all the raster correctly intercallibrated maybe
checking if the min and max value for each intercallibrated corresponds
correctly is there a place where I can check that?
Maybe according to my attached log file is possible to know if all the
intercallibration operation was correctly done and thus the layers are
ready for further study and analysis.
Thanks a lot again for your help.
Kind regards,
Gabriel
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=icon>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=link>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
On Mon, Aug 19, 2019 at 4:41 PM Markus Metz <markus.metz.giswork at gmail.com>
wrote:
>
>
> On Mon, Aug 19, 2019 at 12:05 AM Gabriel Cotlier <gabiklm01 at gmail.com>
> wrote:
> >
> > Hello,
> > My question is how does it influence the fact that it say:
> > 360 degree EW extent is exceeded by 0.999827 cells
>
> this is caused by the truncated resolution of 0.008333333300000
> with a corrected resolution of 00:00:30, the message is
>
> > 360 degree EW extent is exceeded by 1 cells
>
> considering the EW extents of 180:00:15W to 180:00:15E, that means that
> the first column from 180:00:15W to 179:59:45W and the last column from
> 179:59:45E to 180:00:15E spatially overlap, the first and last column of
> DMSP are duplicates with regard to their location. If you want to avoid
> this warning, you can set the region to w=179:59:45W e=180:00:15E.
>
> Note that the recommended way to set a computational region to a raster
> map is g.region rast=name_of_raster_map. After that, as for DMSP, you might
> want to adjust the computational region to your needs, e.g. a smaller
> region of interest, or restrict it to 360 degrees EW extent in case the
> raster map is exceeding 360 degrees EW extent.
>
> HTH,
>
> Markus M
>
> >
> >
> >
> >
> >
> >
> > while when I loaded a first file I defined a region as
> >
> >
> > which is exactly I suppose the correct region for the DMSP data.... then
> after loading the other layers it appears:
> >
> > 360 degree EW extent is exceeded by 0.999827 cells
> > 360 degree EW extent is exceeded by 1 cells
> >
> > Thanks a lot
> > Gabriel
> >
> >
> >
> >
> > On Sun, Aug 18, 2019 at 6:54 PM Gabriel Cotlier <gabiklm01 at gmail.com>
> wrote:
> >>
> >> Hello, another question, regarding i.nightlights.intercalibration, can
> I run this code as python package/lbrary loading it from Spyder or Jupiter
> Notebook instead of using GRASS interface, if so how is a convenient way
> to install i.nightlights.intercalibration in python using Spyder?
> >> Thanks a lot.
> >> Gabriel
> >>
> >> On Sat, Aug 17, 2019 at 4:54 PM Gabriel Cotlier <gabiklm01 at gmail.com>
> wrote:
> >>>
> >>> Dear Nikos.
> >>> After a long time I'm trying to reproduce a routine I have for doing
> intercallibratrion of DMSP 1992-2012 but for some reason It doesn't work to
> me. I think is because the problem between the region of the layers 30 arc
> sec should resolution be from 0.008333333300000 to 0.008333333333333, i.e.
> exactly 30 arc-seconds? and the computational region be the same ? I got
> stuck on how to set it to work... from the side of the region setting.
> >>> However in addition my routing also has a for loop which does not work
> ok as well.
> >>> I would appreciate a lot of you can give it a look and tell me how to
> make it work...
> >>> Thanks a lot in advance
> >>> Kind regards,
> >>> Gabriel
> >>>
> #####-----------------------------------------------------------------------------------------
> >>> # complete routine for intercalliration of DSMP/OLS light stable
> product
> >>>
> >>> import grass.script as gscript
> >>> import os
> >>> import os,glob
> >>>
> >>> # get working directory
> >>> print os.getcwd()
> >>>
> >>> # change working directory where raster files are
> >>> os.chdir('C:\\Users\\Gabriel\\Documents\\grassdata\\lights')
> >>>
> >>> # see files in directory
> >>> ls
> >>>
> >>> # import all raster files to grass --- here is a kind of problem...???
> >>> for tif_file in glob.glob("*.tif"):
> >>> new_rast = os.path.splitext(tif_file)[0]
> >>> grass.run_command("r.in.gdal", flags="a", input=tif_file,
> output=new_rast)
> >>>
> >>> # get info of one of the imported raster
> >>> r.info map=F121996
> >>>
> >>> # run intercalliration algorithm
> >>> i.nightlights.intercalibration
> image=F101992,F101993,F101994,F121994,F121995,F121996,F121997,F121998,F121999,F141997,F141998,F141999,F142000,F142001,F142002,F142003,F152000,F152001,F152002,F152003,F152004,F152005,F152006,F152007,F162004,F162005,F162006,F162007,F162008,F162009,F182010,F182011,F182012,F182013
> suffix=c model=elvidge2014 -t
> >>>
> >>> # correct general region adjust to raster file --- here the region is
> exactly 30 arc for the raster as I could see....
> >>> g.region raster=F121996
> >>>
> >>> # cerate a list of rasters in the mapset
> >>> # rastlist=grass.read_command("g.list",type="rast").split()
> >>> rasters = grass.read_command('g.list', type='raster').splitlines()
> >>>
> >>> # change working directory
> >>> os.chdir('C:\\Users\\Gabriel\\Desktop\\out')
> >>>
> >>> # save rasters in mapset to file
> >>> for raster in rasters:
> >>> grass.run_command('r.out.gdal', input=raster, output=raster +
> '.tiff', format='GTiff')
> >>>
> >>> On Wed, Aug 22, 2018 at 10:06 AM Gabriel Cotlier <gabiklm01 at gmail.com>
> wrote:
> >>>>
> >>>> Dear Nikos,
> >>>>
> >>>> Thanks a lot for your answer and the orientation.
> >>>> The information and the link are very useful.
> >>>> Kind regards,
> >>>> Gabriel
> >>>>
> >>>>
> >>>> On Wed, Aug 22, 2018 at 5:19 AM Nikos Alexandris <
> nik at nikosalexandris.net> wrote:
> >>>>>
> >>>>> * Gabriel Cotlier <gabiklm01 at gmail.com> [2018-08-21 12:00:24 -0300]:
> >>>>>
> >>>>> >Dear Nikos and GRASS users,
> >>>>> >
> >>>>> >I would like to ask if nonetheless the effect due to "stray light"
> the
> >>>>> >*i.landsat8.swlst* code for split window is still applicable to
> Landsat 8
> >>>>> >data and whether these error is specially visible on water bodies?
> and
> >>>>> >whether band 10 is better than band 11 in terms of correction
> processing
> >>>>> >for Level -1 data products?
> >>>>> >
> >>>>> >Thanks a lot.
> >>>>> >
> >>>>> >Kind regards,
> >>>>> >Gabriel
> >>>>>
> >>>>> Dear Gabriel,
> >>>>>
> >>>>> for details and references, refer to
> >>>>>
> >>>>>
> https://landsat.gsfc.nasa.gov/landsat-8-thermal-data-ghost-free-after-stray-light-exorcism/
> >>>>>
> >>>>> Make sure you use the newest Level-1 Collection 1 Landsat 8 products.
> >>>>>
> >>>>> I use `i.landsat8.swlst` and plan to improve it further.
> >>>>>
> >>>>> However, whether to prefer a Split-Window based approach, or another
> >>>>> Single-Channel one, depends on what you want to do. Think of spatial
> >>>>> extent and coverage of various land (cover) types, temporal extent
> >>>>> and more.
> >>>>>
> >>>>> Thermal remote sensing is hard(er) also because it's hard to get
> >>>>> ground-truth data sets so as to validate LST estimations.
> >>>>>
> >>>>> Nikos
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/grass-user/attachments/20190819/4facbab6/attachment-0001.html>
-------------- next part --------------
(Mon Aug 19 18:51:26 2019)
r.info map=F101992 at Gabriel
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F101992 at Gabriel Date: Sun Aug 18 21:34:38 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: F101992 |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="C:\Users\Gabriel\Desktop\F101992.tif" output="F1\ |
| 01992" memory=300 offset=0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:51:27 2019) Command finished (0 sec)
(Mon Aug 19 18:52:32 2019)
r.info map=F101993
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F101993 Date: Sun Aug 18 21:17:07 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F101993.tif" output="F101993" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:52:32 2019) Command finished (0 sec)
(Mon Aug 19 18:52:43 2019)
r.info map=F101994
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F101994 Date: Sun Aug 18 21:17:20 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F101994.tif" output="F101994" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:52:44 2019) Command finished (0 sec)
(Mon Aug 19 18:52:53 2019)
r.info map=F121994
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121994 Date: Sun Aug 18 21:17:33 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F121994.tif" output="F121994" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:52:54 2019) Command finished (0 sec)
(Mon Aug 19 18:53:01 2019)
r.info map=F121995
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121995 Date: Sun Aug 18 21:17:47 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F121995.tif" output="F121995" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:53:01 2019) Command finished (0 sec)
(Mon Aug 19 18:53:10 2019)
r.info map=F121996
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121996 Date: Sun Aug 18 21:18:01 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F121996.tif" output="F121996" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:53:10 2019) Command finished (0 sec)
(Mon Aug 19 18:53:19 2019)
r.info map=F121997
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121997 Date: Sun Aug 18 21:18:14 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F121997.tif" output="F121997" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:53:19 2019) Command finished (0 sec)
(Mon Aug 19 18:53:26 2019)
r.info map=F121998
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121998 Date: Sun Aug 18 21:18:27 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F121998.tif" output="F121998" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:53:26 2019) Command finished (0 sec)
(Mon Aug 19 18:53:32 2019)
r.info map=F121999
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121999 Date: Sun Aug 18 21:18:40 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F121999.tif" output="F121999" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:53:32 2019) Command finished (0 sec)
(Mon Aug 19 18:53:38 2019)
r.info map=F141997
+----------------------------------------------------------------------------+
| Map: F141997 Date: Sun Aug 18 21:18:53 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F141997.tif" output="F141997" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
(Mon Aug 19 18:53:38 2019) Command finished (0 sec)
(Mon Aug 19 18:53:44 2019)
r.info map=F141998
+----------------------------------------------------------------------------+
| Map: F141998 Date: Sun Aug 18 21:19:07 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F141998.tif" output="F141998" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
(Mon Aug 19 18:53:45 2019) Command finished (0 sec)
(Mon Aug 19 18:53:50 2019)
r.info map=F141999
+----------------------------------------------------------------------------+
| Map: F141999 Date: Sun Aug 18 21:19:20 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F141999.tif" output="F141999" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
(Mon Aug 19 18:53:50 2019) Command finished (0 sec)
(Mon Aug 19 18:53:57 2019)
r.info map=F142000
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142000 Date: Sun Aug 18 21:19:33 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F142000.tif" output="F142000" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:53:57 2019) Command finished (0 sec)
(Mon Aug 19 18:54:04 2019)
r.info map=F142001
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142001 Date: Sun Aug 18 21:19:46 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F142001.tif" output="F142001" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:04 2019) Command finished (0 sec)
(Mon Aug 19 18:54:13 2019)
r.info map=F142002
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142002 Date: Sun Aug 18 21:19:59 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F142002.tif" output="F142002" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:14 2019) Command finished (0 sec)
(Mon Aug 19 18:54:20 2019)
r.info map=F142003
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142003 Date: Sun Aug 18 21:20:13 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F142003.tif" output="F142003" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:20 2019) Command finished (0 sec)
(Mon Aug 19 18:54:26 2019)
r.info map=F152000
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152000 Date: Sun Aug 18 21:20:26 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152000.tif" output="F152000" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:27 2019) Command finished (0 sec)
(Mon Aug 19 18:54:33 2019)
r.info map=F152001
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152001 Date: Sun Aug 18 21:20:39 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152001.tif" output="F152001" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:33 2019) Command finished (0 sec)
(Mon Aug 19 18:54:39 2019)
r.info map=F152002
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152002 Date: Sun Aug 18 21:20:52 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152002.tif" output="F152002" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:39 2019) Command finished (0 sec)
(Mon Aug 19 18:54:45 2019)
r.info map=F152003
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152003 Date: Sun Aug 18 21:21:05 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152003.tif" output="F152003" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:46 2019) Command finished (0 sec)
(Mon Aug 19 18:54:52 2019)
r.info map=F152004
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152004 Date: Sun Aug 18 21:21:19 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152004.tif" output="F152004" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:54:53 2019) Command finished (0 sec)
(Mon Aug 19 18:54:59 2019)
r.info map=F152005
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152005 Date: Sun Aug 18 21:21:32 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152005.tif" output="F152005" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:00 2019) Command finished (0 sec)
(Mon Aug 19 18:55:07 2019)
r.info map=F152006
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152006 Date: Sun Aug 18 21:21:46 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152006.tif" output="F152006" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:07 2019) Command finished (0 sec)
(Mon Aug 19 18:55:14 2019)
r.info map=F152007
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152007 Date: Sun Aug 18 21:21:59 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F152007.tif" output="F152007" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:15 2019) Command finished (0 sec)
(Mon Aug 19 18:55:21 2019)
r.info map=F162004
+----------------------------------------------------------------------------+
| Map: F162004 Date: Sun Aug 18 21:22:12 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F162004.tif" output="F162004" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
(Mon Aug 19 18:55:22 2019) Command finished (0 sec)
(Mon Aug 19 18:55:29 2019)
r.info map=F162005
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162005 Date: Sun Aug 18 21:22:25 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F162005.tif" output="F162005" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:30 2019) Command finished (0 sec)
(Mon Aug 19 18:55:37 2019)
r.info map=F162006
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162006 Date: Sun Aug 18 21:22:39 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F162006.tif" output="F162006" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:38 2019) Command finished (0 sec)
(Mon Aug 19 18:55:44 2019)
r.info map=F162007
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162007 Date: Sun Aug 18 21:22:52 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F162007.tif" output="F162007" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:44 2019) Command finished (0 sec)
(Mon Aug 19 18:55:51 2019)
r.info map=F162008
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162008 Date: Sun Aug 18 21:23:05 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F162008.tif" output="F162008" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:51 2019) Command finished (0 sec)
(Mon Aug 19 18:55:59 2019)
r.info map=F162009
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162009 Date: Sun Aug 18 21:23:18 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F162009.tif" output="F162009" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:55:59 2019) Command finished (0 sec)
(Mon Aug 19 18:56:06 2019)
r.info map=F182010
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F182010 Date: Sun Aug 18 21:23:32 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F182010.tif" output="F182010" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:56:06 2019) Command finished (0 sec)
(Mon Aug 19 18:56:12 2019)
r.info map=F182011
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F182011 Date: Sun Aug 18 21:23:45 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F182011.tif" output="F182011" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:56:12 2019) Command finished (0 sec)
(Mon Aug 19 18:56:18 2019)
r.info map=F182012
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F182012 Date: Sun Aug 18 21:23:58 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: CELL |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Description: |
| generated by r.in.gdal |
| |
| Comments: |
| r.in.gdal -a input="F182012.tif" output="F182012" memory=300 offset=\ |
| 0 num_digits=0 |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:56:18 2019) Command finished (0 sec)
(Mon Aug 19 18:56:44 2019)
r.info map=F101992.c
+----------------------------------------------------------------------------+
| Map: F101992.c Date: Sun Aug 18 21:53:41 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -2.057 max = 62.4109 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -2.057 + 1.5903 * F101992 + -0.009 * F101992 ^ 2 |
| Regression model: (-2.057) + (1.5903)*Input + (-0.009)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
(Mon Aug 19 18:56:44 2019) Command finished (0 sec)
(Mon Aug 19 18:56:51 2019)
r.info map=F101993.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F101993.c Date: Sun Aug 18 21:54:30 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -1.0582 max = 62.723 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -1.0582 + 1.5983 * F101993 + -0.0093 * F101993 ^ 2 |
| Regression model: (-1.0582) + (1.5983)*Input + (-0.0093)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:56:51 2019) Command finished (0 sec)
(Mon Aug 19 18:56:57 2019)
r.info map=F101994.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F101994.c Date: Sun Aug 18 21:55:18 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.3458 max = 61.9423 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.3458 + 1.4864 * F101994 + -0.0079 * F101994 ^ 2 |
| Regression model: (-0.3458) + (1.4864)*Input + (-0.0079)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:56:58 2019) Command finished (0 sec)
(Mon Aug 19 18:57:33 2019)
r.info map=F121994.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121994.c Date: Sun Aug 18 21:56:03 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.689 max = 63.5395 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.689 + 1.177 * F121994 + -0.0025 * F121994 ^ 2 |
| Regression model: (-0.689) + (1.177)*Input + (-0.0025)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:57:33 2019) Command finished (0 sec)
(Mon Aug 19 18:57:39 2019)
r.info map=F121995.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121995.c Date: Sun Aug 18 21:56:52 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.0515 max = 62.3122 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.0515 + 1.2293 * F121995 + -0.0038 * F121995 ^ 2 |
| Regression model: (-0.0515) + (1.2293)*Input + (-0.0038)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:57:39 2019) Command finished (0 sec)
(Mon Aug 19 18:57:46 2019)
r.info map=F121996.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121996.c Date: Sun Aug 18 21:57:38 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.0959 max = 64.2082 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.0959 + 1.2727 * F121996 + -0.004 * F121996 ^ 2 |
| Regression model: (-0.0959) + (1.2727)*Input + (-0.004)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:57:46 2019) Command finished (0 sec)
(Mon Aug 19 18:57:54 2019)
r.info map=F121997.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121997.c Date: Sun Aug 18 21:58:29 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.3321 max = 63.5751 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.3321 + 1.1782 * F121997 + -0.0026 * F121997 ^ 2 |
| Regression model: (-0.3321) + (1.1782)*Input + (-0.0026)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:57:55 2019) Command finished (0 sec)
(Mon Aug 19 18:58:06 2019)
r.info map=F121998.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121998.c Date: Sun Aug 18 21:59:18 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.0608 max = 61.8619 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.0608 + 1.0648 * F121998 + -0.0013 * F121998 ^ 2 |
| Regression model: (-0.0608) + (1.0648)*Input + (-0.0013)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:58:06 2019) Command finished (0 sec)
(Mon Aug 19 18:58:22 2019)
r.info map=F121999.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F121999.c Date: Sun Aug 18 22:00:01 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0 max = 63 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0 + 1 * F121999 + 0 * F121999 ^ 2 |
| Regression model: (0.0) + (1.0)*Input + (0.0)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:58:22 2019) Command finished (0 sec)
(Mon Aug 19 18:58:29 2019)
r.info map=F141997.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F141997.c Date: Sun Aug 18 22:00:49 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -1.1323 max = 61.9307 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -1.1323 + 1.7696 * F141997 + -0.0122 * F141997 ^ 2 |
| Regression model: (-1.1323) + (1.7696)*Input + (-0.0122)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:58:29 2019) Command finished (0 sec)
(Mon Aug 19 18:58:38 2019)
r.info map=F141998.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F141998.c Date: Sun Aug 18 22:01:35 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.1917 max = 62.5437 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.1917 + 1.6321 * F141998 + -0.0101 * F141998 ^ 2 |
| Regression model: (-0.1917) + (1.6321)*Input + (-0.0101)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:58:38 2019) Command finished (0 sec)
(Mon Aug 19 18:58:46 2019)
r.info map=F141999.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F141999.c Date: Sun Aug 18 22:02:21 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.1557 max = 63.7326 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.1557 + 1.5055 * F141999 + -0.0078 * F141999 ^ 2 |
| Regression model: (-0.1557) + (1.5055)*Input + (-0.0078)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:58:47 2019) Command finished (0 sec)
(Mon Aug 19 18:58:53 2019)
r.info map=F142000.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142000.c Date: Sun Aug 18 22:03:06 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 1.0988 max = 62.9396 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 1.0988 + 1.3155 * F142000 + -0.0053 * F142000 ^ 2 |
| Regression model: (1.0988) + (1.3155)*Input + (-0.0053)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:58:53 2019) Command finished (0 sec)
(Mon Aug 19 18:59:00 2019)
r.info map=F142001.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142001.c Date: Sun Aug 18 22:03:53 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.1943 max = 63.2321 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.1943 + 1.3219 * F142001 + -0.0051 * F142001 ^ 2 |
| Regression model: (0.1943) + (1.3219)*Input + (-0.0051)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:59:00 2019) Command finished (0 sec)
(Mon Aug 19 18:59:06 2019)
r.info map=F142002.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142002.c Date: Sun Aug 18 22:04:41 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 1.0517 max = 61.7648 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 1.0517 + 1.1905 * F142002 + -0.0036 * F142002 ^ 2 |
| Regression model: (1.0517) + (1.1905)*Input + (-0.0036)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:59:07 2019) Command finished (0 sec)
(Mon Aug 19 18:59:13 2019)
r.info map=F142003.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F142003.c Date: Sun Aug 18 22:05:28 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.739 max = 63.0838 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.739 + 1.2416 * F142003 + -0.004 * F142003 ^ 2 |
| Regression model: (0.739) + (1.2416)*Input + (-0.004)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:59:14 2019) Command finished (0 sec)
(Mon Aug 19 18:59:20 2019)
r.info map=F152000.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152000.c Date: Sun Aug 18 22:06:14 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.1254 max = 62.004 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.1254 + 1.0452 * F152000 + -0.001 * F152000 ^ 2 |
| Regression model: (0.1254) + (1.0452)*Input + (-0.001)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:59:21 2019) Command finished (0 sec)
(Mon Aug 19 18:59:27 2019)
r.info map=F152001.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152001.c Date: Sun Aug 18 22:07:03 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.7024 max = 64.3451 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.7024 + 1.1081 * F152001 + -0.0012 * F152001 ^ 2 |
| Regression model: (-0.7024) + (1.1081)*Input + (-0.0012)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:59:28 2019) Command finished (0 sec)
(Mon Aug 19 18:59:43 2019)
r.info map=F152002.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152002.c Date: Sun Aug 18 22:07:52 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.0491 max = 64.2965 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.0491 + 0.9568 * F152002 + 0.001 * F152002 ^ 2 |
| Regression model: (0.0491) + (0.9568)*Input + (0.001)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:59:43 2019) Command finished (0 sec)
(Mon Aug 19 18:59:56 2019)
r.info map=F152003.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152003.c Date: Sun Aug 18 22:08:39 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.2217 max = 63.7383 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.2217 + 1.5122 * F152003 + -0.008 * F152003 ^ 2 |
| Regression model: (0.2217) + (1.5122)*Input + (-0.008)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 18:59:56 2019) Command finished (0 sec)
(Mon Aug 19 19:00:04 2019)
r.info map=F152004.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152004.c Date: Sun Aug 18 22:09:26 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.5751 max = 64.3437 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.5751 + 1.3335 * F152004 + -0.0051 * F152004 ^ 2 |
| Regression model: (0.5751) + (1.3335)*Input + (-0.0051)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:00:04 2019) Command finished (0 sec)
(Mon Aug 19 19:00:10 2019)
r.info map=F152005.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152005.c Date: Sun Aug 18 22:10:10 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.6367 max = 65.2432 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.6367 + 1.2838 * F152005 + -0.0041 * F152005 ^ 2 |
| Regression model: (0.6367) + (1.2838)*Input + (-0.0041)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:00:10 2019) Command finished (0 sec)
(Mon Aug 19 19:00:17 2019)
r.info map=F152006.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152006.c Date: Sun Aug 18 22:10:56 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.8261 max = 65.1302 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.8261 + 1.279 * F152006 + -0.0041 * F152006 ^ 2 |
| Regression model: (0.8261) + (1.279)*Input + (-0.0041)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:00:17 2019) Command finished (0 sec)
(Mon Aug 19 19:00:24 2019)
r.info map=F152007.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F152007.c Date: Sun Aug 18 22:11:41 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 1.3606 max = 65.2363 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 1.3606 + 1.2974 * F152007 + -0.0045 * F152007 ^ 2 |
| Regression model: (1.3606) + (1.2974)*Input + (-0.0045)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:00:24 2019) Command finished (0 sec)
(Mon Aug 19 19:00:30 2019)
r.info map=F162004.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162004.c Date: Sun Aug 18 22:12:30 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.2853 max = 62.1072 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.2853 + 1.1955 * F162004 + -0.0034 * F162004 ^ 2 |
| Regression model: (0.2853) + (1.1955)*Input + (-0.0034)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:00:31 2019) Command finished (0 sec)
(Mon Aug 19 19:00:45 2019)
r.info map=F162005.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162005.c Date: Sun Aug 18 22:13:19 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = -0.0001 max = 64.1969 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| -0.0001 + 1.4159 * F162005 + -0.0063 * F162005 ^ 2 |
| Regression model: (-0.0001) + (1.4159)*Input + (-0.0063)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:00:45 2019) Command finished (0 sec)
(Mon Aug 19 19:00:55 2019)
r.info map=F162006.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162006.c Date: Sun Aug 18 22:14:03 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.1065 max = 65.3934 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.1065 + 1.1371 * F162006 + -0.0016 * F162006 ^ 2 |
| Regression model: (0.1065) + (1.1371)*Input + (-0.0016)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:00:56 2019) Command finished (0 sec)
(Mon Aug 19 19:01:02 2019)
r.info map=F162007.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162007.c Date: Sun Aug 18 22:14:46 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.6394 max = 63.6142 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.6394 + 0.9114 * F162007 + 0.0014 * F162007 ^ 2 |
| Regression model: (0.6394) + (0.9114)*Input + (0.0014)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:01:03 2019) Command finished (0 sec)
(Mon Aug 19 19:01:09 2019)
r.info map=F162008.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F162008.c Date: Sun Aug 18 22:15:29 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.5564 max = 63.1217 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.5564 + 0.9931 * F162008 + 0 * F162008 ^ 2 |
| Regression model: (0.5564) + (0.9931)*Input + (0.0)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:01:09 2019) Command finished (0 sec)
(Mon Aug 19 19:01:16 2019)
r.info map=F162009.c
+----------------------------------------------------------------------------+
| Map: F162009.c Date: Sun Aug 18 22:16:14 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 0.9492 max = 61.9017 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 0.9492 + 1.0683 * F162009 + -0.0016 * F162009 ^ 2 |
| Regression model: (0.9492) + (1.0683)*Input + (-0.0016)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
(Mon Aug 19 19:01:16 2019) Command finished (0 sec)
(Mon Aug 19 19:01:34 2019)
r.info map=F182010.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F182010.c Date: Sun Aug 18 22:16:57 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 2.343 max = 60.2841 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 2.343 + 0.5102 * F182010 + 0.0065 * F182010 ^ 2 |
| Regression model: (2.343) + (0.5102)*Input + (0.0065)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:01:34 2019) Command finished (0 sec)
(Mon Aug 19 19:01:40 2019)
r.info map=F182011.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F182011.c Date: Sun Aug 18 22:17:41 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 1.8956 max = 60.0761 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 1.8956 + 0.7345 * F182011 + 0.003 * F182011 ^ 2 |
| Regression model: (1.8956) + (0.7345)*Input + (0.003)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:01:41 2019) Command finished (0 sec)
(Mon Aug 19 19:01:48 2019)
r.info map=F182012.c
360 degree EW extent is exceeded by 1 cells
360 degree EW extent is exceeded by 1 cells
+----------------------------------------------------------------------------+
| Map: F182012.c Date: Sun Aug 18 22:18:24 2019 |
| Mapset: Gabriel Login of Creator: Gabriel |
| Location: newLocation |
| DataBase: C:\Users\Gabriel\Documents\grassdata |
| Title: Calibrated DMSP-OLS Stable Lights |
| Timestamp: none |
|----------------------------------------------------------------------------|
| |
| Type of Map: raster Number of Categories: 0 |
| Data Type: DCELL |
| Data Units: Digital Numbers (Cal Vertical datum: (none) |
| Rows: 16801 |
| Columns: 43201 |
| Total Cells: 725820001 |
| Projection: Latitude-Longitude |
| N: 75:00:15N S: 65:00:15S Res: 0:00:30 |
| E: 180:00:15E W: 180:00:15W Res: 0:00:30 |
| Range of data: min = 1.875 max = 61.5927 |
| |
| Data Source: |
| Elvidge, Christopher D., Feng-Chi Hsu, Kimberly E. Baugh, and Tilottama |
| |
| |
| Data Description: |
| Inter-satellite calibrated average Digital Number values |
| |
| Comments: |
| 1.875 + 0.6203 * F182012 + 0.0052 * F182012 ^ 2 |
| Regression model: (1.875) + (0.6203)*Input + (0.0052)*Input^2 |
| |
| |
| |
+----------------------------------------------------------------------------+
(Mon Aug 19 19:01:48 2019) Command finished (0 sec)
More information about the grass-user
mailing list