POST
|
Hi Egge-Jan Pollé Thanks for your response. I solved the issue by installing the version 3.6 32 bit of PyScripter. can NotePad ++ will work for ArcGIS remote, like PyScripter. If yes, please could i get some step to run the ArcPy function in Notepad++.
... View more
04-23-2019
10:15 PM
|
0
|
0
|
1000
|
POST
|
I am getting trouble to run PyScripter version 2.6 on ArcGIS 10.3 and windows 7 64 bit. In PyScripter black screen appearing and could not edit after typing any commend. The backspace is not working at all. several times I unintalled it but the problem is the same. I tried the 3.6 version of PyScripter but its also giving error. Below i have attached the screenshot of my PyScripter on which i am working. How to solve the issue or any alternative of PyScripter for ArcGIS10.3 in windows.
... View more
04-23-2019
12:25 AM
|
0
|
2
|
1128
|
POST
|
Hi @Neil , thanks, No i am not trying to count the points and there is no overlap in the polygon. I have one of polygon file which contains 3 percels and one point file which contains multiples points. And that multiples points fall into different polygons, i want to join the multiple polygon with points fall into same polygon. If i use the Spatial join than if suppose i have 5 points fall into the one polygon then its created 5 same polygon in the ploygon's attribute. but i want to keep the polygon no constant where only column will be increased depend on the falling points. How to do it.
... View more
04-02-2019
02:13 AM
|
0
|
1
|
1433
|
POST
|
Hi All, I have multiples polygon files and points file. Multiple points falls into the single polygon. I want to join the polygon to points, which will create a new attribute where the row of polygon attribute will be remain same but the column will increase based on point falling falling into single polygon. Now i am using the Spatial join tool in ArcGIS 10.3 but its creating the duplicate polygon based on the number. Now, how should i join two files, where in the ploygon attribute row will be same but only column will be increased based on the points falling into the same ploygon using arcgis 10.3.
... View more
04-02-2019
01:08 AM
|
0
|
5
|
1627
|
POST
|
Hi Dan Patterson thank you. I solved the problem using Q GIS.
... View more
04-02-2019
12:57 AM
|
0
|
0
|
823
|
POST
|
Dear all, I have a vector file and which attribute contains many fields. I attached the fields arrangement are School, Area, Student, Age, Father_Name, Mother_Name. I need to rearrange permanently the field in the attribute table. For instance, Area, Father_Name, Mother_Name, Student, School, like this way. I found a python script, but could not explore more either it will work or not, or any other way to do it in Arcpy. Script is below, any suggestion is appreciated . I also attached a below picture of the attribute field arrangement. import arcpy, os, sys
from arcpy import env
arcpy.env.overwriteOutput = True
inFC = arcpy.GetParameterAsText(0)
outLoc = arcpy.GetParameterAsText(1)
outName = arcpy.GetParameterAsText(2)
field1 = arcpy.GetParameterAsText(3)
field2 = arcpy.GetParameterAsText(4)
field3 = arcpy.GetParameterAsText(5)
field4 = arcpy.GetParameterAsText(6)
field5 = arcpy.GetParameterAsText(7)
field6 = arcpy.GetParameterAsText(8)
field7 = arcpy.GetParameterAsText(9)
field8 = arcpy.GetParameterAsText(10)
field9 = arcpy.GetParameterAsText(11)
field10 = arcpy.GetParameterAsText(12)
field11 = arcpy.GetParameterAsText(13)
field12 = arcpy.GetParameterAsText(14)
field13 = arcpy.GetParameterAsText(15)
field14 = arcpy.GetParameterAsText(16)
field15 = arcpy.GetParameterAsText(17)
field16 = arcpy.GetParameterAsText(18)
field17 = arcpy.GetParameterAsText(19)
field18 = arcpy.GetParameterAsText(20)
field19 = arcpy.GetParameterAsText(21)
field20 = arcpy.GetParameterAsText(22)
fieldList = ["SHAPE@"]
arcpy.AddMessage(" ")
arcpy.AddMessage("Appending field choices to new List ")
arcpy.AddMessage(" ")
if (field1 != ""):
fieldList.append(field1)
if (field2 != ""):
fieldList.append(field2)
if (field3 != ""):
fieldList.append(field3)
if (field4 != ""):
fieldList.append(field4)
if (field5 != ""):
fieldList.append(field5)
if (field6 != ""):
fieldList.append(field6)
if (field7 != ""):
fieldList.append(field7)
if (field8 != ""):
fieldList.append(field8)
if (field9 != ""):
fieldList.append(field9)
if (field10 != ""):
fieldList.append(field10)
if (field11 != ""):
fieldList.append(field1)
if (field12 != ""):
fieldList.append(field12)
if (field13 != ""):
fieldList.append(field13)
if (field14 != ""):
fieldList.append(field14)
if (field15 != ""):
fieldList.append(field15)
if (field16 != ""):
fieldList.append(field16)
if (field17 != ""):
fieldList.append(field17)
if (field18 != ""):
fieldList.append(field18)
if (field19 != ""):
fieldList.append(field19)
if (field20 != ""):
fieldList.append(field20)
arcpy.AddMessage(" ")
#arcpy.AddMessage(fieldList)
oldFieldList = arcpy.ListFields(inFC)
fieldTypes = []
numOfFields = len(fieldList)
fieldIndex = 1
reorderedFields = []
for fld in fieldList:
for f in oldFieldList:
if f.name == fld:
arcpy.AddMessage(f.name)
reorderedFields.append(f)
break
arcpy.AddMessage(" ")
arcpy.AddMessage(reorderedFields)
desc = arcpy.Describe(inFC)
geoType = desc.shapeType.upper()
spatRef = arcpy.Describe(inFC).spatialReference
arcpy.CreateFeatureclass_management(outLoc, outName, geoType, "", "", "", spatRef)
newFeat = os.path.join(outLoc, outName)
for flds in reorderedFields:
if (flds.type == "String"):
fLength = flds.length
arcpy.AddField_management(newFeat, flds.name, flds.type, "", "", str(fLength))
else:
arcpy.AddField_management(newFeat, flds.name, flds.type)
arcpy.AddMessage(" ")
arcpy.AddMessage(fieldList)
arcpy.AddMessage(" ")
arcpy.AddMessage("Features will be copied with new Schema...")
count = 0
with arcpy.da.SearchCursor(inFC, fieldList) as cursor:
for row in cursor:
insertCursor = arcpy.da.InsertCursor(newFeat, (fieldList))
if (numOfFields == 21):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13], row[14], row[15], row[16], row[17], row[18], row[19], row[20]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]) + ', ' + str(row[14]) + ', ' + str(row[15]) + ', ' + str(row[16]) + ', ' + str(row[17]) + ', ' + str(row[18]) + ', ' + str(row[19]) + ', ' + str(row[20]))
count += 1
elif (numOfFields == 20):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13], row[14], row[15], row[16], row[17], row[18], row[19]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]) + ', ' + str(row[14]) + ', ' + str(row[15]) + ', ' + str(row[16]) + ', ' + str(row[17]) + ', ' + str(row[18]) + ', ' + str(row[19]))
count += 1
elif (numOfFields == 19):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13], row[14], row[15], row[16], row[17], row[18]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]) + ', ' + str(row[14]) + ', ' + str(row[15]) + ', ' + str(row[16]) + ', ' + str(row[17]) + ', ' + str(row[18]))
count += 1
elif (numOfFields == 18):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13], row[14], row[15], row[16], row[17]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]) + ', ' + str(row[14]) + ', ' + str(row[15]) + ', ' + str(row[16]) + ', ' + str(row[17]))
count += 1
elif (numOfFields == 17):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13], row[14], row[15], row[16]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]) + ', ' + str(row[14]) + ', ' + str(row[15]) + ', ' + str(row[16]))
count += 1
elif (numOfFields == 16):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13], row[14], row[15]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]) + ', ' + str(row[14]) + ', ' + str(row[15]))
count += 1
elif (numOfFields == 15):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13], row[14]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]) + ', ' + str(row[14]))
count += 1
elif (numOfFields == 14):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12], row[13]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]) + ', ' + str(row[13]))
count += 1
elif (numOfFields == 13):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]) + ', ' + str(row[12]))
count += 1
elif (numOfFields == 12):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]) + ', ' + str(row[11]))
count += 1
elif (numOfFields == 11):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]) + ', ' + str(row[10]))
count += 1
elif (numOfFields == 10):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]) + ', ' + str(row[9]))
count += 1
elif (numOfFields == 9):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]) + ', ' + str(row[8]))
count += 1
elif (numOfFields == 8):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]) + ', ' + str(row[7]))
count += 1
elif (numOfFields == 7):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5], row[6]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]) + ', ' + str(row[6]))
count += 1
elif (numOfFields == 6):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4], row[5]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]) + ', ' + str(row[5]))
count += 1
elif (numOfFields == 5):
insertCursor.insertRow((row[0], row[1], row[2], row[3], row[4]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]) + ', ' + str(row[4]))
count += 1
elif (numOfFields == 4):
insertCursor.insertRow((row[0], row[1], row[2], row[3]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]) + ', ' + str(row[3]))
count += 1
elif (numOfFields == 3):
insertCursor.insertRow((row[0], row[1], row[2]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]) + ', ' + str(row[2]))
count += 1
elif (numOfFields == 2):
insertCursor.insertRow((row[0], row[1]))
arcpy.AddMessage(" ")
arcpy.AddMessage("Index: " + str(count) + " -----> " + str(row[1]))
count += 1
... View more
03-29-2019
03:13 AM
|
0
|
2
|
909
|
POST
|
Hi Dan Patterson, Thanks, I am trying to follow your suggestion
... View more
07-13-2018
05:19 AM
|
0
|
0
|
1906
|
POST
|
Hi Xander Bakker, please can you look at the code. Thanks
... View more
07-13-2018
05:16 AM
|
0
|
2
|
1906
|
POST
|
Dan Patterson, please can I get an example, it will help me to understand further
... View more
07-12-2018
05:11 AM
|
0
|
2
|
1906
|
POST
|
Hi all, I have monthly raster for different parameters in three different folders. I am trying to take the minimum value of raster from each raster in two different parameters and solve the below equation. For that, I have written a code, but the code is producing an error. It is giving an error in line no 35. Sample data attached below Code: def main():
import arcpy
import os
arcpy.env.overwriteOutput = True
# Checkout extension
arcpy.CheckOutExtension("Spatial")
ws_in_APAR = r'E:\APAR'
ws_in_TSCALAR = r'E:\T_SCALAR'
ws_in_WSCALAR = r'E:\W_SCALAR'
ws_out_GPP = r'E:\GPP_1982'
# list "mean" rasters (r001_APAR so on)
arcpy.env.workspace = ws_in_APAR
lst_ras_APAR = arcpy.ListRasters()
print "lst_ras_APAR", lst_ras_APAR
# list "mean" rasters (r001_TSCALAR so on)
arcpy.env.workspace = ws_in_TSCALAR
lst_ras_TSCALAR = arcpy.ListRasters()
print "lst_ras_TSCALAR", lst_ras_TSCALAR
# list "mean" rasters (r001_WSCALAR so on)
arcpy.env.workspace = ws_in_WSCALAR
lst_ras_WSCALAR = arcpy.ListRasters()
print "lst_ras_WSCALAR", lst_ras_WSCALAR
for ras_name in lst_ras_APAR, lst_ras_TSCALAR, lst_ras_WSCALAR :
ras_APAR = arcpy.Raster(os.path.join(ws_in_APAR, ras_APAR))
ras_TSCALAR = arcpy.Raster(os.path.join(ws_in_TSCALAR, ras_TSCALAR))
ras_WSCALAR = arcpy.Raster(os.path.join(ws_in_WSCALAR, ras_WSCALAR))
# calculate (ras_TSCALAR.minimum wil take the minimum value of perticular raster)
ras_GPP = (ras_APAR * 1.48) * (ras_TSCALAR.minimum * ras_WSCALAR.minimum)
# save raster
ras_num = ras_name[:3]
out_name_GPP = os.path.join(ws_out_GPP, 'r{0}_GPP'.format(ras_num))
ras_GPP.save(out_name_GPP)
if __name__ == '__main__':
main() Error message: Traceback (most recent call last):
File "E:\GPP.py", line 64, in <module>
main()
File "E:\GPP.py", line 47, in main
ras_APAR = arcpy.Raster(os.path.join(ws_in_APAR, ras_APAR))
UnboundLocalError: local variable 'ras_APAR' referenced before assignment
... View more
07-12-2018
02:29 AM
|
0
|
7
|
2106
|
POST
|
Xander Bakker Thank you. This script perfectly running
... View more
06-14-2018
04:27 AM
|
1
|
1
|
1007
|
POST
|
Xander Bakker, i just checked the time given in code in line number 38 and changed according to the name of the first layer, it extracted the first layer successfully but from second layer its show DATA OUT OF RANGE . We can not keep the ==112013 statement constant as different month layer has a different number, e.g for Januray 112013, February 212013, March 312013 so on , but what you displayed it shows the constant number for each layer as 4021900. Please corporate to work out the issue if int(nowFile.split()[0].split('-')[-1])==112013: # 2013 While extracting the data, can we keep the layer name same as time spam of data , for instance, for first layer 112013, second 212013,
... View more
06-13-2018
12:44 PM
|
0
|
3
|
1007
|
POST
|
Xander Bakker which you have shown in print statement, the line number 11 shows the same digit for every output, but it should not be the same as month change the value should also change. Please could you check once, the input file nc_FP: <geoprocessing NetCDF Workspace object object at 0x06640230>
nc_Dim: [u'latitude', u'longitude', u'time']
dimension: latitude
dimension: longitude
dimension: time
top: 12
i 0
dimension_values 4/02/1900 9:28:12 a. m.
nowFile (1): 4/02/1900 9:28:12 a. m.
nowFile (2): 4021900 9:28:12 a. m.
test 4021900
... View more
06-13-2018
12:32 PM
|
0
|
0
|
1092
|
POST
|
Xander Bakker the same data which I provided you and same code, I ran on my system and it is showing nc_FP: <geoprocessing NetCDF Workspace object object at 0x0295B530>
nc_Dim: [u'longitude', u'latitude', u'time']
dimension: longitude
dimension: latitude
dimension: time
top: 12
i 0
dimension_values 1/1/2013 12:00:00 PM
nowFile (1): 1/1/2013 12:00:00 PM
nowFile (2): 112013 12:00:00 PM
test 112013
DATA OUT OF RANGE
i 1
dimension_values 2/1/2013 12:00:00 PM
nowFile (1): 2/1/2013 12:00:00 PM
nowFile (2): 212013 12:00:00 PM
test 212013
DATA OUT OF RANGE
i 2
dimension_values 3/1/2013 12:00:00 PM
nowFile (1): 3/1/2013 12:00:00 PM
nowFile (2): 312013 12:00:00 PM
test 312013
DATA OUT OF RANGE
i 3
dimension_values 4/1/2013 12:00:00 PM
nowFile (1): 4/1/2013 12:00:00 PM
nowFile (2): 412013 12:00:00 PM
test 412013
DATA OUT OF RANGE
i 4
dimension_values 5/1/2013 12:00:00 PM
nowFile (1): 5/1/2013 12:00:00 PM
nowFile (2): 512013 12:00:00 PM
test 512013
DATA OUT OF RANGE
i 5
dimension_values 6/1/2013 12:00:00 PM
nowFile (1): 6/1/2013 12:00:00 PM
nowFile (2): 612013 12:00:00 PM
test 612013
DATA OUT OF RANGE
i 6
dimension_values 7/1/2013 12:00:00 PM
nowFile (1): 7/1/2013 12:00:00 PM
nowFile (2): 712013 12:00:00 PM
test 712013
DATA OUT OF RANGE
i 7
dimension_values 8/1/2013 12:00:00 PM
nowFile (1): 8/1/2013 12:00:00 PM
nowFile (2): 812013 12:00:00 PM
test 812013
DATA OUT OF RANGE
i 8
dimension_values 9/1/2013 12:00:00 PM
nowFile (1): 9/1/2013 12:00:00 PM
nowFile (2): 912013 12:00:00 PM
test 912013
DATA OUT OF RANGE
i 9
dimension_values 10/1/2013 12:00:00 PM
nowFile (1): 10/1/2013 12:00:00 PM
nowFile (2): 1012013 12:00:00 PM
test 1012013
DATA OUT OF RANGE
i 10
dimension_values 11/1/2013 12:00:00 PM
nowFile (1): 11/1/2013 12:00:00 PM
nowFile (2): 1112013 12:00:00 PM
test 1112013
DATA OUT OF RANGE
i 11
dimension_values 12/1/2013 12:00:00 PM
nowFile (1): 12/1/2013 12:00:00 PM
nowFile (2): 1212013 12:00:00 PM
test 1212013
DATA OUT OF RANGE
... View more
06-13-2018
12:22 PM
|
0
|
0
|
1092
|
Title | Kudos | Posted |
---|---|---|
1 | 02-01-2017 09:56 PM | |
1 | 01-19-2017 08:03 AM | |
1 | 07-31-2017 11:57 AM | |
1 | 08-25-2016 09:38 AM | |
1 | 08-17-2016 11:13 AM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|