Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

'make' Error in mksurfdata_map

Nivetha

Nivetha Murugesan
New Member
I am trying to get soil color data for the year 1920 at 0.1 * 0.1 degree resolution. Hence, I would like to run this:

Code:
mksurfdata.pl -y 1920 -r 0.1 X 0.1

But,I get an error saying 'make: *** No rule to make target' when I run the following code:

Code:
cd my_cesm_sandbox/components/clm/tools/mksurfdata_map/src
make

Could anyone please help me with this? Thanks!


Basic information:
------------------------------------------------------------------------
git describe:
cesm2.1.3-rc.01-0-g0596a97
------------------------------------------------------------------------
./components/clm
clean sandbox, on release-clm5.0.30
HEAD detached at release-clm5.0.30
nothing to commit, working tree clean
 

erik

Erik Kluzek
CSEG and Liaisons
Staff member
I think the problem is just that you need to use a GNU make version here. Often make isn't a GNU make version, but gmake is. So check to make sure that you make is GNU by doing

make --version

If not, see if you have a GNU make version by another name (such as gmake).

If all you want to do is to see what soil color is at the highest resolution you can just look at the soil color dataset used to create other surface datasets. One way to get that is to do a "ncdump -h" on a surface dataset and see the list of files that went into creating the dataset.
 
Top